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
In Response It only shows status code and description + returned data It does not show enums defined there only
Example:
Should show this:
string , x ∈ { "Db not working","Redis not working" }
"/aws/healthcheck": { "get": { "tags": [ "Healthcheck" ], "summary": "Returns service status", "description": "Checks if our APIs are online", "operationId": "getStatus", "produces": [ "application/json" ], "responses": { "200": { "description": "All services online" }, "500": { "description": "Something is wrong", "schema": { "type": "string", "enum": [ "Db not working", "Redis not working" ] } } } } }
The text was updated successfully, but these errors were encountered:
Show enum values in response. Fixed sourcey#69.
0745d8a
Add a spec file to test. Taken from sourcey#69 with some modifications.
9e54d12
Merge pull request #112 from yyamano/issue-69
f389c64
Show enum values in response to fix #69
Successfully merging a pull request may close this issue.
In Response
It only shows status code and description + returned data
It does not show enums defined there only
Example:
Should show this:
The text was updated successfully, but these errors were encountered: