// MarshalJSON marshal this to JSON func (s Schema) MarshalJSON() ([]byte, error) { b1, err := json.Marshal(s.schemaProps) if err != nil { return nil, fmt.Errorf("schema props %v", err) } b2, err := json.Marshal(s.vendorExtensible) if err != nil { return nil, fmt.Errorf("vendor props %v", err) } b3, err := s.Ref.MarshalJSON() if err != nil { return nil, fmt.Errorf("ref prop %v", err) } b4, err := s.Schema.MarshalJSON() if err != nil { return nil, fmt.Errorf("schema prop %v", err) } b5, err := json.Marshal(s.swaggerSchemaProps) if err != nil { return nil, fmt.Errorf("common validations %v", err) } var b6 []byte if s.ExtraProps != nil { jj, err := json.Marshal(s.ExtraProps) if err != nil { return nil, fmt.Errorf("extra props %v", err) } b6 = jj } return swag.ConcatJSON(b1, b2, b3, b4, b5, b6), nil }
// MarshalJSON marshal this to JSON func (i Info) MarshalJSON() ([]byte, error) { b1, err := json.Marshal(i.infoProps) if err != nil { return nil, err } b2, err := json.Marshal(i.vendorExtensible) if err != nil { return nil, err } return swag.ConcatJSON(b1, b2), nil }
// MarshalJSON marshal this to JSON func (s SecurityScheme) MarshalJSON() ([]byte, error) { b1, err := json.Marshal(s.securitySchemeProps) if err != nil { return nil, err } b2, err := json.Marshal(s.vendorExtensible) if err != nil { return nil, err } return swag.ConcatJSON(b1, b2), nil }
// MarshalJSON converts this items object to JSON func (r Response) MarshalJSON() ([]byte, error) { b1, err := json.Marshal(r.responseProps) if err != nil { return nil, err } b2, err := json.Marshal(r.refable) if err != nil { return nil, err } return swag.ConcatJSON(b1, b2), nil }
// MarshalJSON marshal this to JSON func (t Tag) MarshalJSON() ([]byte, error) { b1, err := json.Marshal(t.tagProps) if err != nil { return nil, err } b2, err := json.Marshal(t.vendorExtensible) if err != nil { return nil, err } return swag.ConcatJSON(b1, b2), nil }
// MarshalJSON converts this items object to JSON func (o Operation) MarshalJSON() ([]byte, error) { b1, err := json.Marshal(o.operationProps) if err != nil { return nil, err } b2, err := json.Marshal(o.vendorExtensible) if err != nil { return nil, err } concated := swag.ConcatJSON(b1, b2) return concated, nil }
// MarshalJSON converts this items object to JSON func (r Responses) MarshalJSON() ([]byte, error) { b1, err := json.Marshal(r.responsesProps) if err != nil { return nil, err } b2, err := json.Marshal(r.vendorExtensible) if err != nil { return nil, err } concated := swag.ConcatJSON(b1, b2) return concated, nil }
// MarshalJSON marshal this to JSON func (h Header) MarshalJSON() ([]byte, error) { b1, err := json.Marshal(h.commonValidations) if err != nil { return nil, err } b2, err := json.Marshal(h.simpleSchema) if err != nil { return nil, err } b3, err := json.Marshal(h.headerProps) if err != nil { return nil, err } return swag.ConcatJSON(b1, b2, b3), nil }
// MarshalJSON converts this items object to JSON func (i Items) MarshalJSON() ([]byte, error) { b1, err := json.Marshal(i.commonValidations) if err != nil { return nil, err } b2, err := json.Marshal(i.simpleSchema) if err != nil { return nil, err } b3, err := json.Marshal(i.refable) if err != nil { return nil, err } return swag.ConcatJSON(b3, b1, b2), nil }
// MarshalJSON converts this items object to JSON func (p PathItem) MarshalJSON() ([]byte, error) { b3, err := json.Marshal(p.refable) if err != nil { return nil, err } b4, err := json.Marshal(p.vendorExtensible) if err != nil { return nil, err } b5, err := json.Marshal(p.pathItemProps) if err != nil { return nil, err } concated := swag.ConcatJSON(b3, b4, b5) return concated, nil }
// MarshalJSON converts this items object to JSON func (p Paths) MarshalJSON() ([]byte, error) { b1, err := json.Marshal(p.vendorExtensible) if err != nil { return nil, err } var pths map[string]PathItem for k, v := range p.Paths { if strings.HasPrefix(k, "/") { if pths == nil { pths = make(map[string]PathItem) } pths[k] = v } } b2, err := json.Marshal(pths) if err != nil { return nil, err } concated := swag.ConcatJSON(b1, b2) return concated, nil }