{ "info": { "title": "test openapi title", "version": "test openapi version" }, "openapi": "3.0.0", "paths": { "/files": { "post": { "requestBody": { "description": "upload file", "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "address": { "type": "object", "properties": { "street": { "type": "string" }, "city": { "type": "string" } } }, "profileImage": { "type": "string", "format": "binary" } } } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "string" } } } } } } } } }