We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example Swagger/OpenAPI definition:
openapi: 3.0.2 info: title: foo version: "0.1" servers: - url: http://localhost:4444 paths: /test: post: requestBody: content: multipart/form-data: schema: type: object properties: foo: type: array items: type: string format: binary responses: '200': description: baz
Swagger-UI configuration options:
SwaggerUIBundle({ url: "openapi.yaml", dom_id: '#swagger-ui', deepLinking: true, presets: [ SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset ], plugins: [ SwaggerUIBundle.plugins.DownloadUrl, HideTopbarPlugin ], layout: "StandaloneLayout", })
A multipart property defined like this:
foo: type: array items: type: string format: binary
Steps to reproduce the behavior:
Produced multipart request should have one part per file in array, containing the data from the corresponding file.
File arrays are described here.
The text was updated successfully, but these errors were encountered:
Nevermind, this is a duplicate of #4600
Sorry, something went wrong.
No branches or pull requests
Q&A (please complete the following information)
Content & configuration
Example Swagger/OpenAPI definition:
Swagger-UI configuration options:
Describe the bug you're encountering
A multipart property defined like this:
To reproduce...
Steps to reproduce the behavior:
Expected behavior
Produced multipart request should have one part per file in array, containing the data from the corresponding file.
Additional context or thoughts
File arrays are described here.
The text was updated successfully, but these errors were encountered: