Helen Kosova
Helen Kosova
The doc is correct. `responses..content.` defines both the response's `Content-Type` header and the request's `Accept` header. In other words, possible values for the request's `Accept` header are derived from the...
Hi @programster, thanks for the report. The link is supposed to point here: https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration We'll see why this got broken.
Thanks for the report! I've passed this onto our web team.
As @handrews mentioned, you probably need to use the [`content`](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#parameterContent) keyword for your query parameter. `content` uses the media type identifier to define the serialization format for the parameter schema....
@keyz182 your scenario can be described by using a [`deepObject`](https://github.com/OAI/OpenAPI-Specification/blob/v3.0.3-dev/versions/3.0.3.md#style-examples)-style parameter: ```yaml - in: query name: filter required: false schema: type: object additionalProperties: true example: foo: bar inputs.datetime.gte: 242839744 style:...