home *** CD-ROM | disk | FTP | other *** search
/ XML Bible (2nd Edition) / XML_Bible_Second_Edition_Hungry_Minds_2001.iso / mac / source / 02 / month.xsd < prev    next >
Extensible Markup Language  |  2001-01-06  |  351b  |  14 lines

  1. <?xml version="1.0"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2000/10/XMLSchema">
  3.  
  4.   <xsd:simpleType name="monthInt">
  5.     <xsd:restriction base="xsd:integer">
  6.       <xsd:minInclusive value="1"/>
  7.       <xsd:maxInclusive value="12"/>
  8.     </xsd:restriction>
  9.   </xsd:simpleType>
  10.  
  11.   <xsd:element name="month" type="monthInt"/>
  12.  
  13. </xsd:schema>
  14.