using default springdoc configuration to generate swagger for my spring boot application. We use "is" prefix pro boolean attributes in our api request and response but in generated api documentation there is not the "is" prefix.
Example:
public class Foo{
private boolean isSelected;
private boolean isValid;
}
Swagger:
Foo:
type: object
properties:
selected:
type: boolean
valid:
type: boolean
Is there any configuration to not ignore "is" prefix for springdoc?
Thank you for any response