We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenAPI-Specification/schemas/v3.0/schema.json
Line 1631 in 9218ce6
This causes OAS 3 documents that are valid against the spec to fail. (and breaks tooling that relies on the schema for validation)
Here's an example encoding object which fails validation:
encoding: url: headers: id: $ref: '#/components/headers/id'
The schema should be
"additionalProperties": { "oneOf": [ { "$ref": "#/definitions/Header" }, { "$ref": "#/definitions/Reference" }, ] }
I'll submit a PR with this change for you.
The text was updated successfully, but these errors were encountered:
OAI#2157: Update schema to validate refs in headers of encoding objects
76f184b
#2158
Sorry, something went wrong.
Merge pull request #2158 from alasdairhurst/master
2d1f573
#2157: Update schema to validate refs in headers of encoding objects
bdf7592
Closing as #2158 was merged. Thanks all.
No branches or pull requests
OpenAPI-Specification/schemas/v3.0/schema.json
Line 1631 in 9218ce6
This causes OAS 3 documents that are valid against the spec to fail. (and breaks tooling that relies on the schema for validation)
Here's an example encoding object which fails validation:
The schema should be
I'll submit a PR with this change for you.
The text was updated successfully, but these errors were encountered: