{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeliveryChannel", "title": "DeliveryChannel", "type": "object", "description": "A managed content delivery channel", "properties": { "channelId": { "type": "string", "description": "Unique identifier for the channel" }, "channelName": { "type": "string", "description": "Display name of the channel" }, "channelType": { "type": "string", "description": "Type of channel", "enum": [ "ExperienceCloudSite", "CustomChannel" ] }, "domain": { "type": "string", "description": "Domain associated with the channel" }, "isDomainLocked": { "type": "boolean", "description": "Whether the domain is locked" }, "isSearchable": { "type": "boolean", "description": "Whether content is searchable" } } }