Mega Code Archive

 
Categories / XML Tutorial / XML Schema
 

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.rntsoft.com" xmlns="http://www.rntsoft.com"   elementFormDefault="qualified">   <xs:element name="bedtime" type="xs:time" /> </xs:schema> File: Data.xml <?xml version="1.0"?> <bedtime xmlns="http://www.rntsoft.com">20:15-05-05:00</bedtime> The contents of this bedtime element represents 8:15pm EST.