{ "type": "object", "description": "Standard error response", "name": "Error", "properties": { "category": { "type": "string", "description": "Error category" }, "correlationId": { "type": "uuid", "description": "Unique identifier for error tracking" }, "message": { "type": "string", "description": "Human-readable error message" }, "subCategory": { "type": "string", "description": "Specific error subcategory" }, "context": { "type": "object", "description": "Additional error context" }, "links": { "type": "object", "description": "Links to relevant documentation" }, "errors": { "type": "array", "description": "Detailed error information", "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 the error" }, "context": { "type": "object", "description": "Additional context" } }, "required": [ "message" ] } } }, "required": [ "category", "correlationId", "message" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }