The Movie Database · Schema

CollectionTranslationsResponse

TMDB Collections — Translations (200 payload).

CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

Properties

Name Type Description
id integer
translations array
View JSON Schema on GitHub

JSON Schema

tmdb-api-collection-translations-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-schema/tmdb-api-collection-translations-response-schema.json",
  "title": "CollectionTranslationsResponse",
  "description": "TMDB Collections \u2014 Translations (200 payload).",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "examples": [
        10
      ],
      "default": 0
    },
    "translations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "iso_3166_1": {
            "type": "string",
            "examples": [
              "AE"
            ]
          },
          "iso_639_1": {
            "type": "string",
            "examples": [
              "ar"
            ]
          },
          "name": {
            "type": "string",
            "examples": [
              "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"
            ]
          },
          "english_name": {
            "type": "string",
            "examples": [
              "Arabic"
            ]
          },
          "data": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string",
                "examples": [
                  ""
                ]
              },
              "overview": {
                "type": "string",
                "examples": [
                  ""
                ]
              },
              "homepage": {
                "type": "string",
                "examples": [
                  ""
                ]
              }
            }
          }
        }
      }
    }
  }
}