This is problematic because path uses dot operator to traverse through child.So, what should be the template to extract "NAME" from the data below.
{
"DATA": {
"ALLNAMES": [
{
"LANGUAGENAME.LIST": {
"NAME.LIST": {
"NAME": "QWE"
}
}
},
{
"LANGUAGENAME.LIST": {
"NAME.LIST": {
"NAME": "ZXC"
}
}
}
]
}
}
This is problematic because path uses dot operator to traverse through child.So, what should be the template to extract "NAME" from the data below.