After API call data was flattened at data action, we have multiple arrays of data as shown below, I want to organize each element according to the order of the arrays.
By the way, the number of data in this array will always change because this array data is dynamic.
{
"result.resultBody.USTimeTable": [
[
"0000",
"1111",
"2222",
"3333",
"4444"
],
[
"2222",
"3333",
"4444",
"5555",
],
[
"0000",
"0123",
"1445",
"1567",
"1456",
"1345"
]
],
"result.resultBody.USDate": [
"20220220",
"20220221",
"20220222"
],
What I am expecting is to be organized at Architect like below
20220220 "0000", "1111", "2222", "3333", "4444"
20220221 "2222", "3333", "4444", "5555",
20220222 "0000", "0123", "1445", "1567", "1456", "1345"
Could you please help to check?