A thread in a channel
Record Key
tid
Timestamp-based ID
Properties
blobs
array
of
blob
Optional
Optional attached media (image or audio)
maxLength: 1 itemschannelId
string
Required
The channel this thread belongs to
createdAt
string
datetime
Required
Timestamp of thread creation
text
string
Optional
The text content of the thread
maxLength: 4000 bytesmaxGraphemes: 40000 graphemestitle
string
Required
The title of the thread
maxLength: 300 bytesmaxGraphemes: 3000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"channelId",
"title",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 4000,
"description": "The text content of the thread",
"maxGraphemes": 40000
},
"blobs": {
"type": "array",
"items": {
"type": "blob",
"accept": [
"image/*",
"audio/*"
],
"maxSize": 10000000
},
"maxLength": 1,
"description": "Optional attached media (image or audio)"
},
"title": {
"type": "string",
"maxLength": 300,
"description": "The title of the thread",
"maxGraphemes": 3000
},
"channelId": {
"type": "string",
"description": "The channel this thread belongs to"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of thread creation"
}
}
},
"description": "A thread in a channel"
}