TheTVDB · Schema

Language

language record

EntertainmentMoviesTelevisionMedia MetadataPublic APIsVideo

Properties

Name Type Description
id string
name string
nativeName string
shortCode string
View JSON Schema on GitHub

JSON Schema

tvdb-language-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-language-schema.json",
  "title": "Language",
  "description": "language record",
  "properties": {
    "id": {
      "type": "string",
      "x-go-name": "ID",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "x-go-name": "Name",
      "example": "Example Name"
    },
    "nativeName": {
      "type": "string",
      "x-go-name": "NativeName",
      "example": "example"
    },
    "shortCode": {
      "type": "string",
      "example": "example"
    }
  },
  "type": "object"
}