package types type ContactRequest struct { Name string `json:"name" validate:"required"` Email string `json:"email" validate:"required,email"` OtherContact string `json:"other_contact,omitempty"` Notes string `json:"notes,omitempty"` }