Salesforce · Schema

SObjectCollectionsCreateRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

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

JSON Schema

salesforce-s-object-collections-create-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "allOrNone": {
      "type": "boolean",
      "example": true
    },
    "records": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "attributes": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string",
                "example": "example_value"
              }
            },
            "required": [
              "type"
            ]
          },
          "Name": {
            "type": "string",
            "example": "Example Title"
          },
          "BillingCity": {
            "type": "string",
            "example": "example_value"
          },
          "LastName": {
            "type": "string",
            "example": "example_value"
          },
          "FirstName": {
            "type": "string",
            "example": "example_value"
          }
        },
        "required": [
          "attributes"
        ]
      }
    }
  },
  "required": [
    "allOrNone",
    "records"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SObjectCollectionsCreateRequest"
}