A collection of saved items curated by an account.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
Optional description shown with the collection.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemesname
string
Required
Human-readable name of the collection.
maxLength: 1000 bytesmaxGraphemes: 100 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 1000,
"description": "Human-readable name of the collection.",
"maxGraphemes": 100
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 10000,
"description": "Optional description shown with the collection.",
"maxGraphemes": 1000
}
}
},
"description": "A collection of saved items curated by an account."
}