This commit is contained in:
syuilo 2019-02-24 17:28:15 +09:00
parent d4c7ca76ac
commit 012d744f4c
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -28,6 +28,9 @@ export function convertOpenApiSchema(schema: Schema) {
if (!['string', 'number', 'boolean', 'array', 'object'].includes(x.type)) {
x['$ref'] = `#/components/schemas/${x.type}`;
}
if (x.type === 'array' && x.items) {
x.items = convertOpenApiSchema(x.items);
}
if (x.type === 'object' && x.properties) {
x.required = Object.entries(x.properties).filter(([k, v]: any) => !v.isOptional).map(([k, v]: any) => k);
for (const k of Object.keys(x.properties)) {