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
Hi!
Thank you for providing this awesome library. I wrote the next code sample:
@Operation(summary = "Get employee", tags = {"Employee"}) @GetMapping(value = "employee") public Mono<Employee> searchEmployee(String id, RequestParameter requestParam) { return Mono.empty(); }
public class RequestParameter { String firstParam; String secondParam; }
Swagger UI result:
And I wonder if there any way to show RequestParameter, not as an object but as a list of object properties.
Thank you!
The text was updated successfully, but these errors were encountered:
Hi,
We generate the OpenAPI description, and then we mainly rely on the official swagger jars (annotations/models/ui) .
This is the behaviour of swagger-ui. And there is a related enhancement on swagger-ui that we follow. This isn't yet resolved:
Sorry, something went wrong.
No branches or pull requests
Hi!
Thank you for providing this awesome library.
I wrote the next code sample:
Swagger UI result:
And I wonder if there any way to show RequestParameter, not as an object but as a list of object properties.
Thank you!
The text was updated successfully, but these errors were encountered: