Last sync 2016.04.01
[deliverable/titan.core.git] / regression_test / XML / XMLqualif / po_qual.xsd
CommitLineData
970ed795 1<!--
d44e3c4f 2 Copyright (c) 2000-2016 Ericsson Telecom AB
970ed795
EL
3 All rights reserved. This program and the accompanying materials
4 are made available under the terms of the Eclipse Public License v1.0
5 which accompanies this distribution, and is available at
6 http://www.eclipse.org/legal/epl-v10.html
d44e3c4f 7
8 Contributors:
9 Balasko, Jeno
10 Raduly, Csaba
11-->
970ed795
EL
12<schema xmlns="http://www.w3.org/2001/XMLSchema"
13 xmlns:q="http://www.example.com/POQ"
14 targetNamespace="http://www.example.com/POQ"
15 elementFormDefault="qualified"
16 attributeFormDefault="unqualified">
17
18 <element name="purchaseOrder3" type="q:PurchaseOrderType3"/>
19 <element name="comment3" type="string"/>
20
21 <complexType name="PurchaseOrderType3">
22 <sequence>
23 <element name="shipTo" type="q:USAddress3"/>
24 <element name="billTo" type="q:USAddress3"/>
25 <element ref="q:comment3" minOccurs="0"/>
26 <!-- etc. -->
27 </sequence>
28 <attribute name="orderDate" type="date"/>
29 </complexType>
30
31 <complexType name="USAddress3">
32 <sequence>
33 <element name="name" type="string"/>
34 <element name="street" type="string"/>
35 <!-- etc. -->
36 </sequence>
37 <attribute name="country" type="NMTOKEN" fixed="US" />
38 </complexType>
39
40 <!-- etc. -->
41
42</schema>
This page took 0.038361 seconds and 5 git commands to generate.