Last sync 2016.04.01
[deliverable/titan.core.git] / regression_test / XML / XmlWorkflow / xsd / ranges_integer.xsd
CommitLineData
970ed795
EL
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
d44e3c4f 3 Copyright (c) 2000-2016 Ericsson Telecom AB
970ed795
EL
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
d44e3c4f 8
9 Contributors:
10 Balasko, Jeno
11 Raduly, Csaba
12-->
970ed795
EL
13<schema xmlns="http://www.w3.org/2001/XMLSchema"
14xmlns:xs="http://www.w3.org/2001/XMLSchema"
15xmlns:ns="www.example.org"
16targetNamespace="www.example.org/ranges/integer">
17
18<annotation><documentation xml:lang="EN">minInclusive, maxInclusive, minExclusive, maxExclusive</documentation></annotation>
19
20<simpleType name="e9a">
21 <restriction base="integer">
22 <minInclusive value="-5"/>
23 </restriction>
24</simpleType>
25
26<simpleType name="e10a">
27 <restriction base="positiveInteger">
28 <maxInclusive value="100"/>
29 </restriction>
30</simpleType>
31
32<simpleType name="e11a">
33 <restriction base="integer">
34 <minExclusive value="-5"/>
35 </restriction>
36</simpleType>
37
38
39<simpleType name="e12a">
40 <restriction base="positiveInteger">
41 <maxExclusive value="100"/>
42 </restriction>
43</simpleType>
44
45
46<annotation><documentation xml:lang="EN">mixed</documentation></annotation>
47
48<simpleType name="e19a">
49 <restriction base="integer">
50 <minInclusive value="-5"/>
51 <maxInclusive value="-1"/>
52 </restriction>
53</simpleType>
54
55<simpleType name="e110a">
56 <restriction base="positiveInteger">
57 <maxInclusive value="100"/>
58 </restriction>
59</simpleType>
60
61<simpleType name="e111a">
62 <restriction base="integer">
63 <minExclusive value="-5"/>
64 <maxExclusive value="100"/>
65 </restriction>
66</simpleType>
67
d44e3c4f 68</schema>
This page took 0.026454 seconds and 5 git commands to generate.