The Movie Database · Schema
AccountRatedTvResponse
TMDB Account — Rated TV (200 payload).
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers
Properties
| Name | Type | Description |
|---|---|---|
| page | integer | |
| results | array | |
| total_pages | integer | |
| total_results | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-schema/tmdb-api-account-rated-tv-response-schema.json",
"title": "AccountRatedTvResponse",
"description": "TMDB Account \u2014 Rated TV (200 payload).",
"type": "object",
"properties": {
"page": {
"type": "integer",
"examples": [
1
],
"default": 0
},
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"adult": {
"type": "boolean",
"examples": [
false
],
"default": true
},
"backdrop_path": {
"type": "string",
"examples": [
"/2yZXtM2Kky1Sy0kachbDlwybl3y.jpg"
]
},
"genre_ids": {
"type": "array",
"items": {
"type": "integer",
"examples": [
10765
],
"default": 0
}
},
"id": {
"type": "integer",
"examples": [
1705
],
"default": 0
},
"origin_country": {
"type": "array",
"items": {
"type": "string",
"examples": [
"US"
]
}
},
"original_language": {
"type": "string",
"examples": [
"en"
]
},
"original_name": {
"type": "string",
"examples": [
"Fringe"
]
},
"overview": {
"type": "string",
"examples": [
"FBI Special Agent Olivia Dunham, brilliant but formerly institutionalized scientist Walter Bishop and his scheming, reluctant son Peter uncover a deadly mystery involving a series of unbelievable events and realize they may be a part of a larger, more disturbing pattern that blurs the line between science fiction and technology."
]
},
"popularity": {
"type": "number",
"examples": [
151.906
],
"default": 0
},
"poster_path": {
"type": "string",
"examples": [
"/sY9hg5dLJ93RJOyKEiu1nAtBRND.jpg"
]
},
"first_air_date": {
"type": "string",
"examples": [
"2008-09-09"
]
},
"name": {
"type": "string",
"examples": [
"Fringe"
]
},
"vote_average": {
"type": "number",
"examples": [
8.109
],
"default": 0
},
"vote_count": {
"type": "integer",
"examples": [
2050
],
"default": 0
},
"rating": {
"type": "integer",
"examples": [
9
],
"default": 0
}
}
}
},
"total_pages": {
"type": "integer",
"examples": [
15
],
"default": 0
},
"total_results": {
"type": "integer",
"examples": [
290
],
"default": 0
}
}
}