A reply to a flush, or to another reply.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
emoji
string
Optional
No description available.
maxLength: 32 bytesmaxGraphemes: 1 graphemesreply
ref
#replyRef
Required
No description available.
text
string
Required
No description available.
maxLength: 1000 bytesmaxGraphemes: 240 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"reply",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 1000,
"maxGraphemes": 240
},
"emoji": {
"type": "string",
"maxLength": 32,
"maxGraphemes": 1
},
"reply": {
"ref": "#replyRef",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A reply to a flush, or to another reply."
}