Project

General

Profile

1
<?xml version="1.0"?>
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="./item.xsd"/>
7
    <xsd:complexType name="productType">
8
        <xsd:sequence>
9
           <xsd:element name="item" type="itemType" maxOccurs="unbounded"/>
10
        </xsd:sequence>
11
    </xsd:complexType>
12
</xsd:schema>
13

    
(5-5/6)