Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created 10-12-2022 03:18 AM
Perhaps JoltTransformRecord could help you.
The jolt transformation "shift" let's you rename fields - in a csv file's case, headers.
If you know all your replaces ahead of time, you could define a transformation like:
{
operation: shift
spec: {
"kgg":"g",
"c34":"c",
"*":"&"
}
}
Note the last shift, "*":"&" , which would transfer over the rest of the headers you didn't specifically rename.