SObjectCollectionUpdateRequest

AutomationCloudCRMEnterpriseSales

Properties

Name Type Description
allOrNone boolean
records array
View JSON Schema on GitHub

JSON Schema

salesforce-automation-sobjectcollectionupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SObjectCollectionUpdateRequest",
  "title": "SObjectCollectionUpdateRequest",
  "type": "object",
  "required": [
    "records"
  ],
  "properties": {
    "allOrNone": {
      "type": "boolean",
      "default": false
    },
    "records": {
      "type": "array",
      "maxItems": 200,
      "items": {
        "type": "object",
        "required": [
          "attributes",
          "Id"
        ],
        "properties": {
          "attributes": {
            "type": "object",
            "required": [
              "type"
            ],
            "properties": {
              "type": {
                "type": "string"
              }
            }
          },
          "Id": {
            "type": "string"
          }
        },
        "additionalProperties": true
      }
    }
  }
}