{ "$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" ] }