Salesforce · JSON Structure

Salesforce Create Structure

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

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

Properties

sObjects

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "create",
  "properties": {
    "sObjects": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "Annual_Mileage__c": {
            "type": "integer"
          },
          "Current_Vehicle__c": {
            "type": "string"
          },
          "Model_Year__c": {
            "type": "integer"
          }
        },
        "required": [
          "type",
          "Annual_Mileage__c",
          "Current_Vehicle__c",
          "Model_Year__c"
        ]
      }
    }
  },
  "required": [
    "sObjects"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}