2.1.7 DateTime

The DateTime data type supports a value range from 1753-01-01 00:00:00.000 through 9999-12-31 23:59:59.997. The values of this data type are represented in the Unicode YYYY-MM-DD hh:mm:ss[.nnn] string format, as follows.

  
 Year = ("175"(%x33-39)) / ("17"(%x36-39)DIGIT) / ("1"("8"/"9")2DIGIT) 
 Year =/ ((%x32-39)3DIGIT)
 Month = ("0"(%x31-39)) / ("1"("0"/"1"/"2"))
 Day = ("0"(%x31-39)) / (("1"/"2")DIGIT) / ("3"("0"/"1"))
 Hour = (("0"/"1")DIGIT) / ("2"(%x30-33))
 MinSec = ":"(%x30-35)DIGIT
 DateTime = Year "-" Month "-" Day SP Hour 2MinSec ["." 2DIGIT ("0"/"3"/"7")]