1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-14 20:13:32 +00:00

Merge pull request #2211 from ihippik/patch-2

Default values
This commit is contained in:
astaxie 2016-10-08 17:52:07 +08:00 committed by GitHub
commit 53e996d4c3

View File

@ -126,7 +126,7 @@ type Propertie struct {
Ref string `json:"$ref,omitempty" yaml:"$ref,omitempty"`
Title string `json:"title,omitempty" yaml:"title,omitempty"`
Description string `json:"description,omitempty" yaml:"description,omitempty"`
Default string `json:"default,omitempty" yaml:"default,omitempty"`
Default interface{} `json:"default,omitempty" yaml:"default,omitempty"`
Type string `json:"type,omitempty" yaml:"type,omitempty"`
Example string `json:"example,omitempty" yaml:"example,omitempty"`
Required []string `json:"required,omitempty" yaml:"required,omitempty"`