A grouping header for boards on a forum's index. Lives in the forum account's repo; boards reference it via their category field.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"maxLength": 1000,
"maxGraphemes": 100
},
"order": {
"type": "integer",
"minimum": 0,
"description": "Sort position among the forum's categories."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A grouping header for boards on a forum's index. Lives in the forum account's repo; boards reference it via their category field."
}