language record
{ "$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" }