BrandingSet

A branding set with visual properties

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
id string Branding set ID
name string Name of the branding set
description string Description of the branding set
properties array Branding properties
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-brandingset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BrandingSet",
  "title": "BrandingSet",
  "type": "object",
  "description": "A branding set with visual properties",
  "properties": {
    "id": {
      "type": "string",
      "description": "Branding set ID"
    },
    "name": {
      "type": "string",
      "description": "Name of the branding set"
    },
    "description": {
      "type": "string",
      "description": "Description of the branding set"
    },
    "properties": {
      "type": "array",
      "description": "Branding properties",
      "items": {
        "$ref": "#/components/schemas/BrandingProperty"
      }
    }
  }
}