Salesforce · Schema
GetActiveTheme
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| brandColor | string | |
| brandImage | object | |
| defaultGroupBanner | object | |
| defaultGroupImage | object | |
| defaultPageBanner | object | |
| defaultUserBanner | object | |
| defaultUserImage | object | |
| density | string | |
| headerColor | string | |
| linkColor | string | |
| pageColor | string |
JSON Schema
{
"type": "object",
"properties": {
"brandColor": {
"type": "string",
"example": "example_value"
},
"brandImage": {
"type": "object",
"properties": {
"largeUrl": {
"type": "string",
"example": "https://www.example.com"
},
"mediumUrl": {
"type": "string",
"example": "https://www.example.com"
},
"smallUrl": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"largeUrl",
"mediumUrl",
"smallUrl"
]
},
"defaultGroupBanner": {
"type": "object",
"properties": {
"fullSizeUrl": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"fullSizeUrl"
]
},
"defaultGroupImage": {
"type": "object",
"properties": {
"largeUrl": {
"type": "string",
"example": "https://www.example.com"
},
"mediumUrl": {
"type": "string",
"example": "https://www.example.com"
},
"smallUrl": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"largeUrl",
"mediumUrl",
"smallUrl"
]
},
"defaultPageBanner": {
"type": "object",
"properties": {
"fullSizeUrl": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"fullSizeUrl"
]
},
"defaultUserBanner": {
"type": "object",
"properties": {
"fullSizeUrl": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"fullSizeUrl"
]
},
"defaultUserImage": {
"type": "object",
"properties": {
"largeUrl": {
"type": "string",
"example": "https://www.example.com"
},
"mediumUrl": {
"type": "string",
"example": "https://www.example.com"
},
"smallUrl": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"largeUrl",
"mediumUrl",
"smallUrl"
]
},
"density": {
"type": "string",
"example": "example_value"
},
"headerColor": {
"type": "string",
"example": "example_value"
},
"linkColor": {
"type": "string",
"example": "example_value"
},
"pageColor": {
"type": "string",
"example": "example_value"
}
},
"required": [
"brandColor",
"brandImage",
"defaultGroupBanner",
"defaultGroupImage",
"defaultPageBanner",
"defaultUserBanner",
"defaultUserImage",
"density",
"headerColor",
"linkColor",
"pageColor"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "GetActiveTheme"
}