ADF Complex json file load

Aayush Ku Soni
1
Reputation point
Hi Team,
I am having a really complex json file as shown in below sample. Kindly provide me input to deal with this kind of file to load into SQL table by using ADF.
[
{
"TBL": "Aisha_abc",
"Row": [
{
"Id": "101",
"Subject": "Maths"
}
]
},
{
"TBL": "Ayan_efg",
"Row": [
{
"Id": "102",
"Class": "12th"
}
]
}
]
Here "TBL" is table names to be created in SQL server. And I'd , subject, class are column names.
Regards,
Aayush