Kong · Schema

NotificationChannel

Channel subscription details for an event.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type object
enabled boolean
View JSON Schema on GitHub

JSON Schema

kong-notificationchannel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NotificationChannel",
  "title": "NotificationChannel",
  "description": "Channel subscription details for an event.",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/NotificationChannelType"
    },
    "enabled": {
      "type": "boolean"
    }
  },
  "required": [
    "type",
    "enabled"
  ]
}