Json – Transform arrays of objects to array of objects with jolt
I am having trouble dealing with arrays in JOLT. Input: [ { "id": "1", "home_phone": [ "55555555", "66666666" ] }, { "id": "2", "home_phone": [ "77777777", "88888888" ] } ] Desired output: [ { "id": "1", "home": "55555555" }, {…