The Movie Database · JSON Structure

Tmdb Api Tv Episode Account States Response Structure

TMDB TV Series — Account States (200 payload).

Type: object Properties: 4
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

TvEpisodeAccountStatesResponse is a JSON Structure definition published by The Movie Database, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id favorite rated watchlist

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-structure/tmdb-api-tv-episode-account-states-response-structure.json",
  "name": "TvEpisodeAccountStatesResponse",
  "description": "TMDB TV Series \u2014 Account States (200 payload).",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "examples": [
        550
      ],
      "default": 0
    },
    "favorite": {
      "type": "boolean",
      "examples": [
        true
      ],
      "default": true
    },
    "rated": {
      "type": "object",
      "properties": {
        "value": {
          "type": "int32",
          "examples": [
            9
          ],
          "default": 0
        }
      }
    },
    "watchlist": {
      "type": "boolean",
      "examples": [
        false
      ],
      "default": true
    }
  }
}