Last sync 2016.04.01
[deliverable/titan.core.git] / regression_test / XML / XmlWorkflow / XmlTest_xsds / XmlTest_union2.xsd
1 <!--
2 Copyright (c) 2000-2016 Ericsson Telecom AB
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
7
8 Contributors:
9 Balasko, Jeno
10 Raduly, Csaba
11 -->
12 <schema xmlns="http://www.w3.org/2001/XMLSchema"
13 xmlns:ns="www.XmlTest.org/union2"
14 targetNamespace="www.XmlTest.org/union2" >
15 <annotation>
16 <documentation xml:lang="en">
17 This documentum tests based on
18 XML Schema Part 0: Primer Second Edition,
19 2.3.2 Union Types
20 Appendix B
21 XML Schema Part 2: Datatypes Second Edition
22 </documentation>
23 </annotation>
24
25 <simpleType name="MyUnion1">
26 <union memberTypes="float boolean">
27 </union>
28 </simpleType>
29
30 <simpleType name="MyUnion2">
31 <union memberTypes="string boolean">
32 </union>
33 </simpleType>
34
35 <simpleType name="MyUnion3">
36 <union memberTypes="string boolean decimal time float double">
37 </union>
38 </simpleType>
39
40 <simpleType name="Result">
41 <restriction base="boolean"/>
42 </simpleType>
43
44 </schema>
This page took 0.050461 seconds and 5 git commands to generate.