The Movie Database · Schema
TvSeasonChangesByIdResponse
TMDB TV Series — Changes (200 payload).
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers
Properties
| Name | Type | Description |
|---|---|---|
| changes | array |
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-tv-season-changes-by-id-response-schema.json",
"title": "TvSeasonChangesByIdResponse",
"description": "TMDB TV Series \u2014 Changes (200 payload).",
"type": "object",
"properties": {
"changes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"examples": [
"episode"
]
},
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"examples": [
"5717c8c69251414cfd00250f"
]
},
"action": {
"type": "string",
"examples": [
"updated"
]
},
"time": {
"type": "string",
"examples": [
"2016-04-20 18:21:58 UTC"
]
},
"value": {
"type": "object",
"properties": {
"episode_id": {
"type": "integer",
"examples": [
63056
],
"default": 0
},
"episode_number": {
"type": "integer",
"examples": [
1
],
"default": 0
}
}
}
}
}
}
}
}
}
}
}