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
az-success-response-body
JSON path is not scoped to the field values of the response object in OAS3. the first level is content the second level can be any mime-type
field
content
mime-type
$.paths[*][*].responses[?(@property >= 200 && @property < 300 && @property != 202 && @property != 204)].content[*]
Example:
{ "openapi": "3.0.0", "paths": { "/endpoint": { "get": { "responses": { "200": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/SuccessfulResponse" } } }, "description": "Success" } } } } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
JSON path is not scoped to the
field
values of the response object in OAS3.the first level is
content
the second level can be any
mime-type
$.paths[*][*].responses[?(@property >= 200 && @property < 300 && @property != 202 && @property != 204)].content[*]
Example:
The text was updated successfully, but these errors were encountered: