{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Error", "title": "Error", "type": "object", "properties": { "message": { "type": "string", "description": "Human-readable error message", "example": "Invalid client credentials" }, "trackingId": { "type": "string", "description": "Unique identifier for tracking this error", "example": "ROUTER_1234567890ABCDEF" }, "errors": { "type": "array", "description": "Detailed list of validation errors", "items": { "type": "object", "properties": { "description": { "type": "string", "description": "Description of the specific error", "example": "clientSecret is required" } } }, "example": [ { "description": "clientSecret is required" } ] } }, "example": { "message": "Invalid client credentials", "trackingId": "ROUTER_1234567890ABCDEF", "errors": [ { "description": "The provided clientSecret is invalid" } ] } }