
25 Mar
2014
25 Mar
'14
4:12 p.m.
In recent script Timestamp is stored as Number and is completely useless, because number "1395673233762" really does not say anything.
Epoch time is a well established standard for representing times as a number of milliseconds since the start of 1970 - in this case 1395673233762 is 2014-03-24 15:00:33Z.
Standard Java java.util.Date instances can be created from an epoch time number via constructor.
Apologies, I hadn't read the bug well enough - from the script you're clearly aware of what epoch time is.