Salesforce · Schema
ThemeItem
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| colors | array | |
| icons | array | |
| name | string |
JSON Schema
{
"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"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ThemeItem"
}