ISO 8601 Format of Timestamps

The format for an ISO timestamp is HH:MM:SS.sss (where sss is the 3-digit millisecond count).

In earlier releases, the format produced by the JadeJson and Jade RestService classes was incorrectly specified as HH:MM:SS:sss ; that is, with a colon (:) character used as the separator between seconds and milliseconds. Note the difference is that the period (.) is the correct character separating seconds and milliseconds, not the colon (:). See https://www.iso.org/iso-8601-date-and-time-format.html and https://en.wikipedia.org/wiki/ISO_8601.

If your Jade system or any applications with which it interacts consumes data generated from the JadeJson class or by Jade REST application responses that rely on the colon (:) character being used as a separator between seconds and milliseconds for ISO 8601 timestamps, make changes before you upgrade your Jade system to address this so that the period character (.) separator is used.

This release corrects an error in the ISO 8601 format for timestamps, as follows.

The output has been corrected to the ISO timestamp format; that is, HH:MM:SS.sss.