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:include schemaLocation="./worker.xsd"/>
8
    <xsd:element name="company">
9
        <xsd:complexType>
10
            <xsd:sequence>
11
                <xsd:element name="worker" type="workerType"
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>
19

    
(3-3/6)