Beppe Catanese
Beppe Catanese
Indeed this is the same problem as in #4164, the issues can be linked. The solution (or workaround) is to use `@Schema(name="aFoo")`, also `@JsonProperty("aFoo")` should work
It seems to be working fine with Swagger 2 where `@ApiModelProperty` has been replaced by `@Schema`. I actually didn't need to set the name using the `@Schema` annotation as the...
Which version? On `2.2.0-SNAPSHOT` it seems to be working fine
See unit test in PR #4152
Still not fixed I guess, I would like to have a look. @frantuma which is the branch developing OAS3.1 compatibility?
@frantuma Thanks for letting me know, I am happy to help if there are open issues (core, parser) and you would like some help. Great effort so far!
The Swagger Maven plugin supports JAX-RS out of the box, for SpringBoot maybe you can look at [SpringDoc Openapi Maven plugin](https://github.com/springdoc/springdoc-openapi-maven-plugin)
This is an issue introduced by #415 (btw the same problem appears in #2332). The name of the property is sanitized to avoid cluttering it (for example `getId` doesn't become...
The code checks for a `get` method with a lowercase letter after that (ie `getaSideName`), this is a fix introduced some time ago but clearly not covering every case. The...
This is the case in Swagger 2.X (OpenApi 3.0) where `@ApiResponses` has been dropped.