1 <?xml version='1.0'?>
   2 <xsd:schema xmlns:xsd='http://www.w3.org/2001/XMLSchema' >
   3 <!-- Schema to test unsignedLong datatype -->
   4   <xsd:element name='test' type='fooType' />
   5   <xsd:complexType name='fooType' > 
   6     <xsd:sequence>
   7       <xsd:element name='foo' >
   8         <xsd:simpleType>
   9           <xsd:restriction base="xsd:unsignedLong">
  10             <xsd:fractionDigits value="1"/>
  11           </xsd:restriction>
  12         </xsd:simpleType>
  13       </xsd:element>
  14     </xsd:sequence>
  15   </xsd:complexType>
  16 </xsd:schema>