Merge pull request #779 from RedBoneZhang/Branch_master

fix required struct tag when anonymous nested struct
This commit is contained in:
Ming Deng 2021-04-30 07:36:48 -07:00 committed by GitHub
commit 457c2f7dc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -1212,6 +1212,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
}
}