{ "type": "object", "description": "Standard error response object", "name": "Error", "properties": { "category": { "type": "string", "description": "The category of the error" }, "correlationId": { "type": "uuid", "description": "A unique identifier for tracking this error" }, "message": { "type": "string", "description": "A human-readable error message" }, "subCategory": { "type": "string", "description": "A more specific error category" }, "context": { "type": "object", "description": "Additional context about the error" }, "links": { "type": "object", "description": "Links to relevant documentation" }, "errors": { "type": "array", "description": "List of specific errors", "items": { "type": "object", "description": "Detailed information about a specific error", "properties": { "message": { "type": "string", "description": "A human-readable error message" }, "code": { "type": "string", "description": "An error code" }, "subCategory": { "type": "string", "description": "A specific error subcategory" }, "in": { "type": "string", "description": "The location of the error (e.g., body, query, path)" }, "context": { "type": "object", "description": "Additional context about the specific error" } }, "required": [ "message" ] } } }, "required": [ "category", "correlationId", "message" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }