Salesforce · Schema

Themes

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
themeItems array
View JSON Schema on GitHub

JSON Schema

salesforce-themes-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "themeItems": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "colors": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "object",
              "properties": {
                "color": {
                  "type": "string",
                  "example": "example_value"
                },
                "context": {
                  "type": "string",
                  "example": "example_value"
                },
                "theme": {
                  "type": "string",
                  "example": "example_value"
                }
              },
              "required": [
                "color",
                "context",
                "theme"
              ]
            }
          },
          "icons": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "object",
              "properties": {
                "contentType": {
                  "type": "string",
                  "example": "example_value"
                },
                "height": {
                  "type": "integer",
                  "example": 10
                },
                "theme": {
                  "type": "string",
                  "example": "example_value"
                },
                "url": {
                  "type": "string",
                  "example": "https://www.example.com"
                },
                "width": {
                  "type": "integer",
                  "example": 10
                }
              },
              "required": [
                "contentType",
                "height",
                "theme",
                "url",
                "width"
              ]
            }
          },
          "name": {
            "type": "string",
            "example": "Example Title"
          }
        },
        "required": [
          "colors",
          "icons",
          "name"
        ]
      }
    }
  },
  "required": [
    "themeItems"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Themes"
}