{ "type": "object", "description": "Request body for batch archiving commerce payments", "name": "BatchArchiveRequest", "properties": { "inputs": { "type": "array", "description": "List of payment identifiers to archive", "items": { "type": "object", "description": "A single input item for batch read", "properties": { "id": { "type": "string", "description": "The ID of the payment to read" } }, "required": [ "id" ] } } }, "required": [ "inputs" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }