No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
images
array
of
ref
#image
Optional
No description available.
maxLength: 4 itemstext
string
Required
No description available.
maxLength: 100000 bytesmaxGraphemes: 10000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 100000,
"maxGraphemes": 10000
},
"images": {
"type": "array",
"items": {
"ref": "#image",
"type": "ref"
},
"maxLength": 4
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}