A movie list for OpnShelf
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"slug",
"isDefault",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"description": "Display name of the list"
},
"slug": {
"type": "string",
"description": "URL-friendly identifier"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Record creation timestamp"
},
"isDefault": {
"type": "boolean",
"description": "Whether this is a default list (watchlist/favorites)"
},
"description": {
"type": "string",
"description": "Optional description of the list"
}
}
},
"description": "A movie list for OpnShelf"
}