Kong · Schema
AddOnResponse
Object containing information about an add-on.
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| name | object | |
| owner | object | |
| config | object | |
| entity_version | integer | Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on. |
| state | object | |
| created_at | string | RFC-3339 timestamp representation of add-on creation date. |
| updated_at | string | RFC-3339 timestamp representation of add-on update date. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AddOnResponse",
"title": "AddOnResponse",
"description": "Object containing information about an add-on.",
"type": "object",
"properties": {
"id": {
"$ref": "#/components/schemas/AddOnId"
},
"name": {
"$ref": "#/components/schemas/AddOnName"
},
"owner": {
"$ref": "#/components/schemas/AddOnOwner"
},
"config": {
"$ref": "#/components/schemas/AddOnConfigResponse"
},
"entity_version": {
"description": "Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.",
"type": "integer",
"example": 1,
"readOnly": true
},
"state": {
"$ref": "#/components/schemas/AddOnState"
},
"created_at": {
"description": "RFC-3339 timestamp representation of add-on creation date.",
"type": "string",
"format": "date-time",
"example": "2025-08-26T06:56:41Z",
"readOnly": true
},
"updated_at": {
"description": "RFC-3339 timestamp representation of add-on update date.",
"type": "string",
"format": "date-time",
"example": "2025-08-26T06:56:41Z",
"readOnly": true
}
},
"additionalProperties": false,
"required": [
"id",
"name",
"owner",
"config",
"entity_version",
"state",
"created_at",
"updated_at"
]
}