No description available.
Record Key
tid
Timestamp-based ID
Properties
context
ref
#postContext
Optional
What prompted this post
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
embed
union
Optional
No description available.
Known types:
langs
array
of
string
language
Optional
No description available.
reply
ref
#replyRef
Optional
No description available.
tags
array
of
string
Optional
No description available.
text
string
Required
No description available.
maxLength: 3000 bytesmaxGraphemes: 1000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 640
},
"maxItems": 8
},
"text": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 1000
},
"embed": {
"refs": [
"#dataEmbed",
"#linkEmbed"
],
"type": "union"
},
"langs": {
"type": "array",
"items": {
"type": "string",
"format": "language"
},
"maxItems": 3
},
"reply": {
"ref": "#replyRef",
"type": "ref"
},
"context": {
"ref": "#postContext",
"type": "ref",
"description": "What prompted this post"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}