Sync with 5.4.0
[deliverable/titan.core.git] / regression_test / XML / XmlWorkflow / xsd / ranges_integer.xsd
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2000-2015 Ericsson Telecom AB
4
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Eclipse Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <schema xmlns="http://www.w3.org/2001/XMLSchema"
11 xmlns:xs="http://www.w3.org/2001/XMLSchema"
12 xmlns:ns="www.example.org"
13 targetNamespace="www.example.org/ranges/integer">
14
15 <annotation><documentation xml:lang="EN">minInclusive, maxInclusive, minExclusive, maxExclusive</documentation></annotation>
16
17 <simpleType name="e9a">
18 <restriction base="integer">
19 <minInclusive value="-5"/>
20 </restriction>
21 </simpleType>
22
23 <simpleType name="e10a">
24 <restriction base="positiveInteger">
25 <maxInclusive value="100"/>
26 </restriction>
27 </simpleType>
28
29 <simpleType name="e11a">
30 <restriction base="integer">
31 <minExclusive value="-5"/>
32 </restriction>
33 </simpleType>
34
35
36 <simpleType name="e12a">
37 <restriction base="positiveInteger">
38 <maxExclusive value="100"/>
39 </restriction>
40 </simpleType>
41
42
43 <annotation><documentation xml:lang="EN">mixed</documentation></annotation>
44
45 <simpleType name="e19a">
46 <restriction base="integer">
47 <minInclusive value="-5"/>
48 <maxInclusive value="-1"/>
49 </restriction>
50 </simpleType>
51
52 <simpleType name="e110a">
53 <restriction base="positiveInteger">
54 <maxInclusive value="100"/>
55 </restriction>
56 </simpleType>
57
58 <simpleType name="e111a">
59 <restriction base="integer">
60 <minExclusive value="-5"/>
61 <maxExclusive value="100"/>
62 </restriction>
63 </simpleType>
64
65
66 </schema>
This page took 0.032838 seconds and 5 git commands to generate.