{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/tvdb/refs/heads/main/json-schema/tvdb-user-info-schema.json", "title": "UserInfo", "description": "User info record", "properties": { "id": { "type": "integer", "example": 12345 }, "language": { "type": "string", "example": "eng" }, "name": { "type": "string", "example": "Example Name" }, "type": { "type": "string", "example": "example" } }, "type": "object" }