A record of a user's flushing status update.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"emoji",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 236,
"description": "The status text.",
"maxGraphemes": 59
},
"emoji": {
"type": "string",
"description": "A single emoji character representing the status.",
"maxGraphemes": 1
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this status was created."
}
}
},
"description": "A record of a user's flushing status update."
}