Im getting a Json like this:
[
[
{
"TimeGenerated": "2021-05-18T20:36:11.916Z"
},
{
"DestinationIP": "9.9.9.9"
},
{
"DestinationUserName": "abc"
},
{
"country_name": "Panama"
},
{
"country_iso_code": "PA"
},
{
"AccountCustomEntity": "xyz"
}
],
[
{
"TimeGenerated": "2021-05-18T20:36:11.916Z"
},
{
"DestinationIP": "9.9.9.9"
},
{
"DestinationUserName": "abc"
},
{
"country_name": "Panama"
},
{
"country_iso_code": "PA"
},
{
"AccountCustomEntity": "xyz"
}
]
]
But not ever im gonna get that style of json,
somethimes im gonna get a json like this:
[
[
{
"ABC": "2021-05-18T20:36:11.916Z"
},
{
"BCD": "9.9.9.9"
},
{
"ZXC": "abc"
}
],
[
{
"ABC": "2021-05-18T20:36:11.916Z"
},
{
"BCD": "9.9.9.9"
},
{
"ZXC": "abc"
}
]
]
With different Key and Value
So, i need to pass this Json to PowerApps to make a collection but to do this, first i need to pass with a RESPONSE

But the RESPONSE needs a sample schema, the problem is, the schema NEVER gonna be the same
and i can not pass the sample stored in a variable to the option "generate from sample"
like:

Exist a way to parse a json to pass a powerapps that never gonna be the same?