I have a json input object, and want to do a json transformation using jolt transformer. can help to acheive this
Input is
{
"keys": [
"key1",
"key2",
"key3"
],
"values": [
[
"value 1.1",
"value 2.1",
"value 3.1"
],
[
"value 1.2",
"value 2.2",
"value 3.2"
]
]
}
and the expected output is
{
"Result": [
{
"key1": "value 1.1",
"key2": "value 2.1",
"key3": "value 3.1"
},
{
"key1": "value 1.2",
"key2": "value 2.2",
"key3": "value 3.2"
}
]
}