Hi:
I have the following format in the flow (below) and needed to convert to another format (below - Output). Is this possible?
Format in Flow:
[
{
"FileName": "abc.pdf",
"rpa": "true"
},
{
"FileName": "abc.pdf",
"robotic process automation": "true"
},
{
"FileName": "abc.pdf",
"process automation": "true"
},
{
"FileName": "pqr.pdf",
"rpa": "true"
},
{
"FileName": "pqr.pdf",
"robotic process automation": "false"
},
{
"FileName": "pqr.pdf",
"process automation": "true"
}
]
But need to convert to this format (output):
[
{
"FileName": "abc.pdf",
"rpa": "true",
"robotic process automation": "true",
"process automation": "true"
},
{
"FileName": "pqr.pdf",
"rpa": "true",
"robotic process automation": "false",
"process automation": "true"
}
]