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