Open
Description
My https://github.com/o19s/quepid/blob/main/app/controllers/books/import_controller.rb#L21 takes two parameters for the file upload. I tried documenting like this:
# @request_body Upload a file(multipart/form-data)
# [
# !Hash{
# book: Hash{
# force_create_users: Boolean,
# import_file: File
# }
# }
# ]
However I get weird rendering:

However, if I follow the example from the PR by @saida:
@request_body Upload a file(multipart/form-data) [Hash{ file: File }]
Then it works.
How should I structure the file upload?
Also, I think we need docs on this in https://a-chacon.com/oas_core/ as well...