- Issue created by @jlemosy
I am trying to retrieve a value from a nested JSON array, but I'm getting values from the wrong field.
This is a truncated version of the JSON I am using:
{
"Response": {
"Album": {
"Uris": {
"AlbumImages": {
"AlbumImage": [
{
"Title": "Image Title",
"Uris": {
"ImageAlbum": {
"Album": {
"Title": "Album Title",
}
}
}
}
]
}
}
}
}
I am trying to retrieve the value(s) of the second "Title" field ("Album Title") but the value returned is from the first "Title" field ("Image Title").
My apath is: Response/Album/Uris/AlbumImages/AlbumImage/Uris/ImageAlbum/Album
My JSON row Key Chooser is: Title
Active
2.0
Module