I'm using the package validator to help me deal with JSON fields in golang. I know how to use oneof to check for specific values in a field. Is there any option for doing the same, but for an array of strings?
I'm trying to do something like this:
type ResponseEntity struct {
Values []string `json:"values" validate:"oneof=VALUE1 VALUE2 VALUE3"`
}
As @mkopriva points out, you can use the
dive
keyword to check the elements of a slice.To offer more explanation:
min
are overloaded and apply to both scalar and slice typesoneof
apply only to scalars; (in the example below, a call tovalidate.Struct
causes a panic when the struct has aoneof
rule directly on a slice)dive
pushes rules likeoneof
down to the elements of a slice. (the example also showsmin
,dive
, andoneof
working together without panicking).