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