Kong · Schema
EventSubscriptionResponse
Properties associated with an event subscription.
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| entity_type | object | |
| created_at | object | |
| updated_at | object | |
| regions | array | |
| entities | array | |
| channels | array | |
| enabled | boolean | Enable/Disable complete subscription within an event. |
| name | string | User provided name of the subscription. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventSubscriptionResponse",
"title": "EventSubscriptionResponse",
"description": "Properties associated with an event subscription.",
"type": "object",
"properties": {
"id": {
"$ref": "#/components/schemas/UUID"
},
"entity_type": {
"$ref": "#/components/schemas/EntityTypes"
},
"created_at": {
"$ref": "#/components/schemas/CreatedAt"
},
"updated_at": {
"$ref": "#/components/schemas/UpdatedAt"
},
"regions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NotificationRegion"
}
},
"entities": {
"type": "array",
"items": {
"type": "string",
"description": "ID of the entity. Use '*' to represent all entities of this type."
}
},
"channels": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NotificationChannel"
}
},
"enabled": {
"description": "Enable/Disable complete subscription within an event.",
"type": "boolean"
},
"name": {
"description": "User provided name of the subscription.",
"type": "string"
}
},
"required": [
"id",
"entity_type",
"created_at",
"updated_at",
"regions",
"entities",
"channels",
"enabled",
"name"
]
}