ThemeProperty

A property within a theme

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
name string Property name
type string Property type
value string Property value
group string Logical grouping of the property
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-themeproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ThemeProperty",
  "title": "ThemeProperty",
  "type": "object",
  "description": "A property within a theme",
  "properties": {
    "name": {
      "type": "string",
      "description": "Property name"
    },
    "type": {
      "type": "string",
      "description": "Property type",
      "enum": [
        "Color",
        "Font",
        "Image",
        "String",
        "Number"
      ]
    },
    "value": {
      "type": "string",
      "description": "Property value"
    },
    "group": {
      "type": "string",
      "description": "Logical grouping of the property"
    }
  }
}