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
I need to check that file[] and title[] are not empty.
Once I set required, I get Body does not match schema for content-type \"multipart\/form-data\" If i remove "required", upload works correctly.
Body does not match schema for content-type \"multipart\/form-data\"
requestBody: required: true content: multipart/form-data: schema: required: - 'file[]' - 'title[]' properties: 'file[]': type: array items: type: string format: binary 'title[]': type: array items: type: string type: object
I have also tried this, but same results as above.
requestBody: required: true content: multipart/form-data: schema: required: - 'file' - 'title' properties: 'file': type: array items: type: string format: binary 'title': type: array items: type: string type: object
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I need to check that file[] and title[] are not empty.
Once I set required, I get
Body does not match schema for content-type \"multipart\/form-data\"
If i remove "required", upload works correctly.
I have also tried this, but same results as above.
The text was updated successfully, but these errors were encountered: