{ "type": "object", "description": "Request body for batch updating commerce payments", "name": "BatchUpdateRequest", "properties": { "inputs": { "type": "array", "description": "List of payments to update", "items": { "type": "object", "description": "A single input item for batch update", "properties": { "id": { "type": "string", "description": "The ID of the payment to update" }, "properties": { "type": "object", "description": "The properties to update" }, "idProperty": { "type": "string", "description": "The property to use as the identifier" } }, "required": [ "id", "properties" ] } } }, "required": [ "inputs" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }