Could you please help me writing JOLT spec for the following?
Input:
{
"title": [
"vsnu",
"anothervsnu"
],
"anothertitle": [
"vsnu",
"anothervsnu"
]
}
Expected output:
{
Response : [
{
"head" : "title",
"name" : "vsnu"
},
{
"head" : "title",
"name" : "anothervsnu"
},
{
"head" : "anothertitle",
"name" : "vsnu"
},
{
"head" : "anothertitle",
"name" : "anothervsnu"
}
]
}
I am stuck in this for the last 3 days. Please help me on this. And I hope the above question explains the expectations, I am writing this only because StackOverflow shows the validation error message.
Thanks in advance.