{ "type": "object", "description": "Represents an error that occurred for a specific item in a batch operation", "name": "BatchError", "properties": { "status": { "type": "string", "description": "Error status code" }, "category": { "type": "string", "description": "Error category" }, "message": { "type": "string", "description": "Human-readable error message" }, "context": { "type": "object", "description": "Additional context about the error" } }, "required": [ "status", "category", "message" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }