I have json like below,
{
"name1" : "Aks",
"address1": {
"area" : "area1",
"location1": "loc1"
},
"phonenum": "1445452"
}
I need to retrieve all keys and from address1 only location1 parameter.
I tried, $.*, $.['address1'].location1 in JsonPath Expression, but didn't succeed, any hint on this ?