Details about an observed error message
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ObservationError", "title": "ObservationError", "type": "object", "description": "Details about an observed error message", "properties": { "name": { "type": "string", "description": "The name of the error/exception" }, "message": { "type": "string", "description": "The error message" }, "stack": { "type": "string", "description": "The stack trace of the error" } } }