bazaarvoice/jolt

multi json array object to array object

MyeongHyunKim opened this issue · 0 comments

{
"request": {
"item1":[ "apple","banana"],
"item2":[ "car","bycicle"]
}
}
==> possible???
{
"request": {
"item" : [
{ "item1": "apple"
"item2": "car"
},
{ "item1": "banana"
"item2": "bycicle"
},
}
}
}