TheTVDB · Schema

Translation

translation record

EntertainmentMoviesTelevisionMedia MetadataPublic APIsVideo

Properties

Name Type Description
aliases array
isAlias boolean
isPrimary boolean
language string
name string
overview string
tagline string Only populated for movie translations. We disallow taglines without a title.
View JSON Schema on GitHub

JSON Schema

tvdb-translation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tvdb/refs/heads/main/json-schema/tvdb-translation-schema.json",
  "title": "Translation",
  "description": "translation record",
  "properties": {
    "aliases": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "example": [
        "example"
      ]
    },
    "isAlias": {
      "type": "boolean",
      "example": true
    },
    "isPrimary": {
      "type": "boolean",
      "example": true
    },
    "language": {
      "type": "string",
      "x-go-name": "Language",
      "example": "eng"
    },
    "name": {
      "type": "string",
      "example": "Example Name"
    },
    "overview": {
      "type": "string",
      "example": "A descriptive paragraph of text."
    },
    "tagline": {
      "type": "string",
      "description": "Only populated for movie translations.  We disallow taglines without a title.",
      "example": "example"
    }
  },
  "type": "object"
}