-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.0.0-preview-0651 Multiple File Upload Support #902
Comments
@saurabhrajguru in common case required to add support for I need this feature too |
Need to get OpenAPi 3.0 support in place first as 2.0 does not support multiple file uploads. The 3.0 support is in work |
@domaindrivendev how to do it? Can you please explain it? |
So far as generating the correct Swagger/OA3 JSON, this is already supported in With that said, the |
Is it supposed to generate the correct swagger.json if there are multiple parameters?
The generated swagger.json looks like this:
It's completely missing the |
I am using build from myget "4.0.0-preview-0651" to try OpenAPI 3.0 support.
I have one endpoint which is defined as
List<IFormFile> fileList
.I am aware that swagger 2.0 does not support the list of Files.
However It seems that OpenAPI 3.0 has support for Multiple File Upload.
https://swagger.io/docs/specification/describing-request-body/file-upload/
Is there anything I can use to achieve that ?
The text was updated successfully, but these errors were encountered: