Salesforce · Schema

Body1

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

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

JSON Schema

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