computer.aesthetic.news

aesthetic.computer

Documentation

A news headline from Aesthetic Computer

main record

A news headline from Aesthetic Computer

Record Key tid Timestamp-based ID

Properties

body string Optional

Full article body text (optional)

maxLength: 10000 bytes
headline string Required

The news headline text

maxLength: 300 bytes
ref string Optional

Reference to source database record for bidirectional sync

tags array of string Optional

Category tags for the news item

maxLength: 10 items
when string datetime Required

When the news was published (ISO 8601)

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "headline",
      "when"
    ],
    "properties": {
      "ref": {
        "type": "string",
        "description": "Reference to source database record for bidirectional sync"
      },
      "body": {
        "type": "string",
        "maxLength": 10000,
        "description": "Full article body text (optional)"
      },
      "link": {
        "type": "string",
        "format": "uri",
        "description": "External link to full article (optional)"
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 64
        },
        "maxLength": 10,
        "description": "Category tags for the news item"
      },
      "when": {
        "type": "string",
        "format": "datetime",
        "description": "When the news was published (ISO 8601)"
      },
      "headline": {
        "type": "string",
        "maxLength": 300,
        "description": "The news headline text"
      }
    }
  },
  "description": "A news headline from Aesthetic Computer"
}

Lexicon Garden

@