validation on `Flux<Dto>` only works with the `@Valid` at the `Flux<>` and not on the dto object. i.e. it requires ```java @Valid Flux<Dto> ``` instead of ```java Flux<@Valid Dto> ```