Description
Background
Many applications expect deeply nested objects in input parameters, see the discussion in swagger-ui starting from this comment: swagger-api/swagger-ui#4064 (comment) In LoopBack, we are running into this problem too, see loopbackio/loopback-next#1679.
Consider a filter
parameter defined as follows:
parameters:
filterParam:
in: query
name: filter
schema:
type: object
style: deepObject
explode: true
description: Options for filtering the results
required: false
Let's say the user wants to provide the following value, for example by entering a JSON into the text area rendered by swagger-ui:
{
"name": "ivan",
"birth-date": {
"gte": "1970-01-01"
}
}
At the moment, the OpenAPI Specification v3 does not describe how to encode such value in a query string. As a result, OpenAPI clients like swagger-ui don't know how to handle this input - see the discussion in swagger-api/swagger-js#1385 for an example.
Proposal
The following query string should be created by swagger-js client for the input value shown above.
filter[name]=ivan&filter[birth-date][qte]=1970-01-01
The proposed serialization style is supported by https://www.npmjs.com/package/qs, which is used by http://expressjs.com as the default query parser, which means that a vast number of Node.js API servers are already expecting this serialization style.
I am not sure if there is any existing formal specification of this format, I am happy to look into that once my proposal gets considered as acceptable in principle.
Additional information
Existing issues that are touching a similar topic:
- style: form + object looses the parameter name? style: form + object looses the parameter name? #1006
- Are indexes in the query parameter array representable? Are indexes in the query parameter array representable? #1501
Two older comments from swagger-js that may be relevant:
Limitations:
deepObject does not handle nested objects. The specification and swagger.io documentation does not provide an example for serializing deep objects. Flat objects will be serialized into the deepObject style just fine.
swagger-api/swagger-js#1140 (comment)
As for deepObject and nested objects - that was explicitly left out of the spec, and it's ok to just Not Support It™.