Salesforce · Schema

Publishsingleevent

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
id string
success boolean
errors array
View JSON Schema on GitHub

JSON Schema

salesforce-publishsingleevent-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "success": {
      "type": "boolean",
      "example": true
    },
    "errors": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "statusCode": {
            "type": "string",
            "example": "example_value"
          },
          "message": {
            "type": "string",
            "example": "example_value"
          },
          "fields": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "string"
            }
          }
        },
        "required": [
          "statusCode",
          "message",
          "fields"
        ]
      }
    }
  },
  "required": [
    "id",
    "success",
    "errors"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Publishsingleevent"
}