Kong · Schema
NodeCompatibilityIssue
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The compatibility issue code. |
| severity | string | The severity of the issue. |
| description | string | The description of the issue. |
| resolution | string | Steps required to take in order to resolve the issue. |
| affected_resources | array | Details of the resources affected by the issue. |
| documentation_url | string | Doc URL for the compatibility issue. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/NodeCompatibilityIssue",
"title": "NodeCompatibilityIssue",
"type": "object",
"properties": {
"code": {
"description": "The compatibility issue code.",
"type": "string"
},
"severity": {
"description": "The severity of the issue.",
"type": "string"
},
"description": {
"description": "The description of the issue.",
"type": "string"
},
"resolution": {
"description": "Steps required to take in order to resolve the issue.",
"type": "string"
},
"affected_resources": {
"description": "Details of the resources affected by the issue.",
"type": "array",
"items": {
"$ref": "#/components/schemas/NodeCompatibilityIssueAffectedResource"
}
},
"documentation_url": {
"description": "Doc URL for the compatibility issue.",
"type": "string"
}
}
}