How do I transform an array using Jolt?
问题 I am getting a null value for my transformed object when trying to convert something like this: { "employees": [ { "f_name" : "tom", "l_name" : "smith" }, { "f_name" : "don", "l_name" : "jones" } ] } to this: { "employees": [ { "firstName" : "tom", "lastName" : "smith" }, { "firstName" : "don", "lastName" : "jones" } ] } This is the spec I am using: [ { "operation" : "shift", "spec" : { "employees" : { "f_name" : "firstName" "l_name" : "lastName" } } ] This is the code I am using: List<Object