Record containing a shoutout for a user, typically used during streams to highlight community members.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"user",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 5000,
"description": "The shoutout message text",
"maxGraphemes": 500
},
"user": {
"type": "string",
"format": "did",
"description": "The DID of the user being shouted out"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the shoutout was created"
}
}
},
"description": "Record containing a shoutout for a user, typically used during streams to highlight community members."
}