Salesforce · Schema
App
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| appId | string | |
| description | string | |
| developerName | string | |
| eTag | string | |
| formFactors | array | |
| headerColor | string | |
| iconUrl | ['string', 'null'] | |
| isNavAutoTempTabsDisabled | boolean | |
| isNavPersonalizationDisabled | boolean | |
| isNavTabPersistenceDisabled | boolean | |
| label | string | |
| logoUrl | string | |
| mobileStartUrl | ['string', 'null'] | |
| navItems | array | |
| selected | boolean | |
| startUrl | string | |
| type | string | |
| userNavItems | array |
JSON Schema
{
"type": "object",
"properties": {
"appId": {
"type": "string",
"example": "500123"
},
"description": {
"type": "string",
"example": "A sample description."
},
"developerName": {
"type": "string",
"example": "example_value"
},
"eTag": {
"type": "string",
"example": "example_value"
},
"formFactors": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
},
"headerColor": {
"type": "string",
"example": "example_value"
},
"iconUrl": {
"type": "['string', 'null']",
"example": "https://www.example.com"
},
"isNavAutoTempTabsDisabled": {
"type": "boolean",
"example": true
},
"isNavPersonalizationDisabled": {
"type": "boolean",
"example": true
},
"isNavTabPersistenceDisabled": {
"type": "boolean",
"example": true
},
"label": {
"type": "string",
"example": "Example Title"
},
"logoUrl": {
"type": "string",
"example": "https://www.example.com"
},
"mobileStartUrl": {
"type": "['string', 'null']",
"example": "https://www.example.com"
},
"navItems": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object"
}
},
"selected": {
"type": "boolean",
"example": true
},
"startUrl": {
"type": "string",
"example": "https://www.example.com"
},
"type": {
"type": "string",
"example": "example_value"
},
"userNavItems": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
}
},
"required": [
"appId",
"description",
"developerName",
"eTag",
"formFactors",
"headerColor",
"iconUrl",
"isNavAutoTempTabsDisabled",
"isNavPersonalizationDisabled",
"isNavTabPersistenceDisabled",
"label",
"logoUrl",
"mobileStartUrl",
"navItems",
"selected",
"startUrl",
"type",
"userNavItems"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "App"
}