{ "type": "object", "description": "Error information for a failed callback", "properties": { "callbackId": { "type": "string", "description": "The callback that failed", "example": "500123" }, "message": { "type": "string", "description": "Error message", "example": "This is an example description." }, "category": { "type": "string", "description": "Error category", "example": "standard" } }, "required": [ "callbackId", "message", "category" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BatchCallbackError" }