Salesforce · Schema

Error

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
errorCode string
errorMessage string
recordId string
View JSON Schema on GitHub

JSON Schema

salesforce-error-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "errorCode": {
      "type": "string",
      "example": "example_value"
    },
    "errorMessage": {
      "type": "string",
      "example": "example_value"
    },
    "recordId": {
      "type": "string",
      "example": "500123"
    }
  },
  "required": [
    "errorCode",
    "errorMessage",
    "recordId"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Error"
}