14-08-22 04:05 PM
14-08-22 07:51 PM
{
"0": {
"field1": "0_value1",
"field2": "0_value2",
"field3": "0_value3"
},
"1": {
"field1": "1_value1",
"field2": "1_value2",
"field3": "1_value3"
}
}
14-08-22 09:05 PM
{
"0": [
{
"address": "Address1",
"postcode": "PostCode1",
"additional": {
"Field1": "Data1",
"Field2": "Data2"
}
}
],
"1": [
{
"address": "Address2",
"postcode": "PostCode2",
"additional": {
"Field1": "Data1",
"Field2": "Data2"
}
}
]
}
Final Output collection, aware it will require manipulation and iteration to produce this with the dynamic JSON length;
Address | Postcode | Field1 | Field2 |
Address1 | PostCode1 | Data1 | Data2 |
Address2 | PostCode2 | Data1 | Data2 |
15-08-22 11:47 AM
15-08-22 12:04 PM
12-10-22 07:31 PM