SObjectTreeRequest

AutomationCloudCRMEnterpriseSales

Properties

Name Type Description
records array
View JSON Schema on GitHub

JSON Schema

salesforce-automation-sobjecttreerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SObjectTreeRequest",
  "title": "SObjectTreeRequest",
  "type": "object",
  "required": [
    "records"
  ],
  "properties": {
    "records": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "attributes"
        ],
        "properties": {
          "attributes": {
            "type": "object",
            "required": [
              "type",
              "referenceId"
            ],
            "properties": {
              "type": {
                "type": "string"
              },
              "referenceId": {
                "type": "string"
              }
            }
          }
        },
        "additionalProperties": true
      }
    }
  }
}