Salesforce · Schema

PlatformEventSchemabyEventName

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
name string
namespace string
type string
fields array
View JSON Schema on GitHub

JSON Schema

salesforce-platform-event-schemaby-event-name-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "namespace": {
      "type": "string",
      "example": "example_value"
    },
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "fields": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "example": "Example Title"
          },
          "type": {
            "type": "object",
            "example": "example_value"
          }
        },
        "required": [
          "name",
          "type"
        ]
      }
    }
  },
  "required": [
    "name",
    "namespace",
    "type",
    "fields"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PlatformEventSchemabyEventName"
}