1 |
5939
|
tao
|
<?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 |
5948
|
tao
|
<xsd:include schemaLocation="./worker.xsd"/>
|
8 |
5939
|
tao
|
<xsd:element name="company">
|
9 |
|
|
<xsd:complexType>
|
10 |
|
|
<xsd:sequence>
|
11 |
5948
|
tao
|
<xsd:element name="worker" type="workerType"
|
12 |
|
|
maxOccurs="unbounded"/>
|
13 |
5939
|
tao
|
<xsd:element name="product" type="productType"
|
14 |
|
|
maxOccurs="unbounded"/>
|
15 |
|
|
</xsd:sequence>
|
16 |
|
|
</xsd:complexType>
|
17 |
|
|
</xsd:element>
|
18 |
|
|
</xsd:schema>
|