1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-18 09:43:32 +00:00

add Enum field to Schema

This commit is contained in:
ilylia 2017-11-13 14:36:08 +08:00
parent 3b829504f6
commit 4018693fbd

View File

@ -121,6 +121,7 @@ type Schema struct {
Type string `json:"type,omitempty" yaml:"type,omitempty"`
Items *Schema `json:"items,omitempty" yaml:"items,omitempty"`
Properties map[string]Propertie `json:"properties,omitempty" yaml:"properties,omitempty"`
Enum []interface{} `json:"enum,omitempty" yaml:"enum,omitempty"`
}
// Propertie are taken from the JSON Schema definition but their definitions were adjusted to the Swagger Specification