A named collection for organizing annotations
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
Collection description
maxLength: 500 bytesmaxGraphemes: 150 graphemesicon
string
Optional
Emoji icon or icon identifier for the collection
maxLength: 100 bytesmaxGraphemes: 100 graphemesname
string
Required
Collection name
maxLength: 100 bytesmaxGraphemes: 50 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"icon": {
"type": "string",
"maxLength": 100,
"description": "Emoji icon or icon identifier for the collection",
"maxGraphemes": 100
},
"name": {
"type": "string",
"maxLength": 100,
"description": "Collection name",
"maxGraphemes": 50
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 500,
"description": "Collection description",
"maxGraphemes": 150
}
}
},
"description": "A named collection for organizing annotations"
}