bswamy
(bswamy)
May 10, 2018, 4:49pm
1
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
kunagpal
(Kunal Nagpal)
July 5, 2018, 7:52pm
2
Hey @bswamy , could you provide some more details on the exact use case? It will help craft a better answer. Thanks!
bswamy
(bswamy)
July 10, 2018, 7:56pm
3
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