A channel inside a server space. Written only by the server owner (space authority) into their own repo.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
kind
string
Required
chat = Discord-like flat message stream. forum = thread-first board (threads required, messages reply into a thread).
Known values:
chat, forumname
string
Required
No description available.
maxLength: 640 bytesmaxGraphemes: 64 graphemesposition
integer
Optional
No description available.
minimum: 0topic
string
Optional
No description available.
maxLength: 2560 bytesmaxGraphemes: 256 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"kind",
"createdAt"
],
"properties": {
"kind": {
"type": "string",
"description": "chat = Discord-like flat message stream. forum = thread-first board (threads required, messages reply into a thread).",
"knownValues": [
"chat",
"forum"
]
},
"name": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
},
"topic": {
"type": "string",
"maxLength": 2560,
"maxGraphemes": 256
},
"position": {
"type": "integer",
"minimum": 0
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A channel inside a server space. Written only by the server owner (space authority) into their own repo."
}