A post (response) in a thread
Record Key
tid
Timestamp-based ID
Properties
blobs
array
of
blob
Optional
Optional attached media (image or audio)
maxLength: 1 itemscreatedAt
string
datetime
Required
Timestamp of post creation
text
string
Required
The content of the post
maxLength: 4000 bytesmaxGraphemes: 40000 graphemesthreadUri
string
at-uri
Required
AT URI of the thread this post belongs to
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"threadUri",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 4000,
"description": "The content of the post",
"maxGraphemes": 40000
},
"blobs": {
"type": "array",
"items": {
"type": "blob",
"accept": [
"image/*",
"audio/*"
],
"maxSize": 10000000
},
"maxLength": 1,
"description": "Optional attached media (image or audio)"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of post creation"
},
"threadUri": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the thread this post belongs to"
}
}
},
"description": "A post (response) in a thread"
}