swagger: add 'Default' for Parameter

This commit is contained in:
Zhang Qiang 2016-10-29 22:33:57 +08:00
parent 5a8c40710c
commit ef3655877a
1 changed files with 1 additions and 0 deletions

View File

@ -97,6 +97,7 @@ type Parameter struct {
Type string `json:"type,omitempty" yaml:"type,omitempty"`
Format string `json:"format,omitempty" yaml:"format,omitempty"`
Items *ParameterItems `json:"items,omitempty" yaml:"items,omitempty"`
Default interface{} `json:"default,omitempty" yaml:"default,omitempty"`
}
// A limited subset of JSON-Schema's items object. It is used by parameter definitions that are not located in "body".