My API's response is something like this: JSON
"Catalog":
[
{
"longDescription": "some long description",
"Price": [
{
"priceValue": "60.0",
}
],
"name": "some name",
and so on.
I want to get the price value and I am using JsonPathEvaualtor.setRoot("catalog")? do I use ("price") or is there something else used to traverse inside catalog array then inside that price array.