{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-schema/tmdb-api-tv-series-top-rated-list-response-schema.json", "title": "TvSeriesTopRatedListResponse", "description": "TMDB TV Series \u2014 Top Rated (200 payload).", "type": "object", "properties": { "page": { "type": "integer", "examples": [ 1 ], "default": 0 }, "results": { "type": "array", "items": { "type": "object", "properties": { "backdrop_path": { "type": "string", "examples": [ "/99vBORZixICa32Pwdwj0lWcr8K.jpg" ] }, "first_air_date": { "type": "string", "examples": [ "2021-09-03" ] }, "genre_ids": { "type": "array", "items": { "type": "integer", "examples": [ 10764 ], "default": 0 } }, "id": { "type": "integer", "examples": [ 130392 ], "default": 0 }, "name": { "type": "string", "examples": [ "The D'Amelio Show" ] }, "origin_country": { "type": "array", "items": { "type": "string", "examples": [ "US" ] } }, "original_language": { "type": "string", "examples": [ "en" ] }, "original_name": { "type": "string", "examples": [ "The D'Amelio Show" ] }, "overview": { "type": "string", "examples": [ "From relative obscurity and a seemingly normal life, to overnight success and thrust into the Hollywood limelight overnight, the D\u2019Amelios are faced with new challenges and opportunities they could not have imagined." ] }, "popularity": { "type": "number", "examples": [ 12.459 ], "default": 0 }, "poster_path": { "type": "string", "examples": [ "/phv2Jc4H8cvRzvTKb9X1uKMboTu.jpg" ] }, "vote_average": { "type": "number", "examples": [ 8.9 ], "default": 0 }, "vote_count": { "type": "integer", "examples": [ 3190 ], "default": 0 } } } }, "total_pages": { "type": "integer", "examples": [ 142 ], "default": 0 }, "total_results": { "type": "integer", "examples": [ 2833 ], "default": 0 } } }