Salesforce · Schema

Metadata2

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
enrichedFields array
eventChannel string
selectedEntity string
View JSON Schema on GitHub

JSON Schema

salesforce-metadata2-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "enrichedFields": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "example": "Example Title"
          }
        },
        "required": [
          "name"
        ]
      }
    },
    "eventChannel": {
      "type": "string",
      "example": "example_value"
    },
    "selectedEntity": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "enrichedFields",
    "eventChannel",
    "selectedEntity"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Metadata2"
}