{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-schema/tmdb-api-movie-account-states-response-schema.json", "title": "MovieAccountStatesResponse", "description": "TMDB Movies \u2014 Account States (200 payload).", "type": "object", "properties": { "id": { "type": "integer", "examples": [ 550 ], "default": 0 }, "favorite": { "type": "boolean", "examples": [ true ], "default": true }, "rated": { "type": "object", "properties": { "value": { "type": "integer", "examples": [ 9 ], "default": 0 } } }, "watchlist": { "type": "boolean", "examples": [ false ], "default": true } } }