{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://cpobjects.mycpl.net/schema/channel.json", "title": "Channel", "description": "Communication channel", "type": "object", "properties": { "token": { "description": "Unique ID of the channel", "type": "string" }, "name": { "description": "Name of the channel", "type": "string" }, "description": { "description": "Description of the channel", "type": "string" }, "subscribers": { "description": "Array of subscribers", "type": "array", "$ref": "./channel_subscriber.json", "minItems": 1 } }, "required": [ "token", "subscribers" ] }