{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-schema/tmdb-api-company-alternative-names-response-schema.json", "title": "CompanyAlternativeNamesResponse", "description": "TMDB Companies \u2014 Alternative Names (200 payload).", "type": "object", "properties": { "id": { "type": "integer", "examples": [ 1 ], "default": 0 }, "results": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "examples": [ "\ub8e8\uce74\uc2a4\ud544\ub984" ] }, "type": { "type": "string", "examples": [ "" ] } } } } } }