When using the Swagger Jaxrs2 library, Javax/Jakarta validation annotations are processed to build up the documentation. For example, if I have an Integer property with a @field:Min(1) annotation on it, that annotation will be used to generate the documentation for that object, specifying that the minimum allowed value for that property is 1. I would like this library to be able to do the same thing. :)
When using the Swagger Jaxrs2 library, Javax/Jakarta validation annotations are processed to build up the documentation. For example, if I have an Integer property with a
@field:Min(1)
annotation on it, that annotation will be used to generate the documentation for that object, specifying that the minimum allowed value for that property is 1. I would like this library to be able to do the same thing. :)