{
"id": "computer.sims.log.watchlistItem",
"defs": {
"main": {
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"tmdbId",
"mediaType",
"title",
"addedAt"
],
"properties": {
"year": {
"type": "string",
"description": "Release year (four digits), denormalized for display."
},
"title": {
"type": "string",
"maxLength": 3000,
"description": "Display title of the show.",
"maxGraphemes": 300
},
"tmdbId": {
"type": "string",
"description": "TMDB id of the show."
},
"addedAt": {
"type": "string",
"format": "datetime",
"description": "When the show was added to the watchlist."
},
"mediaType": {
"enum": [
"movie",
"tv"
],
"type": "string",
"description": "Media type of the work. Watchlist entries are TV shows today."
},
"posterUrl": {
"type": "string",
"format": "uri",
"description": "TMDB poster URL for the card."
}
}
},
"description": "A shared-watchlist entry: one show a member wants to watch, written into that member's own space-repo. rkey is 'tmdb-<id>' so an add is idempotent per show."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}