Salesforce · Schema

CompositeRequest2

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
method string
url string
referenceId string
body object
View JSON Schema on GitHub

JSON Schema

salesforce-composite-request2-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "method": {
      "type": "string",
      "example": "example_value"
    },
    "url": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "referenceId": {
      "type": "string",
      "example": "500123"
    },
    "body": {
      "type": "object",
      "properties": {
        "Name": {
          "type": "string",
          "example": "Example Title"
        },
        "Custom__c": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "Name",
        "Custom__c"
      ]
    }
  },
  "required": [
    "method",
    "url",
    "referenceId"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CompositeRequest2"
}