{ "type": "object", "description": "Standard error in batch operations", "name": "StandardError", "properties": { "status": { "type": "string", "description": "Error status" }, "id": { "type": "string", "description": "ID of the failed item" }, "category": { "type": "string", "description": "Error category" }, "message": { "type": "string", "description": "Error message" }, "errors": { "type": "array", "description": "Detailed errors", "items": { "type": "object", "description": "Detailed error information", "properties": { "message": { "type": "string", "description": "Error message" }, "code": { "type": "string", "description": "Error code" }, "subCategory": { "type": "string", "description": "Error subcategory" }, "in": { "type": "string", "description": "Location of error" }, "context": { "type": "object" } }, "required": [ "message" ] } }, "context": { "type": "object" }, "links": { "type": "object" } }, "required": [ "status", "category", "message" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }