-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxschema.xsd
More file actions
123 lines (123 loc) · 3.76 KB
/
xschema.xsd
File metadata and controls
123 lines (123 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="iso-8859-1" ?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" version="1.0" targetNamespace="http://www.w3.org/2001/XMLSchema">
<element name="schema" type="schema" />
<complexType name="schema">
<all>
<element name="attributeGroup" type="attributeGroup" />
<element name="complexType" type="complexType" />
<element name="element" type="element" />
<element name="group" type="group" />
<element name="import" type="include" />
<element name="include" type="include" />
<element name="simpleType" type="simpleType" />
</all>
<attribute name="targetNamespace" type="string" />
<attribute name="version" type="string" />
</complexType>
<complexType name="include">
<attribute name="schemaLocation" type="string" />
</complexType>
<complexType name="element">
<choice minOccurs="0" maxOccurs="1">
<element name="simpleType" type="complexType" minOccurs="0" maxOccurs="1" />
<element name="complexType" type="complexType" minOccurs="0" maxOccurs="1" />
</choice>
<attributeGroup ref="occurence" />
<attribute name="name" type="string" />
<attribute name="type" type="string" />
</complexType>
<complexType name="simpleType">
<sequence>
<element name="restriction" type="restriction" />
</sequence>
<attribute name="name" />
</complexType>
<complexType name="restriction">
<all>
<element name="enumeration">
<complexType>
<attribute name="value" type="string" />
</complexType>
</element>
</all>
<attribute name="base" type="string" />
</complexType>
<complexType name="complexType">
<sequence>
<choice minOccurs="0" maxOccurs="1">
<element name="sequence" type="sequence" />
<element name="choice" type="choice" />
<element name="all" type="all" />
<element name="group" type="group" />
</choice>
<element name="attributeGroup" type="attributeGroup" minOccurs="0" />
<element name="attribute" type="attribute" minOccurs="0" />
<element name="simpleContent" type="simpleContent" minOccurs="0" />
</sequence>
<attribute name="mixed" type="boolean" />
<attribute name="name" type="string" />
</complexType>
<complexType name="sequence">
<all>
<element name="element" type="element" />
<element name="group" type="group" />
<element name="choice" type="choice" />
<element name="sequence" type="sequence" />
</all>
<attributeGroup ref="occurence" />
</complexType>
<complexType name="choice">
<all>
<element name="element" type="element" />
<element name="group" type="group" />
<element name="choice" type="choice" />
<element name="sequence" type="sequence" />
</all>
<attributeGroup ref="occurence" />
</complexType>
<complexType name="all">
<all>
<element name="element" type="element" />
</all>
</complexType>
<complexType name="group">
<sequence>
<choice minOccurs="0" maxOccurs="1">
<element name="sequence" type="sequence" />
<element name="choice" type="choice" />
<element name="all" type="all" />
</choice>
</sequence>
<attributeGroup ref="occurence" />
<attribute name="ref" type="string" />
<attribute name="name" type="string" />
</complexType>
<complexType name="attributeGroup">
<group ref="attributeList" />
<attribute name="ref" type="string" />
<attribute name="name" type="string" />
</complexType>
<complexType name="attribute">
<attribute name="name" type="string" />
<attribute name="type" type="string" />
<attribute name="default" type="string" />
</complexType>
<complexType name="simpleContent">
<sequence>
<element name="extension" type="extension" maxOccurs="1" minOccurs="1" />
</sequence>
</complexType>
<complexType name="extension">
<group ref="attributeList" />
</complexType>
<attributeGroup name="occurence">
<attribute name="minOccurs" type="integer" default="1" />
<attribute name="maxOccurs" type="string" />
</attributeGroup>
<group name="attributeList">
<all>
<element name="attribute" type="attribute" />
<element name="attributeGroup" type="attributeGroup" />
</all>
</group>
</schema>