From 277abbae9db041bff6737a1acae44941d9658c05 Mon Sep 17 00:00:00 2001 From: Ethan Date: Tue, 14 Apr 2026 14:21:06 -0700 Subject: [PATCH] OAD schema `content` object $comment: this is a property of Parameter, Request Body, Response, Header (not just Request Body) --- src/schemas/validation/schema.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/schemas/validation/schema.yaml b/src/schemas/validation/schema.yaml index c22ab84cf0..4ca8d604fd 100644 --- a/src/schemas/validation/schema.yaml +++ b/src/schemas/validation/schema.yaml @@ -566,7 +566,11 @@ $defs: $ref: '#/$defs/request-body' content: - $comment: https://spec.openapis.org/oas/v3.2#fixed-fields-10 + $comment: | + Parameter Object: https://spec.openapis.org/oas/v3.2#fixed-fields-9 + Request Body Object: https://spec.openapis.org/oas/v3.2#fixed-fields-10 + Response Object: https://spec.openapis.org/oas/v3.2#fixed-fields-14 + Header Object: https://spec.openapis.org/oas/v3.2#fixed-fields-17 type: object additionalProperties: $ref: '#/$defs/media-type-or-reference'