Hi, I use the following rules on a `map<string, string>`: `(validate.rules).map.keys.string.min_len = 1,` And when the rule is not respected, the error message is ending by: <pre><b>value</b> length must be at least 1 characters</pre> Shouldn't it be: <pre><b>key</b> length must be at least 1 characters</pre> Besause it is not clear if the key or the value do not respect the rule Regards
Activity
lehuunhan404 commentedon Jun 27, 2023
[GO]
I use the following rules on a map<string, string>
In file validate.go:
Regards