{ "type": "object", "description": "Request body for batch reading commerce payments", "name": "BatchReadRequest", "properties": { "inputs": { "type": "array", "description": "List of payment identifiers to read", "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" ] } }, "properties": { "type": "array", "description": "Properties to return for each payment", "items": { "type": "string" } }, "propertiesWithHistory": { "type": "array", "description": "Properties to return with history", "items": { "type": "string" } }, "idProperty": { "type": "string", "description": "The property to use as the identifier" } }, "required": [ "inputs", "properties" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }