From a004dad3dcc6c8f5c7eb209ae08a6affeaa47f85 Mon Sep 17 00:00:00 2001 From: Ralf Handl Date: Wed, 13 Aug 2025 14:15:00 +0200 Subject: [PATCH] unevaluated properties --- tests/schema/fail/unevaluated-properties.yaml | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 tests/schema/fail/unevaluated-properties.yaml diff --git a/tests/schema/fail/unevaluated-properties.yaml b/tests/schema/fail/unevaluated-properties.yaml new file mode 100644 index 0000000000..a9a4639179 --- /dev/null +++ b/tests/schema/fail/unevaluated-properties.yaml @@ -0,0 +1,60 @@ +openapi: 3.2.0 +info: + not-allowed: here + contact: + not-allowed: here + license: + not-allowed: here +tags: + - name: tag with unevaluated properties + not-allowed: here +components: + schemas: + externalDocs-with-unevaluated-properties: + type: object + externalDocs: + not-allowed: here + discriminator-with-unevaluated-properties: + type: object + discriminator: + not-allowed: here + pathItems: + operation-with-unevaluated-properties: + get: + not-allowed: here + externalDocs: + not-allowed: here + responses: + not-allowed: here + parameters: + parameter-with-unevaluated-properties: + not-allowed: here + responses: + response-with-unevaluated-properties: + not-allowed: here + links: + link-with-unevaluated-properties: + not-allowed: here + headers: + header-with-unevaluated-properties: + not-allowed: here + securitySchemes: + security-scheme-with-unevaluated-properties: + not-allowed: here + oauth-with-unevaluated-properties: + type: oauth2 + flows: + not-allowed: here + oauth-flows-with-unevaluated-properties: + type: oauth2 + flows: + implicit: + not-allowed: here + password: + not-allowed: here + clientCredentials: + not-allowed: here + authorizationCode: + not-allowed: here + deviceAuthorization: + not-allowed: here