Hello DFDL community,
A couple days ago Steve provided several examples of textual representations of
unsignedInt values, where the text representations are constrained to be
exactly five characters:
54000
9,000
10E04
x:120
All of those represent unsignedInt values and all are exactly five characters.
Neat!
Now I've moved on to textual representations of calendar dates. I am starting
with textual representations of date/time values.
For the xs:dateTime datatype, XML Schemas only allows textual representations
with this form:
'-'? yyyy '-' mm '-' dd 'T' hh ':' mm ':' ss ('.' s+)? (zzzzzz)?
Here is an example of a textual representation of a dateTime value:
2014-12-01T09:46:40
Would you provide some examples of textual representations of date/time values,
please? Specifically, I seek examples that don't follow the form that XML
Schema requires. It would be great if you could show me alternative ways to
textually represent this date/time value: 2014-12-01T09:46:40
/Roger