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="product.xsd"/>
7
    <xsd:element name="company">
8
        <xsd:complexType>
9
            <xsd:sequence>
10
                <xsd:element name="product" type="productType"
11
                             maxOccurs="unbounded"/>
12
            </xsd:sequence>
13
        </xsd:complexType>
14
    </xsd:element>
15
</xsd:schema>
16

    
(3-3/5)