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
Using swagger-annotations and swagger-maven-plugin, version 2.2.9.
Upgrading to 2.2.9, the following happens: @Schema(example = "4242424242424242", minLength = 12, maxLength = 19, required = true)
is generated as: type: string example: "4242424242424242" maxLength: 19 minLength: 1
Using
swagger-annotations
andswagger-maven-plugin
, version 2.2.9.Upgrading to
2.2.9
, the following happens:@Schema(example = "4242424242424242", minLength = 12, maxLength = 19, required = true)
is generated as:
type: string example: "4242424242424242" maxLength: 19 minLength: 1
@Schema(example = "123", minLength = 3, maxLength = 4, required = true)
is generated as
type: string example: "123" maxLength: 4 minLength: 1
The text was updated successfully, but these errors were encountered: