Salesforce · Schema

Icon

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
contentType string
height integer
theme string
url string
width integer
View JSON Schema on GitHub

JSON Schema

salesforce-icon-schema.json Raw ↑
{
  "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"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Icon"
}