Salesforce · JSON Structure

Salesforce Composite Request3 Structure

Type: object Properties: 4 Required: 4
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

CompositeRequest3 is a JSON Structure definition published by Salesforce, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

method url referenceId body

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "CompositeRequest3",
  "properties": {
    "method": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "referenceId": {
      "type": "string"
    },
    "body": {
      "type": "object",
      "properties": {
        "Annual_Mileage__c": {
          "type": "integer"
        },
        "Current_Vehicle__c": {
          "type": "string"
        },
        "Model_Year__c": {
          "type": "integer"
        }
      },
      "required": [
        "Annual_Mileage__c",
        "Current_Vehicle__c",
        "Model_Year__c"
      ]
    }
  },
  "required": [
    "method",
    "url",
    "referenceId",
    "body"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}