fix required struct tag when anonymous nested struct

This commit is contained in:
zhangqz 2021-04-30 14:03:04 +08:00
parent 677987a7d9
commit 13f0022bae
1 changed files with 1 additions and 0 deletions

View File

@ -1224,6 +1224,7 @@ func parseStruct(st *ast.StructType, k string, m *swagger.Schema, realTypes *[]s
for name, p := range nm.Properties {
m.Properties[name] = p
}
m.Required = append(m.Required, nm.Required...)
continue
}
}