A curated list of cards and/or decks.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the list was created.
description
ref
com.deckbelcher.richtext#document
Optional
Description of the list.
items
array
of
union
Required
name
string
Required
Name of the list.
maxLength: 1280 bytesmaxGraphemes: 128 graphemesupdatedAt
string
datetime
Optional
Timestamp when the list was last updated.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"items",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 1280,
"description": "Name of the list.",
"maxGraphemes": 128
},
"items": {
"type": "array",
"items": {
"refs": [
"#cardItem",
"#deckItem"
],
"type": "union"
},
"description": "Items in the list."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the list was created."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the list was last updated."
},
"description": {
"ref": "com.deckbelcher.richtext#document",
"type": "ref",
"description": "Description of the list."
}
}
},
"description": "A curated list of cards and/or decks."
}