{ "type": "object", "description": "Standard error response structure.", "name": "Error", "properties": { "category": { "type": "string", "description": "Error category" }, "correlationId": { "type": "uuid", "description": "Unique tracking identifier for support requests" }, "message": { "type": "string", "description": "Human-readable error message" }, "subCategory": { "type": "string", "description": "Error subcategory" }, "context": { "type": "object" }, "links": { "type": "object" }, "errors": { "type": "array", "items": { "type": "object", "description": "Detailed information about a specific error.", "properties": { "message": { "type": "string", "description": "Human-readable error message" }, "code": { "type": "string", "description": "Error code" }, "subCategory": { "type": "string", "description": "Error subcategory" }, "in": { "type": "string", "description": "Location where error occurred" }, "context": { "type": "object" } }, "required": [ "message" ] } } }, "required": [ "category", "correlationId", "message" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }