Salesforce · Schema

CompositeRequest1

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

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

JSON Schema

salesforce-composite-request1-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"
        },
        "LastName": {
          "type": "string",
          "example": "example_value"
        },
        "AccountId": {
          "type": "string",
          "example": "500123"
        }
      }
    }
  },
  "required": [
    "method",
    "url",
    "referenceId",
    "body"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CompositeRequest1"
}