Salesforce · Schema

Status201-BadRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

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

JSON Schema

salesforce-status201-bad-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "errorCode": {
            "type": "string",
            "example": "example_value"
          },
          "errorMessage": {
            "type": "string",
            "example": "example_value"
          },
          "recordId": {
            "type": "string",
            "example": "500123"
          }
        },
        "required": [
          "errorCode",
          "errorMessage",
          "recordId"
        ]
      }
    },
    "message": {
      "type": "string",
      "example": "example_value"
    },
    "success": {
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "errors",
    "message",
    "success"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Status201-BadRequest"
}