| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
|
|
| package models |
|
|
| |
| |
|
|
| import ( |
| "context" |
| "strconv" |
|
|
| "github.com/go-openapi/errors" |
| "github.com/go-openapi/strfmt" |
| "github.com/go-openapi/validate" |
| ) |
|
|
| |
| |
| |
| type DistributedTasks map[string][]DistributedTask |
|
|
| |
| func (m DistributedTasks) Validate(formats strfmt.Registry) error { |
| var res []error |
|
|
| for k := range m { |
|
|
| if err := validate.Required(k, "body", m[k]); err != nil { |
| return err |
| } |
|
|
| for i := 0; i < len(m[k]); i++ { |
|
|
| if err := m[k][i].Validate(formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName(k + "." + strconv.Itoa(i)) |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName(k + "." + strconv.Itoa(i)) |
| } |
| return err |
| } |
|
|
| } |
|
|
| } |
|
|
| if len(res) > 0 { |
| return errors.CompositeValidationError(res...) |
| } |
| return nil |
| } |
|
|
| |
| func (m DistributedTasks) ContextValidate(ctx context.Context, formats strfmt.Registry) error { |
| var res []error |
|
|
| for k := range m { |
|
|
| for i := 0; i < len(m[k]); i++ { |
|
|
| if err := m[k][i].ContextValidate(ctx, formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName(k + "." + strconv.Itoa(i)) |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName(k + "." + strconv.Itoa(i)) |
| } |
| return err |
| } |
|
|
| } |
|
|
| } |
|
|
| if len(res) > 0 { |
| return errors.CompositeValidationError(res...) |
| } |
| return nil |
| } |
|
|