Kong · Schema

IntegrationResourceEvent

Defines a registered event type for a given resource.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
display_name string User-friendly display name for the event type.
description string Optional, brief description of the integration event type.
events_feed object
View JSON Schema on GitHub

JSON Schema

kong-integrationresourceevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationResourceEvent",
  "title": "IntegrationResourceEvent",
  "description": "Defines a registered event type for a given resource.",
  "type": "object",
  "properties": {
    "display_name": {
      "description": "User-friendly display name for the event type.",
      "type": "string"
    },
    "description": {
      "description": "Optional, brief description of the integration event type.",
      "type": "string",
      "nullable": true
    },
    "events_feed": {
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether this event type is returned by default in the Events API.",
          "type": "boolean"
        }
      },
      "required": [
        "enabled"
      ]
    }
  },
  "required": [
    "display_name",
    "description",
    "events_feed"
  ]
}