Jolt Transformation: Un-nest object of form "key":{"value":"xyz"} to "key":"value"
I need to unwrap JSON objects in order to reduce the nesting of input like [ { "key1": { "value": "abc" }, "key2": { "value": "xyz" } }, { "key1": { "value": "123" }, "key2": { "value": "456" } } ] Instead it can just map straight to the value without the unnecessary object nesting.… Read More Jolt Transformation: Un-nest object of form "key":{"value":"xyz"} to "key":"value"