Theme

Theme configuration for an Experience Cloud site

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
id string Unique identifier of the theme
name string Name of the theme
themeType string Type of the theme
properties object Theme properties including colors, fonts, and images
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-theme-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Theme",
  "title": "Theme",
  "type": "object",
  "description": "Theme configuration for an Experience Cloud site",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the theme"
    },
    "name": {
      "type": "string",
      "description": "Name of the theme"
    },
    "themeType": {
      "type": "string",
      "description": "Type of the theme"
    },
    "properties": {
      "type": "object",
      "description": "Theme properties including colors, fonts, and images",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}