Can I use 2 data files in a collection runner

Here is what I am trying to do.
Input is a nested loop, how can i use data sets ?

Example of my json input

{
“name”: {{name}},
“testStationId”: {{testStationId}},
“testType”: {{testtype}
“sequenceList”: [
{
“sequenceLabel”: “A”,
“sequenceStartTime”: “2018-May-11 18:01:21.000396”,
“sequenceDuration”: 176000,

}
 
  ]

}

In my csv file, how do i set multiple values for sequence list ?

Thank you,
-bhuvana

Hey @bswamy, could you provide some more details on the exact use case? It will help craft a better answer. Thanks! :smile:

Hi Kunagpal,

My json input is similar to the following

{
“id”: 1111,
“spacecraftId”: “Keyhole #1”,
“performPretest”: true,

“sequenceList”: [
{
“sequenceLabel”: “A”,
“sequenceduration”: 30

},

{
“sequenceLabel”: “A”,
“sequenceduration”: 40

}
]

}

I would like to pass the values from a csv file, how can i do this ? I am not able to do for sequence list, so I was hoping if I can use 2 data files, i will be able to.

Thanks,
-bhuvana