You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This scenario looks similar to the deepObject serialization style, however, the OpenAPI Specification defines the deepObject behavior only for simple objects (with primitive properties) but not for nested objects or objects containing arrays. Please see these discussions in the OpenAPI Specification repository:
So this scenario needs to be added to the OpenAPI Specification first. Once the Specification is updated, tool developers can implement the new behavior.
This is simply to keep our issue tracker clean - feel free to comment if there are any further thoughts or concerns, and we'll be happy to reopen this issue.
Q&A (please complete the following information)
How can we help?
I am trying to create a multidimensional array as a parameter option, i would need to create something like this:
my.api.com/end-point?filter['option'][0]['value']='something'
I can reproduce this with
type:object
but i would get the following -my.api.com/end-point?filters['option'][0]={'value' : 'something'}
Im sure i am doing something wrong but i can not seem to find an example for this kind of pattern.
Any help would be appreciated.
The text was updated successfully, but these errors were encountered: