A tracked movie record for OpnShelf
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"movieId",
"source",
"watchedAt",
"createdAt"
],
"properties": {
"source": {
"type": "string",
"description": "Source of the movie data (e.g., tmdb)"
},
"movieId": {
"type": "string",
"description": "TMDB movie ID"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Record creation timestamp"
},
"watchedAt": {
"type": "string",
"format": "datetime",
"description": "When the movie was watched"
}
}
},
"description": "A tracked movie record for OpnShelf"
}