I have the following defined in a bean:
@Schema(description = "Detailed text to customer", required = true, maxItems = 30)
private String[] customerTextList;
How can i also specify that the maxLength of each customerTextList, can maximum be 15 characters long.
Adding maxLength = 15, does not work. Are there any other way to specify this?