Salesforce · Schema

Motif

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
color string
largeIconUrl string
mediumIconUrl string
smallIconUrl string
svgIconUrl ['string', 'null']
View JSON Schema on GitHub

JSON Schema

salesforce-motif-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "color": {
      "type": "string",
      "example": "example_value"
    },
    "largeIconUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "mediumIconUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "smallIconUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "svgIconUrl": {
      "type": "['string', 'null']",
      "example": "https://www.example.com"
    }
  },
  "required": [
    "color",
    "largeIconUrl",
    "mediumIconUrl",
    "smallIconUrl",
    "svgIconUrl"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Motif"
}