Salesforce · Schema

ActionOverride

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
formFactor string
isAvailableInTouch boolean
name string
pageId string
url ['string', 'null']
View JSON Schema on GitHub

JSON Schema

salesforce-action-override-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "formFactor": {
      "type": "string",
      "example": "example_value"
    },
    "isAvailableInTouch": {
      "type": "boolean",
      "example": true
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "pageId": {
      "type": "string",
      "example": "500123"
    },
    "url": {
      "type": "['string', 'null']",
      "example": "https://www.example.com"
    }
  },
  "required": [
    "formFactor",
    "isAvailableInTouch",
    "name",
    "pageId",
    "url"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ActionOverride"
}