Dears - I'm using ADF to parse output of a REST API that is coming in JSON structure. The problem is that JSON contains array of strings, each string value contains JSON object. I want to extract the values of the innermost JSON .. I've tried several attempts with no luck yet..
Sample JSON Structure
{
"tables": [
{
"name": "PrimaryResult",
,
"rows": [
["{\"Subscription Name\":\"master\",\"Operation Name\":\"5f2a763e4f5cabb8d38dd66a\",... \"}","other nested JSON".....
I'm not able to parse those JSONs that are coming as strings surrounded by double quotes.
any ideas ??



