Kong · Schema

MCPServerPodsStatus

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
ready integer Number of pods in the ready state.
starting integer Number of pods in the starting state.
failing integer Number of pods in the failing state.
View JSON Schema on GitHub

JSON Schema

kong-mcpserverpodsstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MCPServerPodsStatus",
  "title": "MCPServerPodsStatus",
  "type": "object",
  "properties": {
    "ready": {
      "description": "Number of pods in the ready state.",
      "type": "integer",
      "example": 2,
      "minimum": 0
    },
    "starting": {
      "description": "Number of pods in the starting state.",
      "type": "integer",
      "example": 0,
      "minimum": 0
    },
    "failing": {
      "description": "Number of pods in the failing state.",
      "type": "integer",
      "example": 0,
      "minimum": 0
    }
  },
  "required": [
    "ready",
    "starting",
    "failing"
  ]
}