Jessin ra
Results
4
comments of
Jessin ra
I think it's sampling ,, theres something about n_sample for each relation type
Me too, any updates on this ?
For anyone who is looking in the future, use `.AllowExtraKeys()` after `.Map(...)` to enable extra keys. ``` validation.Map( validation.Key("Name", validation.Required), validation.Key("Email", validation.Required), validation.Key("Password", validation.Required), //skip any other extra keys ).AllowExtraKeys()...