{ "type": "object", "description": "Error response", "properties": { "category": { "type": "string", "description": "The error category", "example": "VALIDATION_ERROR" }, "correlationId": { "type": "string", "description": "Unique request identifier for debugging", "format": "uuid", "example": "aeb5f871-7f07-4993-9211-075dc63e7cbf" }, "message": { "type": "string", "description": "Human-readable error message", "example": "Invalid input (details will vary based on the error)" }, "subCategory": { "type": "string", "description": "More specific error category", "example": "standard" }, "context": { "type": "object", "example": { "key": "value" } }, "links": { "type": "object", "example": { "key": "value" } }, "errors": { "type": "array", "example": [ { "message": "This is an example description.", "code": "example-value", "in": "example-value", "subCategory": "standard", "context": { "key": "value" } } ], "items": { "type": "object", "description": "Detailed error information", "properties": { "message": { "type": "string", "description": "Error message", "example": "This is an example description." }, "code": { "type": "string", "description": "Error code", "example": "example-value" }, "in": { "type": "string", "description": "Field where error occurred", "example": "example-value" }, "subCategory": { "type": "string", "description": "Error subcategory", "example": "standard" }, "context": { "type": "object", "example": { "key": "value" } } }, "required": [ "message" ] } } }, "required": [ "category", "correlationId", "message" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Error" }