I am working with a JSON response that I need to query but the objects change (data types do not). In the example below, "2022-11-21:2" and "330.0" change all the time.
{
"2022-11-21:2": {
"330.0": [{
"Field1": "TEST",
"Field2": "TEST"
}],
"333.0": [{
"Field1": "TEST",
"Field2": "TEST"
}]
}
}
So, I need to build an expression along the lines of: body('Test')?['2022-11-21:2']?['330.0']
My question is...how do I include dynamic values in the expression? Or, is this not the best approach to parsing/querying the JSON?