{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/tvdb/refs/heads/main/json-schema/tvdb-studio-base-record-schema.json", "title": "StudioBaseRecord", "description": "studio record", "properties": { "id": { "format": "int64", "type": "integer", "x-go-name": "ID", "example": 12345 }, "name": { "type": "string", "x-go-name": "Name", "example": "Example Name" }, "parentStudio": { "type": "integer", "example": 1 } }, "type": "object" }