Merge pull request #464 from liusy182/patch-1

Do no omit response description
This commit is contained in:
astaxie 2017-08-06 22:40:20 +08:00 committed by GitHub
commit b8040300b6
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ type Propertie struct {
// Response as they are returned from executing this operation.
type Response struct {
Description string `json:"description,omitempty" yaml:"description,omitempty"`
Description string `json:"description" yaml:"description"`
Schema *Schema `json:"schema,omitempty" yaml:"schema,omitempty"`
Ref string `json:"$ref,omitempty" yaml:"$ref,omitempty"`
}