Kong · Schema

EventGatewayNodeError

An error reported by an event gateway node.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
name string The name of the error.
message string The error message.
View JSON Schema on GitHub

JSON Schema

kong-eventgatewaynodeerror-schema.json Raw ↑
{
  "$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"
  ]
}