skip to Main Content

Json – Set Default values for nested objects using JOLT

I have a nested JSON object like this: { "field1": "value1", "field2": "value2", "field3": { "data": [ { "subField1": "subValue1", "subField2": "subValue2", "subField3": { "nestedField1": "nestedValue1", "nestedField2": "nestedValue2" }, "subField4": { "nestedField1": { "subNestedField1": "subNestedValue1", "subNestedField2": "subNestedValue2" }, "nestedField2": {…

VIEW QUESTION

Manipulate objects within a json

I have the following JSON including a properties array and I would like to transform it with jolt JSON INPUT { "kind": "product", "product": { "id": "product.P-L-0368", "productNumber": "P-L-0368", "name": "myProduct" }, "properties": [ { "values": [ { "value": "222"…

VIEW QUESTION
Back To Top
Search