A news headline from Aesthetic Computer
Record Key
tid
Timestamp-based ID
Properties
body
string
Optional
Full article body text (optional)
maxLength: 10000 bytesheadline
string
Required
The news headline text
maxLength: 300 byteslink
string
uri
Optional
External link to full article (optional)
ref
string
Optional
Reference to source database record for bidirectional sync
tags
array
of
string
Optional
Category tags for the news item
maxLength: 10 itemswhen
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"
}