XML Tutorial/XML Schema/time
The time datatype represents a specific time that recurs every day
<!-- schema -->
<xsd:element name="meeting" type="xsd:time"/>
<!-- instance document -->
<meeting>10:30:00Z</meeting>
time is in "military" or universal format.
File: Schema.xsd
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.wbex.ru" xmlns="http://www.wbex.ru"
elementFormDefault="qualified">
<xs:element name="bedtime" type="xs:time" />
</xs:schema>
File: Data.xml
<?xml version="1.0"?>
<bedtime xmlns="http://www.wbex.ru">20:15-05-05:00</bedtime>
The contents of this bedtime element represents 8:15pm EST.