{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SObjectCollectionCreateRequest", "title": "SObjectCollectionCreateRequest", "type": "object", "required": [ "records" ], "properties": { "allOrNone": { "type": "boolean", "default": false }, "records": { "type": "array", "maxItems": 200, "items": { "type": "object", "required": [ "attributes" ], "properties": { "attributes": { "type": "object", "required": [ "type" ], "properties": { "type": { "type": "string" } } } }, "additionalProperties": true } } } }