Salesforce · Schema

Detail1

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
success boolean
errors object
links object
View JSON Schema on GitHub

JSON Schema

salesforce-detail1-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "example": true
    },
    "errors": {
      "type": "object",
      "properties": {
        "field": {
          "type": "string",
          "example": "example_value"
        },
        "message": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "field",
        "message"
      ]
    },
    "links": {
      "type": "object",
      "properties": {
        "account": {
          "type": "object",
          "properties": {
            "href": {
              "type": "string",
              "example": "example_value"
            },
            "id": {
              "type": "string",
              "example": "abc123"
            }
          },
          "required": [
            "href",
            "id"
          ]
        },
        "gifttransaction": {
          "type": "object",
          "properties": {
            "href": {
              "type": "string",
              "example": "example_value"
            },
            "id": {
              "type": "string",
              "example": "abc123"
            }
          },
          "required": [
            "href",
            "id"
          ]
        },
        "giftcommitment": {
          "type": "object",
          "properties": {
            "href": {
              "type": "string",
              "example": "example_value"
            },
            "id": {
              "type": "string",
              "example": "abc123"
            }
          },
          "required": [
            "href",
            "id"
          ]
        },
        "paymentinstrument": {
          "type": "object",
          "properties": {
            "href": {
              "type": "string",
              "example": "example_value"
            },
            "id": {
              "type": "string",
              "example": "abc123"
            }
          },
          "required": [
            "href",
            "id"
          ]
        },
        "gifttransactiondesignation": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "object",
            "properties": {
              "href": {
                "type": "string",
                "example": "example_value"
              },
              "id": {
                "type": "string",
                "example": "abc123"
              }
            },
            "required": [
              "href",
              "id"
            ]
          }
        }
      },
      "required": [
        "account",
        "gifttransaction",
        "giftcommitment",
        "paymentinstrument",
        "gifttransactiondesignation"
      ]
    }
  },
  "required": [
    "success"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Detail1"
}