Closed
Description
I have a use case where I have some type of "file system", the api works the following way:
/api/user/{id}/{+path_to_file}
where path_to_file is the actual path to the file.
The problem is that there is no current way to describe this with OpenAPI 3.0.
There is an option called allowReserved
that would allow this but only work on query parameters. Why limit the option?
It is easy to see how it would work for the last path parameter, but I think it could work for any of them, it would match any character until the path matches the next part of the template.