A category for organizing goals.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"categoryId",
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 100,
"description": "Display name of the category"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the category was created"
},
"categoryId": {
"type": "string",
"maxLength": 64,
"description": "Unique identifier for the category (UUID)"
}
}
},
"description": "A category for organizing goals."
}