Hi - I looked at #624 and have a similar, but slightly different requirement.
Here is muy input JSON:
{ "Level-1": { "Level-2": [ { "someA": "A1", "someB": "B1", "someC": "C1" }, { "someA": "A2", "someB": "B2", "someC": "C2" } ] } }
I want to transform the values for some of the leaf level attributes. Here is the expected output:
{ "Level-1": { "Level-2": [ { "someA": "A1", "someB": "X1", "someC": "Y1" }, { "someA": "A2", "someB": "X2", "someC": "Y2" } ] } }
Can you please help me with the corresponding Jolt spec?
Hi - I looked at #624 and have a similar, but slightly different requirement. Here is muy input JSON:
{ "Level-1": { "Level-2": [ { "someA": "A1", "someB": "B1", "someC": "C1" }, { "someA": "A2", "someB": "B2", "someC": "C2" } ] } }
I want to transform the values for some of the leaf level attributes. Here is the expected output:{ "Level-1": { "Level-2": [ { "someA": "A1", "someB": "X1", "someC": "Y1" }, { "someA": "A2", "someB": "X2", "someC": "Y2" } ] } }
Can you please help me with the corresponding Jolt spec?Thanks