Sync with 5.4.0
[deliverable/titan.core.git] / regression_test / XML / XMLqualif / po_qual_both.xsd
1 <!--
2 Copyright (c) 2000-2015 Ericsson Telecom AB
3
4 All rights reserved. This program and the accompanying materials
5 are made available under the terms of the Eclipse Public License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <schema xmlns="http://www.w3.org/2001/XMLSchema"
10 xmlns:qq="http://www.example.com/POQAQ"
11 targetNamespace="http://www.example.com/POQAQ"
12 elementFormDefault="qualified"
13 attributeFormDefault="qualified">
14
15 <element name="purchaseOrder2" type="qq:PurchaseOrderType2"/>
16 <element name="comment2" type="string"/>
17
18 <complexType name="PurchaseOrderType2">
19 <sequence>
20 <element name="shipTo" type="qq:USAddress2"/>
21 <element name="billTo" type="qq:USAddress2"/>
22 <element ref="qq:comment2" minOccurs="0"/>
23 <!-- etc. -->
24 </sequence>
25 <attribute name="orderDate" type="date"/>
26 </complexType>
27
28 <complexType name="USAddress2">
29 <sequence>
30 <element name="name" type="string"/>
31 <element name="street" type="string"/>
32 <!-- etc. -->
33 </sequence>
34 <attribute name="country" type="NMTOKEN" fixed="US" />
35 </complexType>
36
37 <!-- etc. -->
38
39 </schema>
This page took 0.046848 seconds and 5 git commands to generate.