json-utils-plugin
json-utils-plugin copied to clipboard
JSON Path fails with correct selector
$.ads[0].ad.name fails but $.ads[0].ad.id works with the following JSON:
{
"ads": [
{
"ad": {
"id": "bla",
"name": "Barbie Dream Camper"
}
}
]
}

