If I have struct like this: ```go type Contact struct { Type string `json:"type"` Value string `json:"value"` } type User struct { Name string `json:"name"` Contacts []Contact `json:"contacts"` } ``` How to validate contact Type and value?