I have a user request payload
class UserRequest { @NotBlank String firstName; @NotBlank String lastName; @Min(18) @Max(65) Integer age; .. }