validating array of structs using goplayground validator library

4k Views Asked by At

How can I validate a slice of structs using validator framework?

For example, in the following type definitions, I want to validate each element in the field Puppies.

type User struct {
    FirstName string `json:"fname" validate:"alpha"`
    LastName  string `json:"lname" validate:"alpha"`
    Email     string `json:"email" validate:"required,email"`
    Puppies   []*Dog `json:"puppies"`
    // Puppy *Dog
}

type Dog struct {
    PuppyName string `json:"puppyname" validate:"alpha"`
}

https://play.golang.org/p/9-1Ih76hD7j is not working with array of dogs.

https://play.golang.org/p/PGQT3jaFVuS is working - with only one dog.

I want to validate the slice of structs, can we do it using goplayground validator framework?

1

There are 1 best solutions below

1
On

Use dive tag to perform validations on iterable structures:

Puppies   []*Dog `json:"puppies" validate:"dive"`

Refer to https://godoc.org/github.com/go-playground/validator#hdr-Dive