From 52752612aa6aee841c243baeefba8a39301f940e Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Fri, 22 May 2026 15:48:23 -0700 Subject: [PATCH] fix(openapi): add BindingErrorResponse schema OAuthRegisterBadRequestResponse references BindingErrorResponse but that schema wasn't in the original add. Adding it now as a cloud-only schema matching the cloud runtime's binding-error shape (single 'message' string field). --- openapi.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index d36f51e17..42af5a5dc 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -9940,3 +9940,13 @@ components: description: When the user joined the workspace (same as created_at for the workspace creator) subscription_tier: $ref: '#/components/schemas/SubscriptionTier' + + BindingErrorResponse: + type: object + x-runtime: [cloud] + description: '[cloud-only] Error shape returned when request binding or validation fails before the handler runs.' + required: + - message + properties: + message: + type: string