- [x ] I have looked at the documentation [here](https://pkg.go.dev/github.com/go-playground/validator/v10#section-documentation) first? - [ x] I have looked at the examples provided that may showcase my question [here](/_examples)? ### Package version eg. v10: v10.23.0 ### Question: How can I validate the following `map[string]string`? It's failing me always with the ISO code but everything is correct. ### Code sample, to showcase or reproduce: ```go Translations map[string]string `validate:"min=1,dive,keys,iso3166_1_alpha2,endkeys,required"` ```