As I implement this tool in more scenarios, I come across more things that I need it to do. Recently, while consuming a new resource I came across a JSON array that looked like this
{
“array”: [
{
“name”: Name1
“value”: Value1
}
{
“name”: Name2
“value”: Value2
}
]
}
I needed the ability to get the value associated with ‘Name1’, regardless of where it was in the array. This update to the plugin allows this capability 🙂