{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventGatewayNodeError", "title": "EventGatewayNodeError", "description": "An error reported by an event gateway node.", "type": "object", "properties": { "name": { "description": "The name of the error.", "type": "string" }, "message": { "description": "The error message.", "type": "string" } }, "required": [ "name", "message" ] }