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
I have an openapi.json file which includes a multi-schema response for a request like this:
"responses": { "200": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CountResultDto" }, "examples": { "example-1": { "summary": "Status 200.", "description": "GET `/authorization/count?userIdIn=jonny1,jonny2`", "value": { "count": 2 } } } } }, "description": "Request successful." }, "400": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ExceptionDto" } } }, "description": "Returned if some of the query parameters are invalid, for example if a `sortOrder`\r\nparameter is supplied, but no `sortBy` is specified. See the\r\n[Introduction](https://docs.camunda.org/manual/latest/reference/rest/overview/#error-handling)\r\nfor the error response format." } }
I can get the first schema in the post-response to a request from the postman when I use this:
{ "openApiOperation": "*::/*", "schemaValidation": { "enabled": true } }
How can you get all of them? For example, in this scenario, get response 200 and 400 schema validation
The text was updated successfully, but these errors were encountered:
hi @shahinshirvani
Let me do some trials, since If I'm not mistaken it would be possible. I'll keep you posted.
Sorry, something went wrong.
@thim81 I appreciate your time and will wait for your response
Hi @thim81 Do you have any update about this issue?
thim81
No branches or pull requests
I have an openapi.json file which includes a multi-schema response for a request like this:
I can get the first schema in the post-response to a request from the postman when I use this:
How can you get all of them? For example, in this scenario, get response 200 and 400 schema validation
The text was updated successfully, but these errors were encountered: