TheTVDB · Schema

TranslationExtended

translation extended record

EntertainmentMoviesTelevisionMedia MetadataPublic APIsVideo

Properties

Name Type Description
nameTranslations array
overviewTranslations array
alias array
View JSON Schema on GitHub

JSON Schema

tvdb-translation-extended-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-extended-schema.json",
  "title": "TranslationExtended",
  "description": "translation extended record",
  "properties": {
    "nameTranslations": {
      "items": {
        "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",
        "x-go-package": "github.com/whip-networks/tvdb-api-v4-core/tvdb-api-v4-core/pkg/model"
      },
      "type": "array"
    },
    "overviewTranslations": {
      "items": {
        "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",
        "x-go-package": "github.com/whip-networks/tvdb-api-v4-core/tvdb-api-v4-core/pkg/model"
      },
      "type": "array"
    },
    "alias": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "example": [
        "example"
      ]
    }
  },
  "type": "object"
}