Salesforce Experience Cloud · Schema
Channel
A CMS delivery channel
CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal
Properties
| Name | Type | Description |
|---|---|---|
| channelId | string | Unique identifier of the channel |
| channelName | string | Name of the channel |
| channelType | string | Type of the channel |
| domain | string | Domain associated with the channel |
| domainName | string | Domain name of the channel |
| isDomainLocked | boolean | Whether the domain is locked |
| isSearchable | boolean | Whether content in this channel is searchable |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Channel",
"title": "Channel",
"type": "object",
"description": "A CMS delivery channel",
"properties": {
"channelId": {
"type": "string",
"description": "Unique identifier of the channel"
},
"channelName": {
"type": "string",
"description": "Name of the channel"
},
"channelType": {
"type": "string",
"description": "Type of the channel",
"enum": [
"ExperienceCloudSite",
"CustomChannel"
]
},
"domain": {
"type": "string",
"description": "Domain associated with the channel"
},
"domainName": {
"type": "string",
"description": "Domain name of the channel"
},
"isDomainLocked": {
"type": "boolean",
"description": "Whether the domain is locked"
},
"isSearchable": {
"type": "boolean",
"description": "Whether content in this channel is searchable"
}
}
}