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.
This commit is contained in:
Matt Miller 2026-05-19 19:51:58 -07:00
parent cdc61706c6
commit f1adcaa87f

View File

@ -1560,6 +1560,7 @@ paths:
in: query
schema:
type: array
maxItems: 500
items:
type: string
format: uuid