Project

General

Profile

1
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
2
            targetNamespace="http://example.org/ord"
3
            xmlns="http://example.org/ord"
4
            xmlns:prod="http://example.org/prod">
5

    
6
  <xs:import namespace="http://example.org/prod"/>
7

    
8
  <xs:element name="order" type="OrderType"/>
9
  <xs:complexType name="OrderType">
10
    <xs:sequence>
11
      <xs:element name="items" type="ItemsType"/>
12
    </xs:sequence>
13
  </xs:complexType>
14

    
15
  <xs:complexType name="ItemsType">
16
    <xs:sequence>
17
      <xs:element ref="prod:product" maxOccurs="unbounded"/>
18
    </xs:sequence>
19
  </xs:complexType>
20

    
21

    
22
</xs:schema>
(1-1/6)