You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you ❤️ this project consider becoming a sponsor.
If you already use the springdoc-openapi, please do not forget adding a github star to this repository.
Is your feature request related to a problem? Please describe.
I want to use schema.requiredMode on ParameterObject too.
example
@GetMapping
public String index(@ParameterObject Request request) {
return null;
}
record Request(
@Schema(requiredMode = Schema.RequiredMode.REQUIRED)
String id
) {}
If you ❤️ this project consider becoming a sponsor.
If you already use the
springdoc-openapi
, please do not forget adding a github star to this repository.Is your feature request related to a problem? Please describe.
I want to use schema.requiredMode on ParameterObject too.
example
current
expected
Describe the solution you'd like
Same as above
Describe alternatives you've considered
considered.
Additional context
The text was updated successfully, but these errors were encountered: