I have two arrays and need to convert these arrays into a single object array using jolt.
Input
"Name": ["Test Test", "Test2 Test"]
"email": ["[email protected]", "[email protected]"]
output
[{"Name":"Test Test","email":"[email protected]"},{"Name":"Test2 Test","email":"[email protected]"}]