From 6df7bf1095a7a9c5a745a9904fe55edb2d9af127 Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Tue, 26 May 2026 23:54:12 -0700 Subject: [PATCH] openapi: tighten deleteSecret.id to uuid format DeleteSecret is an x-runtime:[cloud] endpoint; cloud's runtime treats the secret ID as a UUID. Adds format: uuid to the path parameter so the generated type matches cloud's handler. No OSS-local consumer (cloud-only endpoint). --- openapi.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/openapi.yaml b/openapi.yaml index 944f480d7..c38511bfb 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -6758,6 +6758,7 @@ paths: required: true schema: type: string + format: uuid description: The secret ID. responses: "204":