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 would like to do this:
components: headers: Surrogate-Key: description: see https://docs.fastly.com/en/guides/working-with-surrogate-keys style: simple # default explode: false # default x-delimiter: ' ' schema: type: array items: type: string pattern: ^myapp-
..because this header is formatted as space-separated strings, rather than comma-separated.
The text was updated successfully, but these errors were encountered:
I would suggest that the delimiter be expressed as a regular expression, rather than a string, for maximum flexibility.
This also naturally leads to us deriving the default values for various parameter types:
delimiter
,
\s*,\s*
&
\s*;\s*
Sorry, something went wrong.
note: do not trust https://swagger.io/docs/specification/serialization/#query - there are typos here!
This is done in version 0.049.
No branches or pull requests
I would like to do this:
..because this header is formatted as space-separated strings, rather than comma-separated.
The text was updated successfully, but these errors were encountered: