From f1adcaa87f86ba26cd3887309d02cd20e8cf4402 Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Tue, 19 May 2026 19:51:58 -0700 Subject: [PATCH] docs(openapi): add maxItems=500 to job_ids to match server cap CodeRabbit catch on PR #13998: the Pydantic schema caps `job_ids` at 500 entries, but the OpenAPI parameter omitted `maxItems`, so generated clients and docs wouldn't reflect the runtime limit. --- openapi.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/openapi.yaml b/openapi.yaml index 148d4f3dd..10053fb1c 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -1560,6 +1560,7 @@ paths: in: query schema: type: array + maxItems: 500 items: type: string format: uuid