I understand how to represent in 2.0 and 3.0 these query parameters with OpenAPI: ``` ?list=x&list=y ``` But I can't understand if it is possible or not (so I imagine, not?) to represent this: ``` ?list[0]=x&list[1]=y ``` or this: ``` ?obj[x][0]=a&obj[x][1]=b ``` We use indexes so we can mix arrays and maps with the same notation, i.e. we would also have: ``` ?map[x]=1&map[y]=2 ``` Is this even representable today? Any hack around it if not?