Kong · Schema

MCPServerCPInfo

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-mcpservercpinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MCPServerCPInfo",
  "title": "MCPServerCPInfo",
  "allOf": [
    {
      "$ref": "#/components/schemas/MCPServerInfo"
    },
    {
      "type": "object",
      "properties": {
        "container": {
          "allOf": [
            {
              "$ref": "#/components/schemas/ContainerSpec"
            },
            {
              "description": "Configuration for the main container."
            }
          ]
        },
        "init_container": {
          "allOf": [
            {
              "$ref": "#/components/schemas/ContainerSpec"
            },
            {
              "description": "Configuration for the init container."
            }
          ]
        }
      }
    }
  ]
}