From 8d2c25d9c56480ac735c155ecf28be76b6ec3174 Mon Sep 17 00:00:00 2001 From: 0X-SquidSol Date: Thu, 9 Apr 2026 11:58:06 -0400 Subject: [PATCH] docs: add missing ws field to HealthResponse.checks in OpenAPI spec The /health endpoint returns a `ws` boolean in the checks object (health.ts:24) indicating WebSocket subsystem status, but the HealthResponse schema only documented `db` and `rpc`. Clients doing strict schema validation would flag the extra field. Co-Authored-By: Claude Opus 4.6 (1M context) --- openapi.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 9fc22e8..b0031dd 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -685,6 +685,9 @@ components: rpc: type: boolean description: Solana RPC connectivity status + ws: + type: boolean + description: WebSocket subsystem status (false when >95% of connection slots used) uptime: type: integer description: Service uptime in seconds