{ "type": "object", "properties": { "allOrNone": { "type": "boolean", "example": true }, "compositeRequest": { "type": "array", "description": "", "example": [], "items": { "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": { "Annual_Mileage__c": { "type": "integer", "example": 10 }, "Current_Vehicle__c": { "type": "string", "example": "example_value" }, "Model_Year__c": { "type": "integer", "example": 10 } }, "required": [ "Annual_Mileage__c", "Current_Vehicle__c", "Model_Year__c" ] } }, "required": [ "method", "url", "referenceId", "body" ] } } }, "required": [ "allOrNone", "compositeRequest" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PublishmultipleeventsRequest" }