The Movie Database · Schema

DetailsCopyResponse

TMDB Networks — Alternative Names (200 payload).

CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

Properties

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

JSON Schema

tmdb-api-details-copy-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-details-copy-response-schema.json",
  "title": "DetailsCopyResponse",
  "description": "TMDB Networks \u2014 Alternative Names (200 payload).",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "examples": [
        49
      ],
      "default": 0
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "examples": [
              "Home Box Office"
            ]
          },
          "type": {
            "type": "string",
            "examples": [
              ""
            ]
          }
        }
      }
    }
  }
}