I've got a Power Automate Flow that is parsing a PDF using Adobe Services. I had it working fine but I realized I'm missing some data that is in a nested JSON array and I can't figure out how to select that. My a snippet of what the JSON looks like:
{
"Path": "//Document/Sect/Table[3]/TR[2]/TD/P",
"HasClip": false,
"TextSize": 12.0,
"Lang": "en",
"Page": 0,
"Text": "31-MAY-2021 "
},
{
"Path": "//Document/Sect/Table[3]/TR[2]/TD[2]/P",
"Lang": "en",
"Page": 0,
"Kids": [
{
"Path": "//Document/Sect/Table[3]/TR[2]/TD[2]/P/Sub",
"HasClip": false,
"TextSize": 12.0,
"Page": 0,
"Text": "Pharmacy Claims processed "
},
{
"Path": "//Document/Sect/Table[3]/TR[2]/TD[2]/P/Sub[2]",
"HasClip": false,
"TextSize": 12.0,
"Page": 0,
"Text": "for period 16-MAY-2021 thru 31-MAY-2021 "
}
]
}
The stuff in green is what I need. Here's my flow:

The first Path and Text are working, they are item()?['Path'] and item()?['Text'].
For KidsPath and KidsText I tried item()?['Path']?['Kids']?['Path'] and item()?['Path']?['Kids']?['Text'] but that's not working.
Any suggestions? Thanks!