Community

Represents an Experience Cloud site (community)

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
allowChatterAccessWithoutLogin boolean Whether guest users can access Chatter
allowMembersToFlag boolean Whether community members can flag content
description string Description of the Experience Cloud site
id string Unique identifier of the site
invitationsEnabled boolean Whether invitations are enabled for the site
knowledgeableEnabled boolean Whether the knowledgeable people feature is enabled
loginUrl string URL for the site login page
memberVisibilityEnabled boolean Whether members can see other members
name string Name of the Experience Cloud site
nicknameDisplayEnabled boolean Whether nicknames are displayed instead of full names
privateMessagesEnabled boolean Whether private messaging is enabled
reputationEnabled boolean Whether the reputation system is enabled
sendWelcomeEmail boolean Whether welcome emails are sent to new members
siteAsContainerEnabled boolean Whether the site-as-container feature is enabled
siteUrl string The URL of the Experience Cloud site
status string Current status of the site
templateName string Name of the template used for the site
url string API resource URL for this site
urlPathPrefix string URL path prefix for the site
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-community-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Community",
  "title": "Community",
  "type": "object",
  "description": "Represents an Experience Cloud site (community)",
  "properties": {
    "allowChatterAccessWithoutLogin": {
      "type": "boolean",
      "description": "Whether guest users can access Chatter"
    },
    "allowMembersToFlag": {
      "type": "boolean",
      "description": "Whether community members can flag content"
    },
    "description": {
      "type": "string",
      "description": "Description of the Experience Cloud site"
    },
    "id": {
      "type": "string",
      "description": "Unique identifier of the site"
    },
    "invitationsEnabled": {
      "type": "boolean",
      "description": "Whether invitations are enabled for the site"
    },
    "knowledgeableEnabled": {
      "type": "boolean",
      "description": "Whether the knowledgeable people feature is enabled"
    },
    "loginUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL for the site login page"
    },
    "memberVisibilityEnabled": {
      "type": "boolean",
      "description": "Whether members can see other members"
    },
    "name": {
      "type": "string",
      "description": "Name of the Experience Cloud site"
    },
    "nicknameDisplayEnabled": {
      "type": "boolean",
      "description": "Whether nicknames are displayed instead of full names"
    },
    "privateMessagesEnabled": {
      "type": "boolean",
      "description": "Whether private messaging is enabled"
    },
    "reputationEnabled": {
      "type": "boolean",
      "description": "Whether the reputation system is enabled"
    },
    "sendWelcomeEmail": {
      "type": "boolean",
      "description": "Whether welcome emails are sent to new members"
    },
    "siteAsContainerEnabled": {
      "type": "boolean",
      "description": "Whether the site-as-container feature is enabled"
    },
    "siteUrl": {
      "type": "string",
      "format": "uri",
      "description": "The URL of the Experience Cloud site"
    },
    "status": {
      "type": "string",
      "description": "Current status of the site",
      "enum": [
        "Live",
        "Inactive",
        "DownForMaintenance",
        "UnderConstruction"
      ]
    },
    "templateName": {
      "type": "string",
      "description": "Name of the template used for the site"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "API resource URL for this site"
    },
    "urlPathPrefix": {
      "type": "string",
      "description": "URL path prefix for the site"
    }
  }
}