1 <?xml version="1.1"?>
   2 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   3             targetNamespace="http://www.company.org"
   4             xmlns="http://www.company.org"
   5             elementFormDefault="qualified">
   6     <xsd:include schemaLocation="XSDInclude_person.xsd"/>
   7     <xsd:include schemaLocation="XSDInclude_product.xsd"/>
   8     <xsd:element name="Company">
   9         <xsd:complexType>
  10             <xsd:sequence>
  11                 <xsd:element name="Person" type="PersonType"
  12                              maxOccurs="unbounded"/>
  13                 <xsd:element name="Product" type="ProductType"
  14                              maxOccurs="unbounded"/>
  15             </xsd:sequence>
  16         </xsd:complexType>
  17     </xsd:element>
  18 </xsd:schema>