Salesforce · Schema

PageReference

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
attributes object
state object
type string
View JSON Schema on GitHub

JSON Schema

salesforce-page-reference-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "pageName": {
          "type": "string",
          "example": "example_value"
        },
        "objectApiName": {
          "type": "string",
          "example": "example_value"
        },
        "actionName": {
          "type": "string",
          "example": "example_value"
        }
      }
    },
    "state": {
      "type": "object",
      "example": "example_value"
    },
    "type": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "attributes",
    "state",
    "type"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PageReference"
}