Dear team,
I would like to consult your advice for my following usecase.
Example: there is a jsonp file
{
"nodeA" : {
"propA1": {
"channels": ["A1_01", "A1_02", "A1_03"]
},
"propA2": {
"channels": ["A2_01", "A2_02"]
},
"propA3": {
"channels": ["A3_01"]
}
},
"nodeB" : {
"measure": [${nodeA.propA1.channels}, ${nodeA.propA2.channels}, ${nodeA.propA3.channels}]
}
}
I would like to know that whether it is possible to have ${nodeB.measure} as "a list" instead of "a list of list".