I am trying to do JSON to JSON transformation using jolt, I have below sample JSON wants to convert to expected JSON. Can you please help me with this using jolt library. I also want to add a new key-value pair "created_ts" tag which will hold value for current timestamp in expected JSON.
Sample JSON
{
"name": "SAMPLE_NAME",
"timeStamp": "1477307252000",
"value": "-0.06279052",
"quality": "1090"
}
Expected Output JSON:
{
"name": "SAMPLE_NAME",
"timeStamp": "2016-11-08 14:46:13.674",
"value": "-0.06279052",
"quality": "1090",
"created_ts": "2016-11-08 14:46:13.674"
}