{ "type": "object", "description": "Request body for completing multiple callbacks", "name": "BatchCallbackCompletionRequest", "properties": { "inputs": { "type": "array", "description": "List of callbacks to complete", "items": { "type": "object", "description": "A single callback completion input", "properties": { "callbackId": { "type": "string", "description": "The unique identifier of the callback" }, "outputFields": { "type": "object", "description": "The output values to return" } }, "required": [ "callbackId", "outputFields" ] } } }, "required": [ "inputs" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }