-
Notifications
You must be signed in to change notification settings - Fork 0
/
MedicalInformation.xsd
376 lines (355 loc) · 12.9 KB
/
MedicalInformation.xsd
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<?xml version="1.0" encoding="UTF-8"?>
<!--
$Id: MedicalInformation.xsd 7876 2013-03-31 07:46:12Z $
-->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:medical="http://www.iaea.org/2012/IRIX/Format/MedicalInformation"
xmlns:base="http://www.iaea.org/2012/IRIX/Format/Base"
xmlns:html="http://www.w3.org/1999/xhtml"
targetNamespace="http://www.iaea.org/2012/IRIX/Format/MedicalInformation"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xsd:import namespace="http://www.iaea.org/2012/IRIX/Format/Base" schemaLocation="Base.xsd"/>
<xsd:element name="MedicalInformation" type="medical:MedicalInformationType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A report section with structured information on persons who have been examined
for radiological health effects. The block allows to provide information on a
per-person basis, including health effects diagnosed, health consequences prognosed
and dose assessments made for each subject.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="MedicalInformationType">
<xsd:complexContent>
<xsd:extension base="base:InformationBlock">
<xsd:sequence>
<xsd:element name="PersonsDiagnosed" type="medical:PersonsDiagnosedType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Contains a list with information on the medical assessments of examined persons.
</xsd:documentation>
</xsd:annotation>
<xsd:unique name="UniquePersonDiagnosed">
<xsd:selector xpath="medical:PersonDiagnosed"/>
<xsd:field xpath="medical:Identity/medical:Code"/>
</xsd:unique>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="PersonsDiagnosedType">
<xsd:sequence>
<xsd:element name="PersonDiagnosed" type="medical:PersonDiagnosedType"
minOccurs="1" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Contains information on the medical assessment of one examined person.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="PersonDiagnosedType">
<xsd:sequence>
<xsd:element name="Identity" type="medical:IdentityType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Contains information on the identity of the examined person.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="HealthEffectsDiagnosed" type="medical:HealthEffectsDiagnosedType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Contains a list of health effects diagnosed on the examined person.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="HealthConsequencesPrognosed" type="medical:HealthConsequencesPrognosedType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Contains a list of health consequences prognosed on the examined person.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="DoseAssessments" type="medical:DoseAssessmentType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Contains information on dose assessments performed on the examined person.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Description" type="base:FreeTextType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Additional free text information relating to the medical assessment of the examined person.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="IdentityType">
<xsd:sequence>
<xsd:element name="Code" type="xsd:token">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Code used to identify/refer to the examined person.
(The code need not reveal the person's actual identity.)
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Name" type="xsd:token" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The person's name (optional).
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Description" type="base:FreeTextType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Additional free text information relating to the identity of the examined person.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="HealthEffectsDiagnosedType">
<xsd:sequence>
<xsd:element name="HealthEffectDiagnosed" type="medical:HealthEffectDiagnosedType"
minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Contains information on the diagnosis of a particular health effect.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="HealthEffectDiagnosedType">
<xsd:sequence>
<xsd:choice>
<xsd:element name="TypeOfHealthEffect" type="medical:TypeOfHealthEffectType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Type of health effect diagnosed.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="TypeOfHealthEffectDescription" type="base:ShortStringType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Type of health effect diagnosed. (free text)
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
<xsd:element name="DiagnosticResult" type="medical:DiagnosticResultType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Diagnostic result (Negative, Possible etc).
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Description" type="base:FreeTextType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Additional free text information relating to the diagnosis of this type of health effect.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="HealthConsequencesPrognosedType">
<xsd:sequence>
<xsd:element name="HealthConsequencePrognosed" type="medical:HealthConsequencePrognosedType"
minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Contains information on the prognosis of a particular health consequence.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="HealthConsequencePrognosedType">
<xsd:sequence>
<xsd:choice>
<xsd:element name="TypeOfHealthConsequence" type="medical:TypeOfHealthConsequenceType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Type of health consequence.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="TypeOfHealthConsequenceDescription" type="base:ShortStringType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Type of health consequence. (free text)
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
<xsd:element name="PrognosedOccurrence" type="medical:PrognosedOccurrenceType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Indicates whether the type of health consequence is prognosed to occur.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Description" type="base:FreeTextType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Additional free text information relating to the prognosis of this type of health consequence.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="DoseAssessmentType">
<xsd:sequence>
<xsd:element name="AssessedDose" type="medical:AssessedDoseType"
minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Contains information on the assessment of a particular type of dose (whole body, specific organ or tissue)
performed on the examined person.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Description" type="base:FreeTextType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Additional free text information relating to the dose assessments performed on the person.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="AssessedDoseType">
<xsd:sequence>
<xsd:choice>
<xsd:element name="TypeOfDose" type="medical:TypeOfDoseType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The type of dose assessed (e.g. whole body, or dose to a specific
organ or tissue).
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="TypeOfDoseDescription" type="base:ShortStringType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The type of dose assessed. (free text)
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
<xsd:element name="DoseValue" type="medical:DoseValueType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The assessed dose (Sv or Gy).
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="DoseAssessmentMethod" type="base:ShortStringType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Free text description of the dose assessment method used.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Description" type="base:FreeTextType" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Additional free text information relating to the assessment of this type of dose.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="DoseValueType">
<xsd:simpleContent>
<xsd:extension base="xsd:float">
<xsd:attribute name="Constraint" type="medical:ConstraintType"
use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Attribute for indicating whether the actual value is less than (LT)
or greater than (GT) the reported value.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Unit" type="medical:DoseUnitType" use="required">
<xsd:annotation>
<xsd:documentation>
Unit (Sv or Gy).
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="TypeOfHealthEffectType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="Acute Radiation Syndrome"/>
<xsd:enumeration value="Bone Marrow Depression"/>
<xsd:enumeration value="Cataract"/>
<xsd:enumeration value="Erythema"/>
<xsd:enumeration value="Necrosis"/>
<xsd:enumeration value="Pneumonitis"/>
<xsd:enumeration value="Ulceration"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="DiagnosticResultType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="Negative"/>
<xsd:enumeration value="Possible"/>
<xsd:enumeration value="Probable"/>
<xsd:enumeration value="Definite"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="TypeOfHealthConsequenceType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="Amputation"/>
<xsd:enumeration value="Contracture"/>
<xsd:enumeration value="Fatality"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="PrognosedOccurrenceType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="Negative"/>
<xsd:enumeration value="Possible"/>
<xsd:enumeration value="Probable"/>
<xsd:enumeration value="Definite"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="TypeOfDoseType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="Whole Body"/>
<xsd:enumeration value="Head/Neck"/>
<xsd:enumeration value="Eye/Lens"/>
<xsd:enumeration value="Thyroid"/>
<xsd:enumeration value="Skin"/>
<xsd:enumeration value="Breast/Chest"/>
<xsd:enumeration value="Bone Marrow"/>
<xsd:enumeration value="Colon"/>
<xsd:enumeration value="Gonads"/>
<xsd:enumeration value="Lung"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="ConstraintType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="GT" />
<xsd:enumeration value="LT" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="DoseUnitType">
<xsd:restriction base="xsd:token">
<xsd:enumeration value="Sv"/>
<xsd:enumeration value="Gy"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>