Add support of collections inner constraints. Example: `@Valid private List<@NotBlank @Size(min = 1, max = 100) String> someUsefulInformationList;` Example of expected snippet:  PS: StackOverflow [question](https://stackoverflow.com/questions/67104197/how-i-can-document-inner-collection-constraints-in-spring-auto-restdocs)
Add support of collections inner constraints.
Example:
@Valid private List<@NotBlank @Size(min = 1, max = 100) String> someUsefulInformationList;Example of expected snippet:

PS: StackOverflow question