[*] and IN in the WHERE clause

I have a problem with some data that i have to skip in N1QL paths. For example

“paths”: {
“/emv3dsecure/v1/devicedatacollection”: {
“post”: {
“summary”: “EMV 3D SEcure Device Data Collection API”,
“parameters”: [
{
“name”: “ProfileId”,
“in”: “query”,
“description”: “ProfileId for Cors Authentication”,
“required”: true,
“style”: “form”,
“explode”: true,
“schema”: {
“type”: “string”
}
}
]
},
“post”: {
“summary”: “EMV 3D Secure StepUp API”,
“parameters”: [
{
“name”: “ProfileId”,
“in”: “query”,
“description”: “ProfileId for Cors Authentication”,
“required”: true,
“style”: “form”,
“explode”: true,
“schema”: {
“type”: “string”
}
}
]

I have to skip “/emv3dsecure/v1/devicedatacollection” and search for nested fields in parameters array. The level “/emv3dsecure/v1/devicedatacollection” contains information that i am not able to know.
I tried
OBJECT_VALUES(paths)[0].post path in WHERE Clause but it returns only the data below the first post field. Why OBJECT_VALUES(paths)[*].post is not working? Is there any other way to solve that problem?