{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "errorResponse", "type": "object", "description": "error description", "properties": { "status": { "type": "string", "description": "status" }, "timestamp": { "type": "string", "description": "timestamp in YYYY-MM-DD HH:MM:SS.SSS" }, "path": { "type": "string", "description": "The Endpoint path {package}/version/{endpoint}" }, "message": { "type": "string", "description": "The plain text error message" }, "subErrors": { "type": "object", "description": "subErrors related to the error message. Null if not applicable." } } }