The PEF timestamp element consists of a PEF date element and a PEF time element. The date element is mandatory.
This datatype was developed to support the Epicentre timestamp data type. It is intended as a direct mapping from Epicentre to an XML file. It is expected that applications outside of PEF mappings will use the XML Schema timeInstant datatype, which is an encoding of a timestamp following ISO 8601.
<xsd:element name="timestamp" type="timestamp"/>
<element name="expiry_date">
<complexType>
<sequence>
<element ref="pef:timestamp"/>
</sequence>
</complexType>
</element>
The example will show namespace of 'pef'
<expiry_date>
<pef:timestamp>
<pef:date>
<pef:year>2002</pef:year>
<pef:month>06</pef:month>
<pef:day>30</pef:day>
</pef:date>
<pef:time>
<pef:hour>12</pef:hour>
<pef:uctOffset>-5</pef:uctOffset>
</pef:time>
</pef:timestamp>
</expiry>