reqif 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/rake.yml +18 -0
- data/.github/workflows/release.yml +25 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.rubocop.yml +8 -0
- data/Gemfile +13 -0
- data/README.adoc +73 -0
- data/Rakefile +12 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/lib/reqif/alternative_id.rb +14 -0
- data/lib/reqif/attribute_definition_boolean.rb +28 -0
- data/lib/reqif/attribute_definition_date.rb +28 -0
- data/lib/reqif/attribute_definition_enumeration.rb +30 -0
- data/lib/reqif/attribute_definition_integer.rb +28 -0
- data/lib/reqif/attribute_definition_real.rb +28 -0
- data/lib/reqif/attribute_definition_string.rb +28 -0
- data/lib/reqif/attribute_definition_xhtml.rb +28 -0
- data/lib/reqif/attribute_value_boolean.rb +16 -0
- data/lib/reqif/attribute_value_date.rb +16 -0
- data/lib/reqif/attribute_value_enumeration.rb +16 -0
- data/lib/reqif/attribute_value_integer.rb +16 -0
- data/lib/reqif/attribute_value_real.rb +16 -0
- data/lib/reqif/attribute_value_string.rb +16 -0
- data/lib/reqif/attribute_value_xhtml.rb +20 -0
- data/lib/reqif/children.rb +14 -0
- data/lib/reqif/core_content.rb +14 -0
- data/lib/reqif/datatype_definition_boolean.rb +22 -0
- data/lib/reqif/datatype_definition_date.rb +22 -0
- data/lib/reqif/datatype_definition_enumeration.rb +24 -0
- data/lib/reqif/datatype_definition_integer.rb +26 -0
- data/lib/reqif/datatype_definition_real.rb +28 -0
- data/lib/reqif/datatype_definition_string.rb +24 -0
- data/lib/reqif/datatype_definition_xhtml.rb +22 -0
- data/lib/reqif/datatypes.rb +26 -0
- data/lib/reqif/default_value.rb +27 -0
- data/lib/reqif/definition.rb +27 -0
- data/lib/reqif/editable_atts.rb +26 -0
- data/lib/reqif/embedded_value.rb +16 -0
- data/lib/reqif/enum_value.rb +24 -0
- data/lib/reqif/object.rb +14 -0
- data/lib/reqif/properties.rb +14 -0
- data/lib/reqif/relation_group.rb +30 -0
- data/lib/reqif/relation_group_type.rb +24 -0
- data/lib/reqif/req_if.rb +18 -0
- data/lib/reqif/req_if_content.rb +24 -0
- data/lib/reqif/req_if_header.rb +28 -0
- data/lib/reqif/req_if_tool_extension.rb +10 -0
- data/lib/reqif/source.rb +14 -0
- data/lib/reqif/source_specification.rb +14 -0
- data/lib/reqif/spec_attributes.rb +26 -0
- data/lib/reqif/spec_hierarchy.rb +32 -0
- data/lib/reqif/spec_object.rb +26 -0
- data/lib/reqif/spec_object_type.rb +24 -0
- data/lib/reqif/spec_objects.rb +14 -0
- data/lib/reqif/spec_relation.rb +30 -0
- data/lib/reqif/spec_relation_groups.rb +14 -0
- data/lib/reqif/spec_relation_type.rb +24 -0
- data/lib/reqif/spec_relations.rb +17 -0
- data/lib/reqif/spec_types.rb +20 -0
- data/lib/reqif/specification.rb +28 -0
- data/lib/reqif/specification_type.rb +24 -0
- data/lib/reqif/specifications.rb +14 -0
- data/lib/reqif/specified_values.rb +14 -0
- data/lib/reqif/target.rb +14 -0
- data/lib/reqif/target_specification.rb +14 -0
- data/lib/reqif/the_header.rb +14 -0
- data/lib/reqif/tool_extensions.rb +14 -0
- data/lib/reqif/type.rb +35 -0
- data/lib/reqif/values.rb +30 -0
- data/lib/reqif/version.rb +5 -0
- data/lib/reqif/xhtml_content.rb +10 -0
- data/lib/reqif.rb +22 -0
- data/references/driver.xsd +270 -0
- data/references/reqif.xsd +893 -0
- data/reqif.gemspec +36 -0
- data/sig/reqif.rbs +4 -0
- metadata +151 -0
@@ -0,0 +1,893 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xsd:schema
|
3
|
+
xmlns="http://www.w3.org/1999/xhtml" xmlns:REQIF="http://www.omg.org/spec/ReqIF/20110401/reqif.xsd"
|
4
|
+
xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema" attributeFormDefault="unqualified"
|
5
|
+
elementFormDefault="qualified" targetNamespace="http://www.omg.org/spec/ReqIF/20110401/reqif.xsd">
|
6
|
+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd"/>
|
7
|
+
<xsd:import namespace="http://www.w3.org/1999/xhtml" schemaLocation="http://www.omg.org/spec/ReqIF/20110402/driver.xsd"/>
|
8
|
+
<xsd:element name="REQ-IF" type="REQIF:REQ-IF"/>
|
9
|
+
<xsd:simpleType name="LOCAL-REF">
|
10
|
+
<xsd:restriction base="xsd:IDREF"/>
|
11
|
+
</xsd:simpleType>
|
12
|
+
<xsd:simpleType name="GLOBAL-REF">
|
13
|
+
<xsd:restriction base="xsd:string"/>
|
14
|
+
</xsd:simpleType>
|
15
|
+
<xsd:complexType name="ALTERNATIVE-ID">
|
16
|
+
<xsd:all/>
|
17
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:string" use="required"/>
|
18
|
+
</xsd:complexType>
|
19
|
+
<xsd:complexType name="ATTRIBUTE-DEFINITION-BOOLEAN">
|
20
|
+
<xsd:all>
|
21
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
22
|
+
<xsd:complexType>
|
23
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
24
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
25
|
+
</xsd:choice>
|
26
|
+
</xsd:complexType>
|
27
|
+
</xsd:element>
|
28
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="DEFAULT-VALUE">
|
29
|
+
<xsd:complexType>
|
30
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
31
|
+
<xsd:element name="ATTRIBUTE-VALUE-BOOLEAN" type="REQIF:ATTRIBUTE-VALUE-BOOLEAN"/>
|
32
|
+
</xsd:choice>
|
33
|
+
</xsd:complexType>
|
34
|
+
</xsd:element>
|
35
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
36
|
+
<xsd:complexType>
|
37
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
38
|
+
<xsd:element name="DATATYPE-DEFINITION-BOOLEAN-REF" type="REQIF:LOCAL-REF"/>
|
39
|
+
</xsd:choice>
|
40
|
+
</xsd:complexType>
|
41
|
+
</xsd:element>
|
42
|
+
</xsd:all>
|
43
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
44
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
45
|
+
<xsd:attribute name="IS-EDITABLE" type="xsd:boolean" use="optional"/>
|
46
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
47
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
48
|
+
</xsd:complexType>
|
49
|
+
<xsd:complexType name="ATTRIBUTE-DEFINITION-DATE">
|
50
|
+
<xsd:all>
|
51
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
52
|
+
<xsd:complexType>
|
53
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
54
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
55
|
+
</xsd:choice>
|
56
|
+
</xsd:complexType>
|
57
|
+
</xsd:element>
|
58
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="DEFAULT-VALUE">
|
59
|
+
<xsd:complexType>
|
60
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
61
|
+
<xsd:element name="ATTRIBUTE-VALUE-DATE" type="REQIF:ATTRIBUTE-VALUE-DATE"/>
|
62
|
+
</xsd:choice>
|
63
|
+
</xsd:complexType>
|
64
|
+
</xsd:element>
|
65
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
66
|
+
<xsd:complexType>
|
67
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
68
|
+
<xsd:element name="DATATYPE-DEFINITION-DATE-REF" type="REQIF:LOCAL-REF"/>
|
69
|
+
</xsd:choice>
|
70
|
+
</xsd:complexType>
|
71
|
+
</xsd:element>
|
72
|
+
</xsd:all>
|
73
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
74
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
75
|
+
<xsd:attribute name="IS-EDITABLE" type="xsd:boolean" use="optional"/>
|
76
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
77
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
78
|
+
</xsd:complexType>
|
79
|
+
<xsd:complexType name="ATTRIBUTE-DEFINITION-ENUMERATION">
|
80
|
+
<xsd:all>
|
81
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="DEFAULT-VALUE">
|
82
|
+
<xsd:complexType>
|
83
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
84
|
+
<xsd:element name="ATTRIBUTE-VALUE-ENUMERATION" type="REQIF:ATTRIBUTE-VALUE-ENUMERATION"/>
|
85
|
+
</xsd:choice>
|
86
|
+
</xsd:complexType>
|
87
|
+
</xsd:element>
|
88
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
89
|
+
<xsd:complexType>
|
90
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
91
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
92
|
+
</xsd:choice>
|
93
|
+
</xsd:complexType>
|
94
|
+
</xsd:element>
|
95
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
96
|
+
<xsd:complexType>
|
97
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
98
|
+
<xsd:element name="DATATYPE-DEFINITION-ENUMERATION-REF" type="REQIF:LOCAL-REF"/>
|
99
|
+
</xsd:choice>
|
100
|
+
</xsd:complexType>
|
101
|
+
</xsd:element>
|
102
|
+
</xsd:all>
|
103
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
104
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
105
|
+
<xsd:attribute name="IS-EDITABLE" type="xsd:boolean" use="optional"/>
|
106
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
107
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
108
|
+
<xsd:attribute name="MULTI-VALUED" type="xsd:boolean" use="required"/>
|
109
|
+
</xsd:complexType>
|
110
|
+
<xsd:complexType name="ATTRIBUTE-DEFINITION-INTEGER">
|
111
|
+
<xsd:all>
|
112
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
113
|
+
<xsd:complexType>
|
114
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
115
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
116
|
+
</xsd:choice>
|
117
|
+
</xsd:complexType>
|
118
|
+
</xsd:element>
|
119
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="DEFAULT-VALUE">
|
120
|
+
<xsd:complexType>
|
121
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
122
|
+
<xsd:element name="ATTRIBUTE-VALUE-INTEGER" type="REQIF:ATTRIBUTE-VALUE-INTEGER"/>
|
123
|
+
</xsd:choice>
|
124
|
+
</xsd:complexType>
|
125
|
+
</xsd:element>
|
126
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
127
|
+
<xsd:complexType>
|
128
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
129
|
+
<xsd:element name="DATATYPE-DEFINITION-INTEGER-REF" type="REQIF:LOCAL-REF"/>
|
130
|
+
</xsd:choice>
|
131
|
+
</xsd:complexType>
|
132
|
+
</xsd:element>
|
133
|
+
</xsd:all>
|
134
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
135
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
136
|
+
<xsd:attribute name="IS-EDITABLE" type="xsd:boolean" use="optional"/>
|
137
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
138
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
139
|
+
</xsd:complexType>
|
140
|
+
<xsd:complexType name="ATTRIBUTE-DEFINITION-REAL">
|
141
|
+
<xsd:all>
|
142
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
143
|
+
<xsd:complexType>
|
144
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
145
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
146
|
+
</xsd:choice>
|
147
|
+
</xsd:complexType>
|
148
|
+
</xsd:element>
|
149
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="DEFAULT-VALUE">
|
150
|
+
<xsd:complexType>
|
151
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
152
|
+
<xsd:element name="ATTRIBUTE-VALUE-REAL" type="REQIF:ATTRIBUTE-VALUE-REAL"/>
|
153
|
+
</xsd:choice>
|
154
|
+
</xsd:complexType>
|
155
|
+
</xsd:element>
|
156
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
157
|
+
<xsd:complexType>
|
158
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
159
|
+
<xsd:element name="DATATYPE-DEFINITION-REAL-REF" type="REQIF:LOCAL-REF"/>
|
160
|
+
</xsd:choice>
|
161
|
+
</xsd:complexType>
|
162
|
+
</xsd:element>
|
163
|
+
</xsd:all>
|
164
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
165
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
166
|
+
<xsd:attribute name="IS-EDITABLE" type="xsd:boolean" use="optional"/>
|
167
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
168
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
169
|
+
</xsd:complexType>
|
170
|
+
<xsd:complexType name="ATTRIBUTE-DEFINITION-STRING">
|
171
|
+
<xsd:all>
|
172
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
173
|
+
<xsd:complexType>
|
174
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
175
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
176
|
+
</xsd:choice>
|
177
|
+
</xsd:complexType>
|
178
|
+
</xsd:element>
|
179
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="DEFAULT-VALUE">
|
180
|
+
<xsd:complexType>
|
181
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
182
|
+
<xsd:element name="ATTRIBUTE-VALUE-STRING" type="REQIF:ATTRIBUTE-VALUE-STRING"/>
|
183
|
+
</xsd:choice>
|
184
|
+
</xsd:complexType>
|
185
|
+
</xsd:element>
|
186
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
187
|
+
<xsd:complexType>
|
188
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
189
|
+
<xsd:element name="DATATYPE-DEFINITION-STRING-REF" type="REQIF:LOCAL-REF"/>
|
190
|
+
</xsd:choice>
|
191
|
+
</xsd:complexType>
|
192
|
+
</xsd:element>
|
193
|
+
</xsd:all>
|
194
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
195
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
196
|
+
<xsd:attribute name="IS-EDITABLE" type="xsd:boolean" use="optional"/>
|
197
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
198
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
199
|
+
</xsd:complexType>
|
200
|
+
<xsd:complexType name="ATTRIBUTE-DEFINITION-XHTML">
|
201
|
+
<xsd:all>
|
202
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
203
|
+
<xsd:complexType>
|
204
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
205
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
206
|
+
</xsd:choice>
|
207
|
+
</xsd:complexType>
|
208
|
+
</xsd:element>
|
209
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="DEFAULT-VALUE">
|
210
|
+
<xsd:complexType>
|
211
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
212
|
+
<xsd:element name="ATTRIBUTE-VALUE-XHTML" type="REQIF:ATTRIBUTE-VALUE-XHTML"/>
|
213
|
+
</xsd:choice>
|
214
|
+
</xsd:complexType>
|
215
|
+
</xsd:element>
|
216
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
217
|
+
<xsd:complexType>
|
218
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
219
|
+
<xsd:element name="DATATYPE-DEFINITION-XHTML-REF" type="REQIF:LOCAL-REF"/>
|
220
|
+
</xsd:choice>
|
221
|
+
</xsd:complexType>
|
222
|
+
</xsd:element>
|
223
|
+
</xsd:all>
|
224
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
225
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
226
|
+
<xsd:attribute name="IS-EDITABLE" type="xsd:boolean" use="optional"/>
|
227
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
228
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
229
|
+
</xsd:complexType>
|
230
|
+
<xsd:complexType name="ATTRIBUTE-VALUE-BOOLEAN">
|
231
|
+
<xsd:all>
|
232
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="DEFINITION">
|
233
|
+
<xsd:complexType>
|
234
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
235
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-BOOLEAN-REF" type="REQIF:LOCAL-REF"/>
|
236
|
+
</xsd:choice>
|
237
|
+
</xsd:complexType>
|
238
|
+
</xsd:element>
|
239
|
+
</xsd:all>
|
240
|
+
<xsd:attribute name="THE-VALUE" type="xsd:boolean" use="required"/>
|
241
|
+
</xsd:complexType>
|
242
|
+
<xsd:complexType name="ATTRIBUTE-VALUE-DATE">
|
243
|
+
<xsd:all>
|
244
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="DEFINITION">
|
245
|
+
<xsd:complexType>
|
246
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
247
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-DATE-REF" type="REQIF:LOCAL-REF"/>
|
248
|
+
</xsd:choice>
|
249
|
+
</xsd:complexType>
|
250
|
+
</xsd:element>
|
251
|
+
</xsd:all>
|
252
|
+
<xsd:attribute name="THE-VALUE" type="xsd:dateTime" use="required"/>
|
253
|
+
</xsd:complexType>
|
254
|
+
<xsd:complexType name="ATTRIBUTE-VALUE-ENUMERATION">
|
255
|
+
<xsd:all>
|
256
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="DEFINITION">
|
257
|
+
<xsd:complexType>
|
258
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
259
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-ENUMERATION-REF" type="REQIF:LOCAL-REF"/>
|
260
|
+
</xsd:choice>
|
261
|
+
</xsd:complexType>
|
262
|
+
</xsd:element>
|
263
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="VALUES">
|
264
|
+
<xsd:complexType>
|
265
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
266
|
+
<xsd:element name="ENUM-VALUE-REF" type="REQIF:LOCAL-REF"/>
|
267
|
+
</xsd:choice>
|
268
|
+
</xsd:complexType>
|
269
|
+
</xsd:element>
|
270
|
+
</xsd:all>
|
271
|
+
</xsd:complexType>
|
272
|
+
<xsd:complexType name="ATTRIBUTE-VALUE-INTEGER">
|
273
|
+
<xsd:all>
|
274
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="DEFINITION">
|
275
|
+
<xsd:complexType>
|
276
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
277
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-INTEGER-REF" type="REQIF:LOCAL-REF"/>
|
278
|
+
</xsd:choice>
|
279
|
+
</xsd:complexType>
|
280
|
+
</xsd:element>
|
281
|
+
</xsd:all>
|
282
|
+
<xsd:attribute name="THE-VALUE" type="xsd:integer" use="required"/>
|
283
|
+
</xsd:complexType>
|
284
|
+
<xsd:complexType name="ATTRIBUTE-VALUE-REAL">
|
285
|
+
<xsd:all>
|
286
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="DEFINITION">
|
287
|
+
<xsd:complexType>
|
288
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
289
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-REAL-REF" type="REQIF:LOCAL-REF"/>
|
290
|
+
</xsd:choice>
|
291
|
+
</xsd:complexType>
|
292
|
+
</xsd:element>
|
293
|
+
</xsd:all>
|
294
|
+
<xsd:attribute name="THE-VALUE" type="xsd:double" use="required"/>
|
295
|
+
</xsd:complexType>
|
296
|
+
<xsd:complexType name="ATTRIBUTE-VALUE-STRING">
|
297
|
+
<xsd:all>
|
298
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="DEFINITION">
|
299
|
+
<xsd:complexType>
|
300
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
301
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-STRING-REF" type="REQIF:LOCAL-REF"/>
|
302
|
+
</xsd:choice>
|
303
|
+
</xsd:complexType>
|
304
|
+
</xsd:element>
|
305
|
+
</xsd:all>
|
306
|
+
<xsd:attribute name="THE-VALUE" type="xsd:string" use="required"/>
|
307
|
+
</xsd:complexType>
|
308
|
+
<xsd:complexType name="ATTRIBUTE-VALUE-XHTML">
|
309
|
+
<xsd:all>
|
310
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="THE-VALUE" type="REQIF:XHTML-CONTENT"/>
|
311
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="THE-ORIGINAL-VALUE" type="REQIF:XHTML-CONTENT"/>
|
312
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="DEFINITION">
|
313
|
+
<xsd:complexType>
|
314
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
315
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-XHTML-REF" type="REQIF:LOCAL-REF"/>
|
316
|
+
</xsd:choice>
|
317
|
+
</xsd:complexType>
|
318
|
+
</xsd:element>
|
319
|
+
</xsd:all>
|
320
|
+
<xsd:attribute name="IS-SIMPLIFIED" type="xsd:boolean" use="optional"/>
|
321
|
+
</xsd:complexType>
|
322
|
+
<xsd:complexType name="DATATYPE-DEFINITION-BOOLEAN">
|
323
|
+
<xsd:all>
|
324
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
325
|
+
<xsd:complexType>
|
326
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
327
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
328
|
+
</xsd:choice>
|
329
|
+
</xsd:complexType>
|
330
|
+
</xsd:element>
|
331
|
+
</xsd:all>
|
332
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
333
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
334
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
335
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
336
|
+
</xsd:complexType>
|
337
|
+
<xsd:complexType name="DATATYPE-DEFINITION-DATE">
|
338
|
+
<xsd:all>
|
339
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
340
|
+
<xsd:complexType>
|
341
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
342
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
343
|
+
</xsd:choice>
|
344
|
+
</xsd:complexType>
|
345
|
+
</xsd:element>
|
346
|
+
</xsd:all>
|
347
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
348
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
349
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
350
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
351
|
+
</xsd:complexType>
|
352
|
+
<xsd:complexType name="DATATYPE-DEFINITION-ENUMERATION">
|
353
|
+
<xsd:all>
|
354
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
355
|
+
<xsd:complexType>
|
356
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
357
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
358
|
+
</xsd:choice>
|
359
|
+
</xsd:complexType>
|
360
|
+
</xsd:element>
|
361
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPECIFIED-VALUES">
|
362
|
+
<xsd:complexType>
|
363
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
364
|
+
<xsd:element name="ENUM-VALUE" type="REQIF:ENUM-VALUE"/>
|
365
|
+
</xsd:choice>
|
366
|
+
</xsd:complexType>
|
367
|
+
</xsd:element>
|
368
|
+
</xsd:all>
|
369
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
370
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
371
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
372
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
373
|
+
</xsd:complexType>
|
374
|
+
<xsd:complexType name="DATATYPE-DEFINITION-INTEGER">
|
375
|
+
<xsd:all>
|
376
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
377
|
+
<xsd:complexType>
|
378
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
379
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
380
|
+
</xsd:choice>
|
381
|
+
</xsd:complexType>
|
382
|
+
</xsd:element>
|
383
|
+
</xsd:all>
|
384
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
385
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
386
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
387
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
388
|
+
<xsd:attribute name="MAX" type="xsd:integer" use="required"/>
|
389
|
+
<xsd:attribute name="MIN" type="xsd:integer" use="required"/>
|
390
|
+
</xsd:complexType>
|
391
|
+
<xsd:complexType name="DATATYPE-DEFINITION-REAL">
|
392
|
+
<xsd:all>
|
393
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
394
|
+
<xsd:complexType>
|
395
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
396
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
397
|
+
</xsd:choice>
|
398
|
+
</xsd:complexType>
|
399
|
+
</xsd:element>
|
400
|
+
</xsd:all>
|
401
|
+
<xsd:attribute name="ACCURACY" type="xsd:integer" use="required"/>
|
402
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
403
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
404
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
405
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
406
|
+
<xsd:attribute name="MAX" type="xsd:double" use="required"/>
|
407
|
+
<xsd:attribute name="MIN" type="xsd:double" use="required"/>
|
408
|
+
</xsd:complexType>
|
409
|
+
<xsd:complexType name="DATATYPE-DEFINITION-STRING">
|
410
|
+
<xsd:all>
|
411
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
412
|
+
<xsd:complexType>
|
413
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
414
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
415
|
+
</xsd:choice>
|
416
|
+
</xsd:complexType>
|
417
|
+
</xsd:element>
|
418
|
+
</xsd:all>
|
419
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
420
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
421
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
422
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
423
|
+
<xsd:attribute name="MAX-LENGTH" type="xsd:integer" use="required"/>
|
424
|
+
</xsd:complexType>
|
425
|
+
<xsd:complexType name="DATATYPE-DEFINITION-XHTML">
|
426
|
+
<xsd:all>
|
427
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
428
|
+
<xsd:complexType>
|
429
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
430
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
431
|
+
</xsd:choice>
|
432
|
+
</xsd:complexType>
|
433
|
+
</xsd:element>
|
434
|
+
</xsd:all>
|
435
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
436
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
437
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
438
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
439
|
+
</xsd:complexType>
|
440
|
+
<xsd:complexType name="EMBEDDED-VALUE">
|
441
|
+
<xsd:all/>
|
442
|
+
<xsd:attribute name="KEY" type="xsd:integer" use="required"/>
|
443
|
+
<xsd:attribute name="OTHER-CONTENT" type="xsd:string" use="required"/>
|
444
|
+
</xsd:complexType>
|
445
|
+
<xsd:complexType name="ENUM-VALUE">
|
446
|
+
<xsd:all>
|
447
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
448
|
+
<xsd:complexType>
|
449
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
450
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
451
|
+
</xsd:choice>
|
452
|
+
</xsd:complexType>
|
453
|
+
</xsd:element>
|
454
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="PROPERTIES">
|
455
|
+
<xsd:complexType>
|
456
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
457
|
+
<xsd:element name="EMBEDDED-VALUE" type="REQIF:EMBEDDED-VALUE"/>
|
458
|
+
</xsd:choice>
|
459
|
+
</xsd:complexType>
|
460
|
+
</xsd:element>
|
461
|
+
</xsd:all>
|
462
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
463
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
464
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
465
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
466
|
+
</xsd:complexType>
|
467
|
+
<xsd:complexType name="RELATION-GROUP">
|
468
|
+
<xsd:all>
|
469
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
470
|
+
<xsd:complexType>
|
471
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
472
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
473
|
+
</xsd:choice>
|
474
|
+
</xsd:complexType>
|
475
|
+
</xsd:element>
|
476
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="SOURCE-SPECIFICATION">
|
477
|
+
<xsd:complexType>
|
478
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
479
|
+
<xsd:element name="SPECIFICATION-REF" type="REQIF:GLOBAL-REF"/>
|
480
|
+
</xsd:choice>
|
481
|
+
</xsd:complexType>
|
482
|
+
</xsd:element>
|
483
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPEC-RELATIONS">
|
484
|
+
<xsd:complexType>
|
485
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
486
|
+
<xsd:element name="SPEC-RELATION-REF" type="REQIF:LOCAL-REF"/>
|
487
|
+
</xsd:choice>
|
488
|
+
</xsd:complexType>
|
489
|
+
</xsd:element>
|
490
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TARGET-SPECIFICATION">
|
491
|
+
<xsd:complexType>
|
492
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
493
|
+
<xsd:element name="SPECIFICATION-REF" type="REQIF:GLOBAL-REF"/>
|
494
|
+
</xsd:choice>
|
495
|
+
</xsd:complexType>
|
496
|
+
</xsd:element>
|
497
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
498
|
+
<xsd:complexType>
|
499
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
500
|
+
<xsd:element name="RELATION-GROUP-TYPE-REF" type="REQIF:LOCAL-REF"/>
|
501
|
+
</xsd:choice>
|
502
|
+
</xsd:complexType>
|
503
|
+
</xsd:element>
|
504
|
+
</xsd:all>
|
505
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
506
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
507
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
508
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
509
|
+
</xsd:complexType>
|
510
|
+
<xsd:complexType name="RELATION-GROUP-TYPE">
|
511
|
+
<xsd:all>
|
512
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
513
|
+
<xsd:complexType>
|
514
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
515
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
516
|
+
</xsd:choice>
|
517
|
+
</xsd:complexType>
|
518
|
+
</xsd:element>
|
519
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPEC-ATTRIBUTES">
|
520
|
+
<xsd:complexType>
|
521
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
522
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-BOOLEAN" type="REQIF:ATTRIBUTE-DEFINITION-BOOLEAN"/>
|
523
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-DATE" type="REQIF:ATTRIBUTE-DEFINITION-DATE"/>
|
524
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-ENUMERATION" type="REQIF:ATTRIBUTE-DEFINITION-ENUMERATION"/>
|
525
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-INTEGER" type="REQIF:ATTRIBUTE-DEFINITION-INTEGER"/>
|
526
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-REAL" type="REQIF:ATTRIBUTE-DEFINITION-REAL"/>
|
527
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-STRING" type="REQIF:ATTRIBUTE-DEFINITION-STRING"/>
|
528
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-XHTML" type="REQIF:ATTRIBUTE-DEFINITION-XHTML"/>
|
529
|
+
</xsd:choice>
|
530
|
+
</xsd:complexType>
|
531
|
+
</xsd:element>
|
532
|
+
</xsd:all>
|
533
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
534
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
535
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
536
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
537
|
+
</xsd:complexType>
|
538
|
+
<xsd:complexType name="REQ-IF">
|
539
|
+
<xsd:sequence>
|
540
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="THE-HEADER">
|
541
|
+
<xsd:complexType>
|
542
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
543
|
+
<xsd:element name="REQ-IF-HEADER" type="REQIF:REQ-IF-HEADER"/>
|
544
|
+
</xsd:choice>
|
545
|
+
</xsd:complexType>
|
546
|
+
</xsd:element>
|
547
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="CORE-CONTENT">
|
548
|
+
<xsd:complexType>
|
549
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
550
|
+
<xsd:element name="REQ-IF-CONTENT" type="REQIF:REQ-IF-CONTENT"/>
|
551
|
+
</xsd:choice>
|
552
|
+
</xsd:complexType>
|
553
|
+
</xsd:element>
|
554
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="TOOL-EXTENSIONS">
|
555
|
+
<xsd:complexType>
|
556
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
557
|
+
<xsd:element name="REQ-IF-TOOL-EXTENSION" type="REQIF:REQ-IF-TOOL-EXTENSION"/>
|
558
|
+
</xsd:choice>
|
559
|
+
</xsd:complexType>
|
560
|
+
</xsd:element>
|
561
|
+
</xsd:sequence>
|
562
|
+
<!-- <xsd:attribute ref="xml:lang" use="optional"/> -->
|
563
|
+
</xsd:complexType>
|
564
|
+
<xsd:complexType name="REQ-IF-CONTENT">
|
565
|
+
<xsd:sequence>
|
566
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="DATATYPES">
|
567
|
+
<xsd:complexType>
|
568
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
569
|
+
<xsd:element name="DATATYPE-DEFINITION-BOOLEAN" type="REQIF:DATATYPE-DEFINITION-BOOLEAN"/>
|
570
|
+
<xsd:element name="DATATYPE-DEFINITION-DATE" type="REQIF:DATATYPE-DEFINITION-DATE"/>
|
571
|
+
<xsd:element name="DATATYPE-DEFINITION-ENUMERATION" type="REQIF:DATATYPE-DEFINITION-ENUMERATION"/>
|
572
|
+
<xsd:element name="DATATYPE-DEFINITION-INTEGER" type="REQIF:DATATYPE-DEFINITION-INTEGER"/>
|
573
|
+
<xsd:element name="DATATYPE-DEFINITION-REAL" type="REQIF:DATATYPE-DEFINITION-REAL"/>
|
574
|
+
<xsd:element name="DATATYPE-DEFINITION-STRING" type="REQIF:DATATYPE-DEFINITION-STRING"/>
|
575
|
+
<xsd:element name="DATATYPE-DEFINITION-XHTML" type="REQIF:DATATYPE-DEFINITION-XHTML"/>
|
576
|
+
</xsd:choice>
|
577
|
+
</xsd:complexType>
|
578
|
+
</xsd:element>
|
579
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPEC-TYPES">
|
580
|
+
<xsd:complexType>
|
581
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
582
|
+
<xsd:element name="RELATION-GROUP-TYPE" type="REQIF:RELATION-GROUP-TYPE"/>
|
583
|
+
<xsd:element name="SPEC-OBJECT-TYPE" type="REQIF:SPEC-OBJECT-TYPE"/>
|
584
|
+
<xsd:element name="SPEC-RELATION-TYPE" type="REQIF:SPEC-RELATION-TYPE"/>
|
585
|
+
<xsd:element name="SPECIFICATION-TYPE" type="REQIF:SPECIFICATION-TYPE"/>
|
586
|
+
</xsd:choice>
|
587
|
+
</xsd:complexType>
|
588
|
+
</xsd:element>
|
589
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPEC-OBJECTS">
|
590
|
+
<xsd:complexType>
|
591
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
592
|
+
<xsd:element name="SPEC-OBJECT" type="REQIF:SPEC-OBJECT"/>
|
593
|
+
</xsd:choice>
|
594
|
+
</xsd:complexType>
|
595
|
+
</xsd:element>
|
596
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPEC-RELATIONS">
|
597
|
+
<xsd:complexType>
|
598
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
599
|
+
<xsd:element name="SPEC-RELATION" type="REQIF:SPEC-RELATION"/>
|
600
|
+
</xsd:choice>
|
601
|
+
</xsd:complexType>
|
602
|
+
</xsd:element>
|
603
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPECIFICATIONS">
|
604
|
+
<xsd:complexType>
|
605
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
606
|
+
<xsd:element name="SPECIFICATION" type="REQIF:SPECIFICATION"/>
|
607
|
+
</xsd:choice>
|
608
|
+
</xsd:complexType>
|
609
|
+
</xsd:element>
|
610
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPEC-RELATION-GROUPS">
|
611
|
+
<xsd:complexType>
|
612
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
613
|
+
<xsd:element name="RELATION-GROUP" type="REQIF:RELATION-GROUP"/>
|
614
|
+
</xsd:choice>
|
615
|
+
</xsd:complexType>
|
616
|
+
</xsd:element>
|
617
|
+
</xsd:sequence>
|
618
|
+
</xsd:complexType>
|
619
|
+
<xsd:complexType name="REQ-IF-HEADER">
|
620
|
+
<xsd:sequence>
|
621
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="COMMENT" type="xsd:string"/>
|
622
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="CREATION-TIME" type="xsd:dateTime"/>
|
623
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="REPOSITORY-ID" type="xsd:string"/>
|
624
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="REQ-IF-TOOL-ID" type="xsd:string"/>
|
625
|
+
<xsd:element fixed="1.0" maxOccurs="1" minOccurs="1" name="REQ-IF-VERSION" type="xsd:string"/>
|
626
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="SOURCE-TOOL-ID" type="xsd:string"/>
|
627
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TITLE" type="xsd:string"/>
|
628
|
+
</xsd:sequence>
|
629
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
630
|
+
</xsd:complexType>
|
631
|
+
<xsd:complexType name="SPEC-HIERARCHY">
|
632
|
+
<xsd:all>
|
633
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
634
|
+
<xsd:complexType>
|
635
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
636
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
637
|
+
</xsd:choice>
|
638
|
+
</xsd:complexType>
|
639
|
+
</xsd:element>
|
640
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="CHILDREN">
|
641
|
+
<xsd:complexType>
|
642
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
643
|
+
<xsd:element name="SPEC-HIERARCHY" type="REQIF:SPEC-HIERARCHY"/>
|
644
|
+
</xsd:choice>
|
645
|
+
</xsd:complexType>
|
646
|
+
</xsd:element>
|
647
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="EDITABLE-ATTS">
|
648
|
+
<xsd:complexType>
|
649
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
650
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-BOOLEAN-REF" type="REQIF:LOCAL-REF"/>
|
651
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-DATE-REF" type="REQIF:LOCAL-REF"/>
|
652
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-ENUMERATION-REF" type="REQIF:LOCAL-REF"/>
|
653
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-INTEGER-REF" type="REQIF:LOCAL-REF"/>
|
654
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-REAL-REF" type="REQIF:LOCAL-REF"/>
|
655
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-STRING-REF" type="REQIF:LOCAL-REF"/>
|
656
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-XHTML-REF" type="REQIF:LOCAL-REF"/>
|
657
|
+
</xsd:choice>
|
658
|
+
</xsd:complexType>
|
659
|
+
</xsd:element>
|
660
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="OBJECT">
|
661
|
+
<xsd:complexType>
|
662
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
663
|
+
<xsd:element name="SPEC-OBJECT-REF" type="REQIF:LOCAL-REF"/>
|
664
|
+
</xsd:choice>
|
665
|
+
</xsd:complexType>
|
666
|
+
</xsd:element>
|
667
|
+
</xsd:all>
|
668
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
669
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
670
|
+
<xsd:attribute name="IS-EDITABLE" type="xsd:boolean" use="optional"/>
|
671
|
+
<xsd:attribute name="IS-TABLE-INTERNAL" type="xsd:boolean" use="optional"/>
|
672
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
673
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
674
|
+
</xsd:complexType>
|
675
|
+
<xsd:complexType name="SPEC-OBJECT">
|
676
|
+
<xsd:all>
|
677
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
678
|
+
<xsd:complexType>
|
679
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
680
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
681
|
+
</xsd:choice>
|
682
|
+
</xsd:complexType>
|
683
|
+
</xsd:element>
|
684
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="VALUES">
|
685
|
+
<xsd:complexType>
|
686
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
687
|
+
<xsd:element name="ATTRIBUTE-VALUE-BOOLEAN" type="REQIF:ATTRIBUTE-VALUE-BOOLEAN"/>
|
688
|
+
<xsd:element name="ATTRIBUTE-VALUE-DATE" type="REQIF:ATTRIBUTE-VALUE-DATE"/>
|
689
|
+
<xsd:element name="ATTRIBUTE-VALUE-ENUMERATION" type="REQIF:ATTRIBUTE-VALUE-ENUMERATION"/>
|
690
|
+
<xsd:element name="ATTRIBUTE-VALUE-INTEGER" type="REQIF:ATTRIBUTE-VALUE-INTEGER"/>
|
691
|
+
<xsd:element name="ATTRIBUTE-VALUE-REAL" type="REQIF:ATTRIBUTE-VALUE-REAL"/>
|
692
|
+
<xsd:element name="ATTRIBUTE-VALUE-STRING" type="REQIF:ATTRIBUTE-VALUE-STRING"/>
|
693
|
+
<xsd:element name="ATTRIBUTE-VALUE-XHTML" type="REQIF:ATTRIBUTE-VALUE-XHTML"/>
|
694
|
+
</xsd:choice>
|
695
|
+
</xsd:complexType>
|
696
|
+
</xsd:element>
|
697
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
698
|
+
<xsd:complexType>
|
699
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
700
|
+
<xsd:element name="SPEC-OBJECT-TYPE-REF" type="REQIF:LOCAL-REF"/>
|
701
|
+
</xsd:choice>
|
702
|
+
</xsd:complexType>
|
703
|
+
</xsd:element>
|
704
|
+
</xsd:all>
|
705
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
706
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
707
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
708
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
709
|
+
</xsd:complexType>
|
710
|
+
<xsd:complexType name="SPEC-OBJECT-TYPE">
|
711
|
+
<xsd:all>
|
712
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
713
|
+
<xsd:complexType>
|
714
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
715
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
716
|
+
</xsd:choice>
|
717
|
+
</xsd:complexType>
|
718
|
+
</xsd:element>
|
719
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPEC-ATTRIBUTES">
|
720
|
+
<xsd:complexType>
|
721
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
722
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-BOOLEAN" type="REQIF:ATTRIBUTE-DEFINITION-BOOLEAN"/>
|
723
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-DATE" type="REQIF:ATTRIBUTE-DEFINITION-DATE"/>
|
724
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-ENUMERATION" type="REQIF:ATTRIBUTE-DEFINITION-ENUMERATION"/>
|
725
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-INTEGER" type="REQIF:ATTRIBUTE-DEFINITION-INTEGER"/>
|
726
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-REAL" type="REQIF:ATTRIBUTE-DEFINITION-REAL"/>
|
727
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-STRING" type="REQIF:ATTRIBUTE-DEFINITION-STRING"/>
|
728
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-XHTML" type="REQIF:ATTRIBUTE-DEFINITION-XHTML"/>
|
729
|
+
</xsd:choice>
|
730
|
+
</xsd:complexType>
|
731
|
+
</xsd:element>
|
732
|
+
</xsd:all>
|
733
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
734
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
735
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
736
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
737
|
+
</xsd:complexType>
|
738
|
+
<xsd:complexType name="SPEC-RELATION">
|
739
|
+
<xsd:all>
|
740
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
741
|
+
<xsd:complexType>
|
742
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
743
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
744
|
+
</xsd:choice>
|
745
|
+
</xsd:complexType>
|
746
|
+
</xsd:element>
|
747
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="VALUES">
|
748
|
+
<xsd:complexType>
|
749
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
750
|
+
<xsd:element name="ATTRIBUTE-VALUE-BOOLEAN" type="REQIF:ATTRIBUTE-VALUE-BOOLEAN"/>
|
751
|
+
<xsd:element name="ATTRIBUTE-VALUE-DATE" type="REQIF:ATTRIBUTE-VALUE-DATE"/>
|
752
|
+
<xsd:element name="ATTRIBUTE-VALUE-ENUMERATION" type="REQIF:ATTRIBUTE-VALUE-ENUMERATION"/>
|
753
|
+
<xsd:element name="ATTRIBUTE-VALUE-INTEGER" type="REQIF:ATTRIBUTE-VALUE-INTEGER"/>
|
754
|
+
<xsd:element name="ATTRIBUTE-VALUE-REAL" type="REQIF:ATTRIBUTE-VALUE-REAL"/>
|
755
|
+
<xsd:element name="ATTRIBUTE-VALUE-STRING" type="REQIF:ATTRIBUTE-VALUE-STRING"/>
|
756
|
+
<xsd:element name="ATTRIBUTE-VALUE-XHTML" type="REQIF:ATTRIBUTE-VALUE-XHTML"/>
|
757
|
+
</xsd:choice>
|
758
|
+
</xsd:complexType>
|
759
|
+
</xsd:element>
|
760
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="SOURCE">
|
761
|
+
<xsd:complexType>
|
762
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
763
|
+
<xsd:element name="SPEC-OBJECT-REF" type="REQIF:GLOBAL-REF"/>
|
764
|
+
</xsd:choice>
|
765
|
+
</xsd:complexType>
|
766
|
+
</xsd:element>
|
767
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TARGET">
|
768
|
+
<xsd:complexType>
|
769
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
770
|
+
<xsd:element name="SPEC-OBJECT-REF" type="REQIF:GLOBAL-REF"/>
|
771
|
+
</xsd:choice>
|
772
|
+
</xsd:complexType>
|
773
|
+
</xsd:element>
|
774
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
775
|
+
<xsd:complexType>
|
776
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
777
|
+
<xsd:element name="SPEC-RELATION-TYPE-REF" type="REQIF:LOCAL-REF"/>
|
778
|
+
</xsd:choice>
|
779
|
+
</xsd:complexType>
|
780
|
+
</xsd:element>
|
781
|
+
</xsd:all>
|
782
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
783
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
784
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
785
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
786
|
+
</xsd:complexType>
|
787
|
+
<xsd:complexType name="SPEC-RELATION-TYPE">
|
788
|
+
<xsd:all>
|
789
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
790
|
+
<xsd:complexType>
|
791
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
792
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
793
|
+
</xsd:choice>
|
794
|
+
</xsd:complexType>
|
795
|
+
</xsd:element>
|
796
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPEC-ATTRIBUTES">
|
797
|
+
<xsd:complexType>
|
798
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
799
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-BOOLEAN" type="REQIF:ATTRIBUTE-DEFINITION-BOOLEAN"/>
|
800
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-DATE" type="REQIF:ATTRIBUTE-DEFINITION-DATE"/>
|
801
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-ENUMERATION" type="REQIF:ATTRIBUTE-DEFINITION-ENUMERATION"/>
|
802
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-INTEGER" type="REQIF:ATTRIBUTE-DEFINITION-INTEGER"/>
|
803
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-REAL" type="REQIF:ATTRIBUTE-DEFINITION-REAL"/>
|
804
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-STRING" type="REQIF:ATTRIBUTE-DEFINITION-STRING"/>
|
805
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-XHTML" type="REQIF:ATTRIBUTE-DEFINITION-XHTML"/>
|
806
|
+
</xsd:choice>
|
807
|
+
</xsd:complexType>
|
808
|
+
</xsd:element>
|
809
|
+
</xsd:all>
|
810
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
811
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
812
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
813
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
814
|
+
</xsd:complexType>
|
815
|
+
<xsd:complexType name="SPECIFICATION">
|
816
|
+
<xsd:all>
|
817
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
818
|
+
<xsd:complexType>
|
819
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
820
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
821
|
+
</xsd:choice>
|
822
|
+
</xsd:complexType>
|
823
|
+
</xsd:element>
|
824
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="VALUES">
|
825
|
+
<xsd:complexType>
|
826
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
827
|
+
<xsd:element name="ATTRIBUTE-VALUE-BOOLEAN" type="REQIF:ATTRIBUTE-VALUE-BOOLEAN"/>
|
828
|
+
<xsd:element name="ATTRIBUTE-VALUE-DATE" type="REQIF:ATTRIBUTE-VALUE-DATE"/>
|
829
|
+
<xsd:element name="ATTRIBUTE-VALUE-ENUMERATION" type="REQIF:ATTRIBUTE-VALUE-ENUMERATION"/>
|
830
|
+
<xsd:element name="ATTRIBUTE-VALUE-INTEGER" type="REQIF:ATTRIBUTE-VALUE-INTEGER"/>
|
831
|
+
<xsd:element name="ATTRIBUTE-VALUE-REAL" type="REQIF:ATTRIBUTE-VALUE-REAL"/>
|
832
|
+
<xsd:element name="ATTRIBUTE-VALUE-STRING" type="REQIF:ATTRIBUTE-VALUE-STRING"/>
|
833
|
+
<xsd:element name="ATTRIBUTE-VALUE-XHTML" type="REQIF:ATTRIBUTE-VALUE-XHTML"/>
|
834
|
+
</xsd:choice>
|
835
|
+
</xsd:complexType>
|
836
|
+
</xsd:element>
|
837
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="CHILDREN">
|
838
|
+
<xsd:complexType>
|
839
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
840
|
+
<xsd:element name="SPEC-HIERARCHY" type="REQIF:SPEC-HIERARCHY"/>
|
841
|
+
</xsd:choice>
|
842
|
+
</xsd:complexType>
|
843
|
+
</xsd:element>
|
844
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="TYPE">
|
845
|
+
<xsd:complexType>
|
846
|
+
<xsd:choice maxOccurs="1" minOccurs="1">
|
847
|
+
<xsd:element name="SPECIFICATION-TYPE-REF" type="REQIF:LOCAL-REF"/>
|
848
|
+
</xsd:choice>
|
849
|
+
</xsd:complexType>
|
850
|
+
</xsd:element>
|
851
|
+
</xsd:all>
|
852
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
853
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
854
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
855
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
856
|
+
</xsd:complexType>
|
857
|
+
<xsd:complexType name="SPECIFICATION-TYPE">
|
858
|
+
<xsd:all>
|
859
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="ALTERNATIVE-ID">
|
860
|
+
<xsd:complexType>
|
861
|
+
<xsd:choice maxOccurs="1" minOccurs="0">
|
862
|
+
<xsd:element name="ALTERNATIVE-ID" type="REQIF:ALTERNATIVE-ID"/>
|
863
|
+
</xsd:choice>
|
864
|
+
</xsd:complexType>
|
865
|
+
</xsd:element>
|
866
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SPEC-ATTRIBUTES">
|
867
|
+
<xsd:complexType>
|
868
|
+
<xsd:choice maxOccurs="unbounded" minOccurs="0">
|
869
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-BOOLEAN" type="REQIF:ATTRIBUTE-DEFINITION-BOOLEAN"/>
|
870
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-DATE" type="REQIF:ATTRIBUTE-DEFINITION-DATE"/>
|
871
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-ENUMERATION" type="REQIF:ATTRIBUTE-DEFINITION-ENUMERATION"/>
|
872
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-INTEGER" type="REQIF:ATTRIBUTE-DEFINITION-INTEGER"/>
|
873
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-REAL" type="REQIF:ATTRIBUTE-DEFINITION-REAL"/>
|
874
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-STRING" type="REQIF:ATTRIBUTE-DEFINITION-STRING"/>
|
875
|
+
<xsd:element name="ATTRIBUTE-DEFINITION-XHTML" type="REQIF:ATTRIBUTE-DEFINITION-XHTML"/>
|
876
|
+
</xsd:choice>
|
877
|
+
</xsd:complexType>
|
878
|
+
</xsd:element>
|
879
|
+
</xsd:all>
|
880
|
+
<xsd:attribute name="DESC" type="xsd:string" use="optional"/>
|
881
|
+
<xsd:attribute name="IDENTIFIER" type="xsd:ID" use="required"/>
|
882
|
+
<xsd:attribute name="LAST-CHANGE" type="xsd:dateTime" use="required"/>
|
883
|
+
<xsd:attribute name="LONG-NAME" type="xsd:string" use="optional"/>
|
884
|
+
</xsd:complexType>
|
885
|
+
<xsd:complexType name="REQ-IF-TOOL-EXTENSION">
|
886
|
+
<xsd:sequence>
|
887
|
+
<xsd:any namespace="##other" processContents="lax" maxOccurs="unbounded" minOccurs="0"/>
|
888
|
+
</xsd:sequence>
|
889
|
+
</xsd:complexType>
|
890
|
+
<xsd:complexType name="XHTML-CONTENT">
|
891
|
+
<!-- <xsd:group ref="xhtml.BlkStruct.class"/> -->
|
892
|
+
</xsd:complexType>
|
893
|
+
</xsd:schema>
|