Salesforce · Schema

PrescribableField

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
customDefinitions array
field object
View JSON Schema on GitHub

JSON Schema

salesforce-prescribable-field-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "customDefinitions": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "field": {
      "type": "object",
      "properties": {
        "label": {
          "type": "string",
          "example": "Example Title"
        },
        "name": {
          "type": "string",
          "example": "Example Title"
        },
        "type": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "label",
        "name",
        "type"
      ]
    }
  },
  "required": [
    "customDefinitions",
    "field"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PrescribableField"
}