Kong · Schema

UserConfiguration

Properties of an event.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
event_id string
event_title string
event_description string
event_namespace object
event_subscription_count integer
default_subscription array
View JSON Schema on GitHub

JSON Schema

kong-userconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserConfiguration",
  "title": "UserConfiguration",
  "description": "Properties of an event.",
  "type": "object",
  "properties": {
    "event_id": {
      "type": "string"
    },
    "event_title": {
      "type": "string"
    },
    "event_description": {
      "type": "string"
    },
    "event_namespace": {
      "$ref": "#/components/schemas/NotificationNamespace"
    },
    "event_subscription_count": {
      "type": "integer",
      "default": 0
    },
    "default_subscription": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DefaultSubscription"
      }
    }
  },
  "required": [
    "event_id",
    "event_title",
    "event_description",
    "event_namespace",
    "event_subscription_count",
    "default_subscription"
  ]
}