Open celsomarques opened 3 years ago
Hi,
I need to transform json string to Json object and Json array. Is there anyway to achieve that using Jolt?
Input: {"fieldA":"Value", "fieldB": 3460.00, "fieldC": "[{\"fieldD\": 1}]", "fieldE": "{\"fieldF\": \"value\"}"}
{"fieldA":"Value", "fieldB": 3460.00, "fieldC": "[{\"fieldD\": 1}]", "fieldE": "{\"fieldF\": \"value\"}"}
Expected output: {"fieldA":"Value", "fieldB": 3460.00, "fieldC": [{"fieldD": 1}], "fieldE": {"fieldF": "value"}}
{"fieldA":"Value", "fieldB": 3460.00, "fieldC": [{"fieldD": 1}], "fieldE": {"fieldF": "value"}}
Thanks
Hi,
I need to transform json string to Json object and Json array. Is there anyway to achieve that using Jolt?
Input:
{"fieldA":"Value", "fieldB": 3460.00, "fieldC": "[{\"fieldD\": 1}]", "fieldE": "{\"fieldF\": \"value\"}"}
Expected output:
{"fieldA":"Value", "fieldB": 3460.00, "fieldC": [{"fieldD": 1}], "fieldE": {"fieldF": "value"}}
Thanks