{ "type": "object", "description": "Standard error response", "name": "Error", "properties": { "category": { "type": "string" }, "correlationId": { "type": "uuid" }, "message": { "type": "string" }, "subCategory": { "type": "string" }, "context": { "type": "object" }, "links": { "type": "object" }, "errors": { "type": "array", "items": { "type": "object", "description": "Details about a specific error", "properties": { "message": { "type": "string" }, "code": { "type": "string" }, "subCategory": { "type": "string" }, "in": { "type": "string" }, "context": { "type": "object" } }, "required": [ "message" ] } } }, "required": [ "category", "correlationId", "message" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }