1 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   2             xmlns:tns="http://testns_package"
   3             xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.0"
   4             targetNamespace="http://testns_package">
   5     <!-- Simple type list -->
   6     <xsd:simpleType name="LongList">
   7         <xsd:list>
   8             <xsd:simpleType>
   9                 <xsd:restriction base="xsd:unsignedInt"/>
  10             </xsd:simpleType>
  11         </xsd:list>
  12     </xsd:simpleType>
  13     <!--- Complex test type -->
  14     <xsd:element name="typesLongList">
  15         <xsd:complexType>
  16             <xsd:sequence>
  17                 <xsd:element name="in" type="tns:LongList"/>
  18             </xsd:sequence>
  19         </xsd:complexType>
  20     </xsd:element>
  21 </xsd:schema>