{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChannelDetails", "title": "ChannelDetails", "type": "object", "properties": { "channelId": { "type": "string", "description": "The required name of the channel including any qualifier, if any." }, "region": { "type": "string", "description": "In events relating to the activity of a channel in a specific region, this optionally identifies the region." }, "isGlobalMaster": { "type": "boolean", "description": "In events relating to the activity of a channel in a specific region, this optionally identifies whether or not that region is responsible for global coordination of the channel." }, "status": { "$ref": "#/components/schemas/ChannelStatus" } }, "required": [ "channelId" ] }