bazaarvoice / jolt

JSON to JSON transformation library written in Java.
Apache License 2.0
1.55k stars 330 forks source link

multi json array object to array object #1219

Closed MyeongHyunKim closed 1 year ago

MyeongHyunKim commented 1 year ago

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