{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/tvdb/refs/heads/main/json-schema/tvdb-parent-company-schema.json", "title": "ParentCompany", "description": "A parent company record", "properties": { "id": { "type": "integer", "nullable": true, "example": 12345 }, "name": { "type": "string", "example": "Example Name" }, "relation": { "type": "object", "description": "A company relationship", "properties": { "id": { "type": "integer", "nullable": true, "example": 12345 }, "typeName": { "type": "string", "example": "example" } } } }, "type": "object" }