{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VersionList", "title": "VersionList", "type": "object", "properties": { "items": { "type": "array", "items": { "type": "object", "properties": { "kind": { "type": "string" }, "id": { "type": "string" }, "raw_id": { "type": "string" }, "enabled": { "type": "boolean" }, "default": { "type": "boolean" }, "channel_groups": { "type": "array", "items": { "type": "string" } } } } } } }