cqm-validators 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +7 -0
  3. data/Gemfile +6 -0
  4. data/LICENSE.txt +201 -0
  5. data/QRDA_Schematron_License.txt +191 -0
  6. data/README.md +40 -0
  7. data/Rakefile +10 -0
  8. data/bin/console +14 -0
  9. data/bin/setup +8 -0
  10. data/cqm_validators.gemspec +28 -0
  11. data/lib/base_validator.rb +22 -0
  12. data/lib/cqm_validators.rb +15 -0
  13. data/lib/cqm_validators/version.rb +3 -0
  14. data/lib/data_validator.rb +82 -0
  15. data/lib/measure_validator.rb +130 -0
  16. data/lib/performance_rate_validator.rb +92 -0
  17. data/lib/qrda_qdm_template_validator.rb +320 -0
  18. data/lib/reported_result_extractor.rb +172 -0
  19. data/lib/schema/infrastructure/cda/CDA_SDTC.xsd +44 -0
  20. data/lib/schema/infrastructure/cda/POCD_MT000040_SDTC.xsd +1500 -0
  21. data/lib/schema/infrastructure/cda/SDTC.xsd +210 -0
  22. data/lib/schema/processable/coreschemas/NarrativeBlock.xsd +557 -0
  23. data/lib/schema/processable/coreschemas/datatypes-base_SDTC.xsd +1850 -0
  24. data/lib/schema/processable/coreschemas/datatypes.xsd +1375 -0
  25. data/lib/schema/processable/coreschemas/infrastructureRoot.xsd +27 -0
  26. data/lib/schema/processable/coreschemas/voc.xsd +2124 -0
  27. data/lib/schema_validator.rb +23 -0
  28. data/lib/schematron/c_processor.rb +26 -0
  29. data/lib/schematron/iso-schematron-xslt1/ExtractSchFromRNG.xsl +75 -0
  30. data/lib/schematron/iso-schematron-xslt1/ExtractSchFromXSD.xsl +77 -0
  31. data/lib/schematron/iso-schematron-xslt1/iso_abstract_expand.xsl +297 -0
  32. data/lib/schematron/iso-schematron-xslt1/iso_dsdl_include.xsl +1509 -0
  33. data/lib/schematron/iso-schematron-xslt1/iso_schematron_message.xsl +55 -0
  34. data/lib/schematron/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl +1844 -0
  35. data/lib/schematron/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl +605 -0
  36. data/lib/schematron/iso-schematron-xslt1/readme.txt +101 -0
  37. data/lib/schematron/iso-schematron-xslt1/schematron-skeleton-api.htm +723 -0
  38. data/lib/schematron/iso-schematron-xslt2/ExtractSchFromRNG-2.xsl +75 -0
  39. data/lib/schematron/iso-schematron-xslt2/ExtractSchFromXSD-2.xsl +77 -0
  40. data/lib/schematron/iso-schematron-xslt2/iso_abstract_expand.xsl +297 -0
  41. data/lib/schematron/iso-schematron-xslt2/iso_dsdl_include.xsl +1508 -0
  42. data/lib/schematron/iso-schematron-xslt2/iso_schematron_message_xslt2.xsl +55 -0
  43. data/lib/schematron/iso-schematron-xslt2/iso_schematron_skeleton_for_saxon.xsl +2299 -0
  44. data/lib/schematron/iso-schematron-xslt2/iso_svrl_for_xslt2.xsl +684 -0
  45. data/lib/schematron/iso-schematron-xslt2/readme.txt +100 -0
  46. data/lib/schematron/iso-schematron-xslt2/sch-messages-cs.xhtml +56 -0
  47. data/lib/schematron/iso-schematron-xslt2/sch-messages-de.xhtml +57 -0
  48. data/lib/schematron/iso-schematron-xslt2/sch-messages-en.xhtml +57 -0
  49. data/lib/schematron/iso-schematron-xslt2/sch-messages-fr.xhtml +54 -0
  50. data/lib/schematron/iso-schematron-xslt2/sch-messages-nl.xhtml +58 -0
  51. data/lib/schematron/iso-schematron-xslt2/schematron-skeleton-api.htm +723 -0
  52. data/lib/schematron/java_processor.rb +92 -0
  53. data/lib/schematron/qrda/cat_1/HL7_CDAR2_QRDA_Category_I_2_12_16.sch +4693 -0
  54. data/lib/schematron/qrda/cat_1/voc.xml +1177 -0
  55. data/lib/schematron/qrda/cat_1_r2/QRDA Category I Release 2.sch +4069 -0
  56. data/lib/schematron/qrda/cat_1_r2/voc.xml +1065 -0
  57. data/lib/schematron/qrda/cat_1_r3_1/HL7 QRDA Category I STU 3.1.sch +3573 -0
  58. data/lib/schematron/qrda/cat_1_r3_1/HL7 QRDA Category III STU 1.1.sch +464 -0
  59. data/lib/schematron/qrda/cat_1_r3_1/QRDA Category I STU Release 3.1.sch +5394 -0
  60. data/lib/schematron/qrda/cat_1_r3_1/voc.xml +1229 -0
  61. data/lib/schematron/qrda/cat_1_r4/HL7 QRDA Category I STU 4.sch +3526 -0
  62. data/lib/schematron/qrda/cat_1_r4/voc.xml +1186 -0
  63. data/lib/schematron/qrda/cat_1_r5/HL7 QRDA Category I STU 5.sch +3069 -0
  64. data/lib/schematron/qrda/cat_1_r5/voc.xml +1186 -0
  65. data/lib/schematron/qrda/cat_3/QRDA Category III.sch +675 -0
  66. data/lib/schematron/qrda/cat_3/voc.xml +21 -0
  67. data/lib/schematron/qrda/cat_3_r1_1/HL7 QRDA Category III STU 1.1.sch +528 -0
  68. data/lib/schematron/qrda/cat_3_r1_1/voc.xml +8 -0
  69. data/lib/schematron/qrda/cat_3_r2/HL7 QRDA Category III STU 2.sch +677 -0
  70. data/lib/schematron/qrda/cat_3_r2/voc.xml +1186 -0
  71. data/lib/schematron/qrda/cat_3_r2_1/HL7 QRDA Category III STU 2.1.sch +678 -0
  72. data/lib/schematron/qrda/cat_3_r2_1/voc.xml +1186 -0
  73. data/lib/schematron_validator.rb +38 -0
  74. data/lib/validation_error.rb +10 -0
  75. data/lib/validators.rb +136 -0
  76. metadata +177 -0
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <xs:schema xmlns:mif="urn:hl7-org:v3/mif" xmlns:xs="http://www.w3.org/2001/XMLSchema"
3
+ xmlns:v3="urn:hl7-org:v3"
4
+ xmlns:ex="urn:hl7-org/v3-example"
5
+ elementFormDefault="qualified">
6
+ <xs:annotation xmlns="urn:hl7-org:v3">
7
+ <xs:documentation>Source Information
8
+ Rendered by: RoseTree 4.2.29
9
+ Rendered on: 2009-02-27T20:57:01
10
+ This model was rendered into XML using software provided to HL7 by Beeler Consulting LLC.
11
+ Transform: $RCSfile: RoseTreeRimToMIFStaticModel.xsl,v $ $Revision: 1.8 $ $Date: 2007/10/19 05:55:13 $
12
+ Generated using schema builder version: 3.2.1
13
+ RIM MIF Infrastructure Root to Schema Transform: $Id: RimInfrastructureRootToXsd.xsl 7572 2009-03-11 01:56:29Z lmckenzi $
14
+ Static MIF to Schema Transform: $Id: StaticMifToXsd.xsl 7598 2009-03-16 19:52:42Z wbeeler $
15
+ Package Id Conversion: $Id: TransformPackageIds.xsl 7375 2009-01-26 19:26:53Z wbeeler $</xs:documentation>
16
+ </xs:annotation>
17
+ <xs:include schemaLocation="../coreschemas/voc.xsd"/>
18
+ <xs:include schemaLocation="../coreschemas/datatypes.xsd"/>
19
+ <xs:group name="InfrastructureRootElements">
20
+ <xs:sequence>
21
+ <xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded"/>
22
+ <xs:element name="typeId" type="II" minOccurs="0" maxOccurs="1"/>
23
+ <xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded"/>
24
+ </xs:sequence>
25
+ </xs:group>
26
+ <xs:attributeGroup name="InfrastructureRootAttributes"/>
27
+ </xs:schema>
@@ -0,0 +1,2124 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mif="urn:hl7-org:v3/mif">
3
+ <xs:annotation>
4
+ <xs:documentation> $Id: Vocabulary.xml,v 1.1 2005/08/25 11:33:46 mcraig Exp $
5
+ RoseTree XML to Schema: $Id: VocabXMLtoXSD.xsl,v 1.6 2005/05/24 00:14:18 lmckenzi Exp $</xs:documentation>
6
+ </xs:annotation>
7
+ <xs:include schemaLocation="datatypes.xsd"/>
8
+ <xs:simpleType name="Classes">
9
+ <xs:restriction base="cs"/>
10
+ </xs:simpleType>
11
+ <xs:annotation>
12
+ <xs:documentation>The following types are used internally in data types</xs:documentation>
13
+ </xs:annotation>
14
+ <xs:simpleType name="AddressPartType">
15
+ <xs:annotation>
16
+ <xs:documentation>vocSet: D10642 (C-0-D10642-cpt)</xs:documentation>
17
+ </xs:annotation>
18
+ <xs:union memberTypes="AdditionalLocator DeliveryAddressLine StreetAddressLine">
19
+ <xs:simpleType>
20
+ <xs:restriction base="cs">
21
+ <xs:enumeration value="CAR"/>
22
+ <xs:enumeration value="CEN"/>
23
+ <xs:enumeration value="CNT"/>
24
+ <xs:enumeration value="CPA"/>
25
+ <xs:enumeration value="CTY"/>
26
+ <xs:enumeration value="DEL"/>
27
+ <xs:enumeration value="POB"/>
28
+ <xs:enumeration value="PRE"/>
29
+ <xs:enumeration value="STA"/>
30
+ <xs:enumeration value="ZIP"/>
31
+ </xs:restriction>
32
+ </xs:simpleType>
33
+ </xs:union>
34
+ </xs:simpleType>
35
+ <xs:simpleType name="AdditionalLocator">
36
+ <xs:annotation>
37
+ <xs:documentation>specDomain: V10651 (C-0-D10642-V10651-cpt)</xs:documentation>
38
+ </xs:annotation>
39
+ <xs:restriction base="cs">
40
+ <xs:enumeration value="ADL"/>
41
+ <xs:enumeration value="UNID"/>
42
+ <xs:enumeration value="UNIT"/>
43
+ </xs:restriction>
44
+ </xs:simpleType>
45
+ <xs:simpleType name="DeliveryAddressLine">
46
+ <xs:annotation>
47
+ <xs:documentation>specDomain: V17887 (C-0-D10642-V17887-cpt)</xs:documentation>
48
+ </xs:annotation>
49
+ <xs:restriction base="cs">
50
+ <xs:enumeration value="DAL"/>
51
+ <xs:enumeration value="DINST"/>
52
+ <xs:enumeration value="DINSTA"/>
53
+ <xs:enumeration value="DINSTQ"/>
54
+ <xs:enumeration value="DMOD"/>
55
+ <xs:enumeration value="DMODID"/>
56
+ </xs:restriction>
57
+ </xs:simpleType>
58
+ <xs:simpleType name="StreetAddressLine">
59
+ <xs:annotation>
60
+ <xs:documentation>specDomain: V14822 (C-0-D10642-V14822-cpt)</xs:documentation>
61
+ </xs:annotation>
62
+ <xs:union memberTypes="BuildingNumber StreetName">
63
+ <xs:simpleType>
64
+ <xs:restriction base="cs">
65
+ <xs:enumeration value="SAL"/>
66
+ <xs:enumeration value="DIR"/>
67
+ </xs:restriction>
68
+ </xs:simpleType>
69
+ </xs:union>
70
+ </xs:simpleType>
71
+ <xs:simpleType name="BuildingNumber">
72
+ <xs:annotation>
73
+ <xs:documentation>specDomain: V10649 (C-0-D10642-V14822-V10649-cpt)</xs:documentation>
74
+ </xs:annotation>
75
+ <xs:restriction base="cs">
76
+ <xs:enumeration value="BNR"/>
77
+ <xs:enumeration value="BNN"/>
78
+ <xs:enumeration value="BNS"/>
79
+ </xs:restriction>
80
+ </xs:simpleType>
81
+ <xs:simpleType name="StreetName">
82
+ <xs:annotation>
83
+ <xs:documentation>specDomain: V10648 (C-0-D10642-V14822-V10648-cpt)</xs:documentation>
84
+ </xs:annotation>
85
+ <xs:restriction base="cs">
86
+ <xs:enumeration value="STR"/>
87
+ <xs:enumeration value="STB"/>
88
+ <xs:enumeration value="STTYP"/>
89
+ </xs:restriction>
90
+ </xs:simpleType>
91
+ <xs:simpleType name="CalendarCycle">
92
+ <xs:annotation>
93
+ <xs:documentation>vocSet: D10684 (C-0-D10684-cpt)</xs:documentation>
94
+ </xs:annotation>
95
+ <xs:union memberTypes="CalendarCycleOneLetter CalendarCycleTwoLetter"/>
96
+ </xs:simpleType>
97
+ <xs:simpleType name="CalendarCycleOneLetter">
98
+ <xs:annotation>
99
+ <xs:documentation>abstDomain: V10701 (C-0-D10684-V10701-cpt)</xs:documentation>
100
+ </xs:annotation>
101
+ <xs:restriction base="cs">
102
+ <xs:enumeration value="D"/>
103
+ <xs:enumeration value="H"/>
104
+ <xs:enumeration value="J"/>
105
+ <xs:enumeration value="M"/>
106
+ <xs:enumeration value="N"/>
107
+ <xs:enumeration value="S"/>
108
+ <xs:enumeration value="W"/>
109
+ <xs:enumeration value="Y"/>
110
+ </xs:restriction>
111
+ </xs:simpleType>
112
+ <xs:simpleType name="CalendarCycleTwoLetter">
113
+ <xs:annotation>
114
+ <xs:documentation>abstDomain: V10685 (C-0-D10684-V10685-cpt)</xs:documentation>
115
+ </xs:annotation>
116
+ <xs:union memberTypes="GregorianCalendarCycle">
117
+ <xs:simpleType>
118
+ <xs:restriction base="cs">
119
+ <xs:enumeration value="CD"/>
120
+ <xs:enumeration value="CH"/>
121
+ <xs:enumeration value="CM"/>
122
+ <xs:enumeration value="CN"/>
123
+ <xs:enumeration value="CS"/>
124
+ <xs:enumeration value="CW"/>
125
+ <xs:enumeration value="CY"/>
126
+ <xs:enumeration value="DM"/>
127
+ <xs:enumeration value="DW"/>
128
+ <xs:enumeration value="DY"/>
129
+ <xs:enumeration value="HD"/>
130
+ <xs:enumeration value="MY"/>
131
+ <xs:enumeration value="NH"/>
132
+ <xs:enumeration value="SN"/>
133
+ <xs:enumeration value="WY"/>
134
+ </xs:restriction>
135
+ </xs:simpleType>
136
+ </xs:union>
137
+ </xs:simpleType>
138
+ <xs:simpleType name="GregorianCalendarCycle">
139
+ <xs:annotation>
140
+ <xs:documentation>abstDomain: V10758 (C-0-D10684-V10685-V10758-cpt)</xs:documentation>
141
+ </xs:annotation>
142
+ <xs:restriction base="cs"/>
143
+ </xs:simpleType>
144
+ <xs:simpleType name="CompressionAlgorithm">
145
+ <xs:annotation>
146
+ <xs:documentation>vocSet: D10620 (C-0-D10620-cpt)</xs:documentation>
147
+ </xs:annotation>
148
+ <xs:restriction base="cs">
149
+ <xs:enumeration value="DF"/>
150
+ <xs:enumeration value="GZ"/>
151
+ <xs:enumeration value="Z"/>
152
+ <xs:enumeration value="ZL"/>
153
+ </xs:restriction>
154
+ </xs:simpleType>
155
+ <xs:simpleType name="Currency">
156
+ <xs:annotation>
157
+ <xs:documentation>vocSet: D17388 (C-0-D17388-cpt)</xs:documentation>
158
+ </xs:annotation>
159
+ <xs:restriction base="cs">
160
+ <xs:enumeration value="ARS"/>
161
+ <xs:enumeration value="AUD"/>
162
+ <xs:enumeration value="BRL"/>
163
+ <xs:enumeration value="CAD"/>
164
+ <xs:enumeration value="CHF"/>
165
+ <xs:enumeration value="CLF"/>
166
+ <xs:enumeration value="CNY"/>
167
+ <xs:enumeration value="DEM"/>
168
+ <xs:enumeration value="ESP"/>
169
+ <xs:enumeration value="EUR"/>
170
+ <xs:enumeration value="FIM"/>
171
+ <xs:enumeration value="FRF"/>
172
+ <xs:enumeration value="GBP"/>
173
+ <xs:enumeration value="ILS"/>
174
+ <xs:enumeration value="INR"/>
175
+ <xs:enumeration value="JPY"/>
176
+ <xs:enumeration value="KRW"/>
177
+ <xs:enumeration value="MXN"/>
178
+ <xs:enumeration value="NLG"/>
179
+ <xs:enumeration value="NZD"/>
180
+ <xs:enumeration value="PHP"/>
181
+ <xs:enumeration value="RUR"/>
182
+ <xs:enumeration value="THB"/>
183
+ <xs:enumeration value="TRL"/>
184
+ <xs:enumeration value="TWD"/>
185
+ <xs:enumeration value="USD"/>
186
+ <xs:enumeration value="ZAR"/>
187
+ </xs:restriction>
188
+ </xs:simpleType>
189
+ <xs:simpleType name="EntityNamePartQualifier">
190
+ <xs:annotation>
191
+ <xs:documentation>vocSet: D15888 (C-0-D15888-cpt)</xs:documentation>
192
+ </xs:annotation>
193
+ <xs:union memberTypes="OrganizationNamePartQualifier PersonNamePartQualifier"/>
194
+ </xs:simpleType>
195
+ <xs:simpleType name="OrganizationNamePartQualifier">
196
+ <xs:annotation>
197
+ <xs:documentation>abstDomain: V15889 (C-0-D15888-V15889-cpt)</xs:documentation>
198
+ </xs:annotation>
199
+ <xs:restriction base="cs">
200
+ <xs:enumeration value="LS"/>
201
+ </xs:restriction>
202
+ </xs:simpleType>
203
+ <xs:simpleType name="PersonNamePartQualifier">
204
+ <xs:annotation>
205
+ <xs:documentation>abstDomain: V10659 (C-0-D15888-V10659-cpt)</xs:documentation>
206
+ </xs:annotation>
207
+ <xs:union memberTypes="PersonNamePartAffixTypes PersonNamePartChangeQualifier PersonNamePartMiscQualifier">
208
+ <xs:simpleType>
209
+ <xs:restriction base="cs">
210
+ <xs:enumeration value="IN"/>
211
+ <xs:enumeration value="TITLE"/>
212
+ </xs:restriction>
213
+ </xs:simpleType>
214
+ </xs:union>
215
+ </xs:simpleType>
216
+ <xs:simpleType name="PersonNamePartAffixTypes">
217
+ <xs:annotation>
218
+ <xs:documentation>abstDomain: V10666 (C-0-D15888-V10659-V10666-cpt)</xs:documentation>
219
+ </xs:annotation>
220
+ <xs:restriction base="cs">
221
+ <xs:enumeration value="AC"/>
222
+ <xs:enumeration value="NB"/>
223
+ <xs:enumeration value="PR"/>
224
+ <xs:enumeration value="VV"/>
225
+ </xs:restriction>
226
+ </xs:simpleType>
227
+ <xs:simpleType name="PersonNamePartChangeQualifier">
228
+ <xs:annotation>
229
+ <xs:documentation>abstDomain: V10660 (C-0-D15888-V10659-V10660-cpt)</xs:documentation>
230
+ </xs:annotation>
231
+ <xs:restriction base="cs">
232
+ <xs:enumeration value="AD"/>
233
+ <xs:enumeration value="BR"/>
234
+ <xs:enumeration value="SP"/>
235
+ </xs:restriction>
236
+ </xs:simpleType>
237
+ <xs:simpleType name="PersonNamePartMiscQualifier">
238
+ <xs:annotation>
239
+ <xs:documentation>abstDomain: V10671 (C-0-D15888-V10659-V10671-cpt)</xs:documentation>
240
+ </xs:annotation>
241
+ <xs:restriction base="cs">
242
+ <xs:enumeration value="CL"/>
243
+ </xs:restriction>
244
+ </xs:simpleType>
245
+ <xs:simpleType name="EntityNamePartType">
246
+ <xs:annotation>
247
+ <xs:documentation>vocSet: D15880 (C-0-D15880-cpt)</xs:documentation>
248
+ </xs:annotation>
249
+ <xs:union memberTypes="x_OrganizationNamePartType x_PersonNamePartType">
250
+ <xs:simpleType>
251
+ <xs:restriction base="cs">
252
+ <xs:enumeration value="DEL"/>
253
+ <xs:enumeration value="FAM"/>
254
+ <xs:enumeration value="GIV"/>
255
+ <xs:enumeration value="PFX"/>
256
+ <xs:enumeration value="SFX"/>
257
+ </xs:restriction>
258
+ </xs:simpleType>
259
+ </xs:union>
260
+ </xs:simpleType>
261
+ <xs:simpleType name="x_OrganizationNamePartType">
262
+ <xs:annotation>
263
+ <xs:documentation>abstDomain: V15881 (C-0-D15880-V15881-cpt)</xs:documentation>
264
+ </xs:annotation>
265
+ <xs:restriction base="cs">
266
+ <xs:enumeration value="DEL"/>
267
+ <xs:enumeration value="PFX"/>
268
+ <xs:enumeration value="SFX"/>
269
+ </xs:restriction>
270
+ </xs:simpleType>
271
+ <xs:simpleType name="x_PersonNamePartType">
272
+ <xs:annotation>
273
+ <xs:documentation>abstDomain: V10653 (C-0-D15880-V10653-cpt)</xs:documentation>
274
+ </xs:annotation>
275
+ <xs:restriction base="cs">
276
+ <xs:enumeration value="DEL"/>
277
+ <xs:enumeration value="FAM"/>
278
+ <xs:enumeration value="GIV"/>
279
+ <xs:enumeration value="PFX"/>
280
+ <xs:enumeration value="SFX"/>
281
+ </xs:restriction>
282
+ </xs:simpleType>
283
+ <xs:simpleType name="EntityNameUse">
284
+ <xs:annotation>
285
+ <xs:documentation>vocSet: D15913 (C-0-D15913-cpt)</xs:documentation>
286
+ </xs:annotation>
287
+ <xs:union memberTypes="EntityNameSearchUse NameRepresentationUse OrganizationNameUse PersonNameUse">
288
+ <xs:simpleType>
289
+ <xs:restriction base="cs">
290
+ <xs:enumeration value="C"/>
291
+ </xs:restriction>
292
+ </xs:simpleType>
293
+ </xs:union>
294
+ </xs:simpleType>
295
+ <xs:simpleType name="OrganizationNameUse">
296
+ <xs:annotation>
297
+ <xs:documentation>abstDomain: V15914 (C-0-D15913-V15914-cpt)</xs:documentation>
298
+ </xs:annotation>
299
+ <xs:union memberTypes="EntityNameSearchUse NameRepresentationUse">
300
+ <xs:simpleType>
301
+ <xs:restriction base="cs">
302
+ <xs:enumeration value="C"/>
303
+ <xs:enumeration value="L"/>
304
+ </xs:restriction>
305
+ </xs:simpleType>
306
+ </xs:union>
307
+ </xs:simpleType>
308
+ <xs:simpleType name="PersonNameUse">
309
+ <xs:annotation>
310
+ <xs:documentation>abstDomain: V200 (C-0-D15913-V200-cpt)</xs:documentation>
311
+ </xs:annotation>
312
+ <xs:union memberTypes="EntityNameSearchUse NamePseudonymUse NameRepresentationUse">
313
+ <xs:simpleType>
314
+ <xs:restriction base="cs">
315
+ <xs:enumeration value="A"/>
316
+ <xs:enumeration value="ASGN"/>
317
+ <xs:enumeration value="C"/>
318
+ <xs:enumeration value="I"/>
319
+ <xs:enumeration value="L"/>
320
+ <xs:enumeration value="R"/>
321
+ </xs:restriction>
322
+ </xs:simpleType>
323
+ </xs:union>
324
+ </xs:simpleType>
325
+ <xs:simpleType name="EntityNameSearchUse">
326
+ <xs:annotation>
327
+ <xs:documentation>specDomain: V19619 (C-0-D15913-V200-V19619-cpt)</xs:documentation>
328
+ </xs:annotation>
329
+ <xs:restriction base="cs">
330
+ <xs:enumeration value="SRCH"/>
331
+ <xs:enumeration value="PHON"/>
332
+ <xs:enumeration value="SNDX"/>
333
+ </xs:restriction>
334
+ </xs:simpleType>
335
+ <xs:simpleType name="NamePseudonymUse">
336
+ <xs:annotation>
337
+ <xs:documentation>specDomain: V19591 (C-0-D15913-V200-V19591-cpt)</xs:documentation>
338
+ </xs:annotation>
339
+ <xs:restriction base="cs">
340
+ <xs:enumeration value="P"/>
341
+ <xs:enumeration value="A"/>
342
+ </xs:restriction>
343
+ </xs:simpleType>
344
+ <xs:simpleType name="IntegrityCheckAlgorithm">
345
+ <xs:annotation>
346
+ <xs:documentation>vocSet: D17385 (C-0-D17385-cpt)</xs:documentation>
347
+ </xs:annotation>
348
+ <xs:restriction base="cs">
349
+ <xs:enumeration value="SHA-1"/>
350
+ <xs:enumeration value="SHA-256"/>
351
+ </xs:restriction>
352
+ </xs:simpleType>
353
+ <xs:simpleType name="MediaType">
354
+ <xs:annotation>
355
+ <xs:documentation>vocSet: D14824 (C-0-D14824-cpt)</xs:documentation>
356
+ </xs:annotation>
357
+ <xs:union memberTypes="ApplicationMediaType AudioMediaType ImageMediaType ModelMediaType MultipartMediaType TextMediaType VideoMediaType"/>
358
+ </xs:simpleType>
359
+ <xs:simpleType name="ApplicationMediaType">
360
+ <xs:annotation>
361
+ <xs:documentation>abstDomain: V14832 (C-0-D14824-V14832-cpt)</xs:documentation>
362
+ </xs:annotation>
363
+ <xs:restriction base="cs">
364
+ <xs:enumeration value="application/dicom"/>
365
+ <xs:enumeration value="application/msword"/>
366
+ <xs:enumeration value="application/pdf"/>
367
+ </xs:restriction>
368
+ </xs:simpleType>
369
+ <xs:simpleType name="AudioMediaType">
370
+ <xs:annotation>
371
+ <xs:documentation>abstDomain: V14835 (C-0-D14824-V14835-cpt)</xs:documentation>
372
+ </xs:annotation>
373
+ <xs:restriction base="cs">
374
+ <xs:enumeration value="audio/basic"/>
375
+ <xs:enumeration value="audio/k32adpcm"/>
376
+ <xs:enumeration value="audio/mpeg"/>
377
+ </xs:restriction>
378
+ </xs:simpleType>
379
+ <xs:simpleType name="ImageMediaType">
380
+ <xs:annotation>
381
+ <xs:documentation>abstDomain: V14839 (C-0-D14824-V14839-cpt)</xs:documentation>
382
+ </xs:annotation>
383
+ <xs:restriction base="cs">
384
+ <xs:enumeration value="image/g3fax"/>
385
+ <xs:enumeration value="image/gif"/>
386
+ <xs:enumeration value="image/jpeg"/>
387
+ <xs:enumeration value="image/png"/>
388
+ <xs:enumeration value="image/tiff"/>
389
+ </xs:restriction>
390
+ </xs:simpleType>
391
+ <xs:simpleType name="ModelMediaType">
392
+ <xs:annotation>
393
+ <xs:documentation>abstDomain: V14848 (C-0-D14824-V14848-cpt)</xs:documentation>
394
+ </xs:annotation>
395
+ <xs:restriction base="cs">
396
+ <xs:enumeration value="model/vrml"/>
397
+ </xs:restriction>
398
+ </xs:simpleType>
399
+ <xs:simpleType name="MultipartMediaType">
400
+ <xs:annotation>
401
+ <xs:documentation>abstDomain: V14850 (C-0-D14824-V14850-cpt)</xs:documentation>
402
+ </xs:annotation>
403
+ <xs:restriction base="cs">
404
+ <xs:enumeration value="multipart/x-hl7-cda-level1"/>
405
+ </xs:restriction>
406
+ </xs:simpleType>
407
+ <xs:simpleType name="TextMediaType">
408
+ <xs:annotation>
409
+ <xs:documentation>abstDomain: V14825 (C-0-D14824-V14825-cpt)</xs:documentation>
410
+ </xs:annotation>
411
+ <xs:restriction base="cs">
412
+ <xs:enumeration value="text/html"/>
413
+ <xs:enumeration value="text/plain"/>
414
+ <xs:enumeration value="text/rtf"/>
415
+ <xs:enumeration value="text/sgml"/>
416
+ <xs:enumeration value="text/x-hl7-ft"/>
417
+ <xs:enumeration value="text/xml"/>
418
+ </xs:restriction>
419
+ </xs:simpleType>
420
+ <xs:simpleType name="VideoMediaType">
421
+ <xs:annotation>
422
+ <xs:documentation>abstDomain: V14845 (C-0-D14824-V14845-cpt)</xs:documentation>
423
+ </xs:annotation>
424
+ <xs:restriction base="cs">
425
+ <xs:enumeration value="video/mpeg"/>
426
+ <xs:enumeration value="video/x-avi"/>
427
+ </xs:restriction>
428
+ </xs:simpleType>
429
+ <xs:simpleType name="PostalAddressUse">
430
+ <xs:annotation>
431
+ <xs:documentation>vocSet: D10637 (C-0-D10637-cpt)</xs:documentation>
432
+ </xs:annotation>
433
+ <xs:union memberTypes="AddressUse NameRepresentationUse">
434
+ <xs:simpleType>
435
+ <xs:restriction base="cs">
436
+ <xs:enumeration value="PHYS"/>
437
+ <xs:enumeration value="PST"/>
438
+ </xs:restriction>
439
+ </xs:simpleType>
440
+ </xs:union>
441
+ </xs:simpleType>
442
+ <xs:simpleType name="NameRepresentationUse">
443
+ <xs:annotation>
444
+ <xs:documentation>abstDomain: V17860 (C-0-D10637-V17860-cpt)</xs:documentation>
445
+ </xs:annotation>
446
+ <xs:restriction base="cs">
447
+ <xs:enumeration value="ABC"/>
448
+ <xs:enumeration value="IDE"/>
449
+ <xs:enumeration value="SYL"/>
450
+ </xs:restriction>
451
+ </xs:simpleType>
452
+ <xs:simpleType name="ProbabilityDistributionType">
453
+ <xs:annotation>
454
+ <xs:documentation>vocSet: D10747 (C-0-D10747-cpt)</xs:documentation>
455
+ </xs:annotation>
456
+ <xs:restriction base="cs">
457
+ <xs:enumeration value="B"/>
458
+ <xs:enumeration value="E"/>
459
+ <xs:enumeration value="F"/>
460
+ <xs:enumeration value="G"/>
461
+ <xs:enumeration value="LN"/>
462
+ <xs:enumeration value="N"/>
463
+ <xs:enumeration value="T"/>
464
+ <xs:enumeration value="U"/>
465
+ <xs:enumeration value="X2"/>
466
+ </xs:restriction>
467
+ </xs:simpleType>
468
+ <xs:simpleType name="SetOperator">
469
+ <xs:annotation>
470
+ <xs:documentation>vocSet: D17416 (C-0-D17416-cpt)</xs:documentation>
471
+ </xs:annotation>
472
+ <xs:restriction base="cs">
473
+ <xs:enumeration value="A"/>
474
+ <xs:enumeration value="E"/>
475
+ <xs:enumeration value="H"/>
476
+ <xs:enumeration value="I"/>
477
+ <xs:enumeration value="P"/>
478
+ </xs:restriction>
479
+ </xs:simpleType>
480
+ <xs:simpleType name="TelecommunicationAddressUse">
481
+ <xs:annotation>
482
+ <xs:documentation>vocSet: D201 (C-0-D201-cpt)</xs:documentation>
483
+ </xs:annotation>
484
+ <xs:union memberTypes="AddressUse">
485
+ <xs:simpleType>
486
+ <xs:restriction base="cs">
487
+ <xs:enumeration value="AS"/>
488
+ <xs:enumeration value="EC"/>
489
+ <xs:enumeration value="MC"/>
490
+ <xs:enumeration value="PG"/>
491
+ </xs:restriction>
492
+ </xs:simpleType>
493
+ </xs:union>
494
+ </xs:simpleType>
495
+ <xs:simpleType name="AddressUse">
496
+ <xs:annotation>
497
+ <xs:documentation>abstDomain: V190 (C-0-D201-V190-cpt)</xs:documentation>
498
+ </xs:annotation>
499
+ <xs:union memberTypes="HomeAddressUse WorkPlaceAddressUse">
500
+ <xs:simpleType>
501
+ <xs:restriction base="cs">
502
+ <xs:enumeration value="BAD"/>
503
+ <xs:enumeration value="TMP"/>
504
+ </xs:restriction>
505
+ </xs:simpleType>
506
+ </xs:union>
507
+ </xs:simpleType>
508
+ <xs:simpleType name="HomeAddressUse">
509
+ <xs:annotation>
510
+ <xs:documentation>specDomain: V10628 (C-0-D201-V190-V10628-cpt)</xs:documentation>
511
+ </xs:annotation>
512
+ <xs:restriction base="cs">
513
+ <xs:enumeration value="H"/>
514
+ <xs:enumeration value="HP"/>
515
+ <xs:enumeration value="HV"/>
516
+ </xs:restriction>
517
+ </xs:simpleType>
518
+ <xs:simpleType name="WorkPlaceAddressUse">
519
+ <xs:annotation>
520
+ <xs:documentation>specDomain: V19613 (C-0-D201-V190-V19613-cpt)</xs:documentation>
521
+ </xs:annotation>
522
+ <xs:restriction base="cs">
523
+ <xs:enumeration value="WP"/>
524
+ <xs:enumeration value="DIR"/>
525
+ <xs:enumeration value="PUB"/>
526
+ </xs:restriction>
527
+ </xs:simpleType>
528
+ <xs:simpleType name="TimingEvent">
529
+ <xs:annotation>
530
+ <xs:documentation>vocSet: D10706 (C-0-D10706-cpt)</xs:documentation>
531
+ </xs:annotation>
532
+ <xs:restriction base="cs">
533
+ <xs:enumeration value="AC"/>
534
+ <xs:enumeration value="ACD"/>
535
+ <xs:enumeration value="ACM"/>
536
+ <xs:enumeration value="ACV"/>
537
+ <xs:enumeration value="HS"/>
538
+ <xs:enumeration value="IC"/>
539
+ <xs:enumeration value="ICD"/>
540
+ <xs:enumeration value="ICM"/>
541
+ <xs:enumeration value="ICV"/>
542
+ <xs:enumeration value="PC"/>
543
+ <xs:enumeration value="PCD"/>
544
+ <xs:enumeration value="PCM"/>
545
+ <xs:enumeration value="PCV"/>
546
+ </xs:restriction>
547
+ </xs:simpleType>
548
+ <xs:simpleType name="URLScheme">
549
+ <xs:annotation>
550
+ <xs:documentation>vocSet: D14866 (C-0-D14866-cpt)</xs:documentation>
551
+ </xs:annotation>
552
+ <xs:restriction base="cs">
553
+ <xs:enumeration value="fax"/>
554
+ <xs:enumeration value="file"/>
555
+ <xs:enumeration value="ftp"/>
556
+ <xs:enumeration value="http"/>
557
+ <xs:enumeration value="mailto"/>
558
+ <xs:enumeration value="mllp"/>
559
+ <xs:enumeration value="modem"/>
560
+ <xs:enumeration value="nfs"/>
561
+ <xs:enumeration value="tel"/>
562
+ <xs:enumeration value="telnet"/>
563
+ </xs:restriction>
564
+ </xs:simpleType>
565
+ <xs:annotation>
566
+ <xs:documentation>The following types are used for structural RIM attributes</xs:documentation>
567
+ </xs:annotation>
568
+ <xs:simpleType name="ActClass">
569
+ <xs:annotation>
570
+ <xs:documentation>vocSet: D11527 (C-0-D11527-cpt)</xs:documentation>
571
+ </xs:annotation>
572
+ <xs:union memberTypes="ActClassRoot"/>
573
+ </xs:simpleType>
574
+ <xs:simpleType name="ActClassRoot">
575
+ <xs:annotation>
576
+ <xs:documentation>specDomain: V13856 (C-0-D11527-V13856-cpt)</xs:documentation>
577
+ </xs:annotation>
578
+ <xs:union memberTypes="ActClassContract ActClassControlAct ActClassObservation ActClassSupply ActContainer x_ActClassDocumentEntryAct x_ActClassDocumentEntryOrganizer">
579
+ <xs:simpleType>
580
+ <xs:restriction base="cs">
581
+ <xs:enumeration value="ACT"/>
582
+ <xs:enumeration value="ACCM"/>
583
+ <xs:enumeration value="ACCT"/>
584
+ <xs:enumeration value="ACSN"/>
585
+ <xs:enumeration value="ADJUD"/>
586
+ <xs:enumeration value="CONS"/>
587
+ <xs:enumeration value="CONTREG"/>
588
+ <xs:enumeration value="CTTEVENT"/>
589
+ <xs:enumeration value="DISPACT"/>
590
+ <xs:enumeration value="ENC"/>
591
+ <xs:enumeration value="INC"/>
592
+ <xs:enumeration value="INFRM"/>
593
+ <xs:enumeration value="INVE"/>
594
+ <xs:enumeration value="LIST"/>
595
+ <xs:enumeration value="MPROT"/>
596
+ <xs:enumeration value="PCPR"/>
597
+ <xs:enumeration value="PROC"/>
598
+ <xs:enumeration value="REG"/>
599
+ <xs:enumeration value="REV"/>
600
+ <xs:enumeration value="SBADM"/>
601
+ <xs:enumeration value="SPCTRT"/>
602
+ <xs:enumeration value="SUBST"/>
603
+ <xs:enumeration value="TRNS"/>
604
+ <xs:enumeration value="VERIF"/>
605
+ <xs:enumeration value="XACT"/>
606
+ </xs:restriction>
607
+ </xs:simpleType>
608
+ </xs:union>
609
+ </xs:simpleType>
610
+ <xs:simpleType name="ActClassContract">
611
+ <xs:annotation>
612
+ <xs:documentation>specDomain: V14002 (C-0-D11527-V13856-V14002-cpt)</xs:documentation>
613
+ </xs:annotation>
614
+ <xs:union memberTypes="ActClassFinancialContract">
615
+ <xs:simpleType>
616
+ <xs:restriction base="cs">
617
+ <xs:enumeration value="CNTRCT"/>
618
+ </xs:restriction>
619
+ </xs:simpleType>
620
+ </xs:union>
621
+ </xs:simpleType>
622
+ <xs:simpleType name="ActClassFinancialContract">
623
+ <xs:annotation>
624
+ <xs:documentation>specDomain: V14003 (C-0-D11527-V13856-V14002-V14003-cpt)</xs:documentation>
625
+ </xs:annotation>
626
+ <xs:restriction base="cs">
627
+ <xs:enumeration value="FCNTRCT"/>
628
+ <xs:enumeration value="COV"/>
629
+ </xs:restriction>
630
+ </xs:simpleType>
631
+ <xs:simpleType name="ActClassControlAct">
632
+ <xs:annotation>
633
+ <xs:documentation>specDomain: V11534 (C-0-D11527-V13856-V11534-cpt)</xs:documentation>
634
+ </xs:annotation>
635
+ <xs:restriction base="cs">
636
+ <xs:enumeration value="CACT"/>
637
+ <xs:enumeration value="ACTN"/>
638
+ <xs:enumeration value="INFO"/>
639
+ <xs:enumeration value="STC"/>
640
+ </xs:restriction>
641
+ </xs:simpleType>
642
+ <xs:simpleType name="ActClassObservation">
643
+ <xs:annotation>
644
+ <xs:documentation>specDomain: V11529 (C-0-D11527-V13856-V11529-cpt)</xs:documentation>
645
+ </xs:annotation>
646
+ <xs:union memberTypes="ActClassCondition ActClassObservationSeries ActClassROI">
647
+ <xs:simpleType>
648
+ <xs:restriction base="cs">
649
+ <xs:enumeration value="OBS"/>
650
+ <xs:enumeration value="ALRT"/>
651
+ <xs:enumeration value="CLNTRL"/>
652
+ <xs:enumeration value="CNOD"/>
653
+ <xs:enumeration value="DGIMG"/>
654
+ <xs:enumeration value="INVSTG"/>
655
+ <xs:enumeration value="SPCOBS"/>
656
+ </xs:restriction>
657
+ </xs:simpleType>
658
+ </xs:union>
659
+ </xs:simpleType>
660
+ <xs:simpleType name="ActClassCondition">
661
+ <xs:annotation>
662
+ <xs:documentation>specDomain: V19580 (C-0-D11527-V13856-V11529-V19580-cpt)</xs:documentation>
663
+ </xs:annotation>
664
+ <xs:union memberTypes="ActClassPublicHealthCase">
665
+ <xs:simpleType>
666
+ <xs:restriction base="cs">
667
+ <xs:enumeration value="COND"/>
668
+ </xs:restriction>
669
+ </xs:simpleType>
670
+ </xs:union>
671
+ </xs:simpleType>
672
+ <xs:simpleType name="ActClassPublicHealthCase">
673
+ <xs:annotation>
674
+ <xs:documentation>specDomain: V11530 (C-0-D11527-V13856-V11529-V19580-V11530-cpt)</xs:documentation>
675
+ </xs:annotation>
676
+ <xs:restriction base="cs">
677
+ <xs:enumeration value="CASE"/>
678
+ <xs:enumeration value="OUTB"/>
679
+ </xs:restriction>
680
+ </xs:simpleType>
681
+ <xs:simpleType name="ActClassObservationSeries">
682
+ <xs:annotation>
683
+ <xs:documentation>specDomain: V18875 (C-0-D11527-V13856-V11529-V18875-cpt)</xs:documentation>
684
+ </xs:annotation>
685
+ <xs:restriction base="cs">
686
+ <xs:enumeration value="OBSSER"/>
687
+ <xs:enumeration value="OBSCOR"/>
688
+ </xs:restriction>
689
+ </xs:simpleType>
690
+ <xs:simpleType name="ActClassROI">
691
+ <xs:annotation>
692
+ <xs:documentation>abstDomain: V17893 (C-0-D11527-V13856-V11529-V17893-cpt)</xs:documentation>
693
+ </xs:annotation>
694
+ <xs:restriction base="cs">
695
+ <xs:enumeration value="ROIBND"/>
696
+ <xs:enumeration value="ROIOVL"/>
697
+ </xs:restriction>
698
+ </xs:simpleType>
699
+ <xs:simpleType name="ActClassSupply">
700
+ <xs:annotation>
701
+ <xs:documentation>specDomain: V11535 (C-0-D11527-V13856-V11535-cpt)</xs:documentation>
702
+ </xs:annotation>
703
+ <xs:restriction base="cs">
704
+ <xs:enumeration value="SPLY"/>
705
+ <xs:enumeration value="DIET"/>
706
+ </xs:restriction>
707
+ </xs:simpleType>
708
+ <xs:simpleType name="ActContainer">
709
+ <xs:annotation>
710
+ <xs:documentation>abstDomain: V19445 (C-0-D11527-V13856-V19445-cpt)</xs:documentation>
711
+ </xs:annotation>
712
+ <xs:union memberTypes="ActClassComposition ActClassEntry ActClassExtract ActClassOrganizer">
713
+ <xs:simpleType>
714
+ <xs:restriction base="cs">
715
+ <xs:enumeration value="FOLDER"/>
716
+ </xs:restriction>
717
+ </xs:simpleType>
718
+ </xs:union>
719
+ </xs:simpleType>
720
+ <xs:simpleType name="ActClassComposition">
721
+ <xs:annotation>
722
+ <xs:documentation>specDomain: V19442 (C-0-D11527-V13856-V19445-V19442-cpt)</xs:documentation>
723
+ </xs:annotation>
724
+ <xs:union memberTypes="ActClassDocument">
725
+ <xs:simpleType>
726
+ <xs:restriction base="cs">
727
+ <xs:enumeration value="COMPOSITION"/>
728
+ </xs:restriction>
729
+ </xs:simpleType>
730
+ </xs:union>
731
+ </xs:simpleType>
732
+ <xs:simpleType name="ActClassDocument">
733
+ <xs:annotation>
734
+ <xs:documentation>specDomain: V18938 (C-0-D11527-V13856-V19445-V19442-V18938-cpt)</xs:documentation>
735
+ </xs:annotation>
736
+ <xs:union memberTypes="ActClinicalDocument">
737
+ <xs:simpleType>
738
+ <xs:restriction base="cs">
739
+ <xs:enumeration value="DOC"/>
740
+ </xs:restriction>
741
+ </xs:simpleType>
742
+ </xs:union>
743
+ </xs:simpleType>
744
+ <xs:simpleType name="ActClinicalDocument">
745
+ <xs:annotation>
746
+ <xs:documentation>specDomain: V13948 (C-0-D11527-V13856-V19445-V19442-V18938-V13948-cpt)</xs:documentation>
747
+ </xs:annotation>
748
+ <xs:restriction base="cs">
749
+ <xs:enumeration value="DOCCLIN"/>
750
+ <xs:enumeration value="CDALVLONE"/>
751
+ </xs:restriction>
752
+ </xs:simpleType>
753
+ <xs:simpleType name="ActClassEntry">
754
+ <xs:annotation>
755
+ <xs:documentation>specDomain: V19444 (C-0-D11527-V13856-V19445-V19444-cpt)</xs:documentation>
756
+ </xs:annotation>
757
+ <xs:restriction base="cs">
758
+ <xs:enumeration value="ENTRY"/>
759
+ <xs:enumeration value="BATTERY"/>
760
+ <xs:enumeration value="CLUSTER"/>
761
+ </xs:restriction>
762
+ </xs:simpleType>
763
+ <xs:simpleType name="ActClassExtract">
764
+ <xs:annotation>
765
+ <xs:documentation>specDomain: V19441 (C-0-D11527-V13856-V19445-V19441-cpt)</xs:documentation>
766
+ </xs:annotation>
767
+ <xs:restriction base="cs">
768
+ <xs:enumeration value="EXTRACT"/>
769
+ <xs:enumeration value="EHR"/>
770
+ </xs:restriction>
771
+ </xs:simpleType>
772
+ <xs:simpleType name="ActClassOrganizer">
773
+ <xs:annotation>
774
+ <xs:documentation>specDomain: V19443 (C-0-D11527-V13856-V19445-V19443-cpt)</xs:documentation>
775
+ </xs:annotation>
776
+ <xs:restriction base="cs">
777
+ <xs:enumeration value="ORGANIZER"/>
778
+ <xs:enumeration value="CATEGORY"/>
779
+ <xs:enumeration value="DOCBODY"/>
780
+ <xs:enumeration value="DOCSECT"/>
781
+ <xs:enumeration value="TOPIC"/>
782
+ </xs:restriction>
783
+ </xs:simpleType>
784
+ <xs:simpleType name="x_ActClassDocumentEntryAct">
785
+ <xs:annotation>
786
+ <xs:documentation>abstDomain: V19604 (C-0-D11527-V13856-V19604-cpt)</xs:documentation>
787
+ </xs:annotation>
788
+ <xs:restriction base="cs">
789
+ <xs:enumeration value="ACT"/>
790
+ <xs:enumeration value="ACCM"/>
791
+ <xs:enumeration value="CONS"/>
792
+ <xs:enumeration value="CTTEVENT"/>
793
+ <xs:enumeration value="INC"/>
794
+ <xs:enumeration value="INFRM"/>
795
+ <xs:enumeration value="PCPR"/>
796
+ <xs:enumeration value="REG"/>
797
+ <xs:enumeration value="SPCTRT"/>
798
+ </xs:restriction>
799
+ </xs:simpleType>
800
+ <xs:simpleType name="x_ActClassDocumentEntryOrganizer">
801
+ <xs:annotation>
802
+ <xs:documentation>abstDomain: V19603 (C-0-D11527-V13856-V19603-cpt)</xs:documentation>
803
+ </xs:annotation>
804
+ <xs:restriction base="cs">
805
+ <xs:enumeration value="BATTERY"/>
806
+ <xs:enumeration value="CLUSTER"/>
807
+ </xs:restriction>
808
+ </xs:simpleType>
809
+ <xs:simpleType name="ActMood">
810
+ <xs:annotation>
811
+ <xs:documentation>vocSet: D10196 (C-0-D10196-cpt)</xs:documentation>
812
+ </xs:annotation>
813
+ <xs:union memberTypes="ActMoodCompletionTrack ActMoodPredicate x_ActMoodDefEvn x_ActMoodDefEvnRqoPrmsPrp x_ActMoodDocumentObservation x_ActMoodEvnOrdPrmsPrp x_ActMoodIntentEvent x_ActMoodOrdPrms x_ActMoodOrdPrmsEvn x_ActMoodRqoPrpAptArq x_DocumentActMood x_DocumentEncounterMood x_DocumentProcedureMood x_DocumentSubstanceMood"/>
814
+ </xs:simpleType>
815
+ <xs:simpleType name="ActMoodCompletionTrack">
816
+ <xs:annotation>
817
+ <xs:documentation>abstDomain: V10197 (C-0-D10196-V10197-cpt)</xs:documentation>
818
+ </xs:annotation>
819
+ <xs:union memberTypes="ActMoodIntent">
820
+ <xs:simpleType>
821
+ <xs:restriction base="cs">
822
+ <xs:enumeration value="DEF"/>
823
+ <xs:enumeration value="EVN"/>
824
+ </xs:restriction>
825
+ </xs:simpleType>
826
+ </xs:union>
827
+ </xs:simpleType>
828
+ <xs:simpleType name="ActMoodPredicate">
829
+ <xs:annotation>
830
+ <xs:documentation>abstDomain: V10202 (C-0-D10196-V10202-cpt)</xs:documentation>
831
+ </xs:annotation>
832
+ <xs:restriction base="cs">
833
+ <xs:enumeration value="EVN.CRT"/>
834
+ <xs:enumeration value="GOL"/>
835
+ <xs:enumeration value="OPT"/>
836
+ <xs:enumeration value="PERM"/>
837
+ <xs:enumeration value="PERMRQ"/>
838
+ </xs:restriction>
839
+ </xs:simpleType>
840
+ <xs:simpleType name="x_ActMoodDefEvn">
841
+ <xs:annotation>
842
+ <xs:documentation>abstDomain: V19375 (C-0-D10196-V19375-cpt)</xs:documentation>
843
+ </xs:annotation>
844
+ <xs:restriction base="cs">
845
+ <xs:enumeration value="DEF"/>
846
+ <xs:enumeration value="EVN"/>
847
+ </xs:restriction>
848
+ </xs:simpleType>
849
+ <xs:simpleType name="x_ActMoodDefEvnRqoPrmsPrp">
850
+ <xs:annotation>
851
+ <xs:documentation>abstDomain: V19371 (C-0-D10196-V19371-cpt)</xs:documentation>
852
+ </xs:annotation>
853
+ <xs:restriction base="cs">
854
+ <xs:enumeration value="DEF"/>
855
+ <xs:enumeration value="EVN"/>
856
+ <xs:enumeration value="PRMS"/>
857
+ <xs:enumeration value="PRP"/>
858
+ <xs:enumeration value="RQO"/>
859
+ </xs:restriction>
860
+ </xs:simpleType>
861
+ <xs:simpleType name="x_ActMoodDocumentObservation">
862
+ <xs:annotation>
863
+ <xs:documentation>abstDomain: V18943 (C-0-D10196-V18943-cpt)</xs:documentation>
864
+ </xs:annotation>
865
+ <xs:restriction base="cs">
866
+ <xs:enumeration value="INT"/>
867
+ <xs:enumeration value="DEF"/>
868
+ <xs:enumeration value="EVN"/>
869
+ <xs:enumeration value="GOL"/>
870
+ <xs:enumeration value="PRMS"/>
871
+ <xs:enumeration value="PRP"/>
872
+ <xs:enumeration value="RQO"/>
873
+ </xs:restriction>
874
+ </xs:simpleType>
875
+ <xs:simpleType name="x_ActMoodEvnOrdPrmsPrp">
876
+ <xs:annotation>
877
+ <xs:documentation>abstDomain: V18965 (C-0-D10196-V18965-cpt)</xs:documentation>
878
+ </xs:annotation>
879
+ <xs:restriction base="cs">
880
+ <xs:enumeration value="EVN"/>
881
+ <xs:enumeration value="PRMS"/>
882
+ <xs:enumeration value="PRP"/>
883
+ <xs:enumeration value="RQO"/>
884
+ </xs:restriction>
885
+ </xs:simpleType>
886
+ <xs:simpleType name="x_ActMoodIntentEvent">
887
+ <xs:annotation>
888
+ <xs:documentation>abstDomain: V16742 (C-0-D10196-V16742-cpt)</xs:documentation>
889
+ </xs:annotation>
890
+ <xs:union memberTypes="ActMoodIntent">
891
+ <xs:simpleType>
892
+ <xs:restriction base="cs">
893
+ <xs:enumeration value="EVN"/>
894
+ </xs:restriction>
895
+ </xs:simpleType>
896
+ </xs:union>
897
+ </xs:simpleType>
898
+ <xs:simpleType name="ActMoodIntent">
899
+ <xs:annotation>
900
+ <xs:documentation>specDomain: V10199 (C-0-D10196-V16742-V10199-cpt)</xs:documentation>
901
+ </xs:annotation>
902
+ <xs:restriction base="cs">
903
+ <xs:enumeration value="INT"/>
904
+ <xs:enumeration value="APT"/>
905
+ <xs:enumeration value="ARQ"/>
906
+ <xs:enumeration value="PRMS"/>
907
+ <xs:enumeration value="PRP"/>
908
+ <xs:enumeration value="RQO"/>
909
+ <xs:enumeration value="SLOT"/>
910
+ </xs:restriction>
911
+ </xs:simpleType>
912
+ <xs:simpleType name="x_ActMoodOrdPrms">
913
+ <xs:annotation>
914
+ <xs:documentation>abstDomain: V16735 (C-0-D10196-V16735-cpt)</xs:documentation>
915
+ </xs:annotation>
916
+ <xs:restriction base="cs">
917
+ <xs:enumeration value="PRMS"/>
918
+ <xs:enumeration value="RQO"/>
919
+ </xs:restriction>
920
+ </xs:simpleType>
921
+ <xs:simpleType name="x_ActMoodOrdPrmsEvn">
922
+ <xs:annotation>
923
+ <xs:documentation>abstDomain: V16730 (C-0-D10196-V16730-cpt)</xs:documentation>
924
+ </xs:annotation>
925
+ <xs:restriction base="cs">
926
+ <xs:enumeration value="EVN"/>
927
+ <xs:enumeration value="PRMS"/>
928
+ <xs:enumeration value="RQO"/>
929
+ </xs:restriction>
930
+ </xs:simpleType>
931
+ <xs:simpleType name="x_ActMoodRqoPrpAptArq">
932
+ <xs:annotation>
933
+ <xs:documentation>abstDomain: V19372 (C-0-D10196-V19372-cpt)</xs:documentation>
934
+ </xs:annotation>
935
+ <xs:restriction base="cs">
936
+ <xs:enumeration value="APT"/>
937
+ <xs:enumeration value="ARQ"/>
938
+ <xs:enumeration value="PRP"/>
939
+ <xs:enumeration value="RQO"/>
940
+ </xs:restriction>
941
+ </xs:simpleType>
942
+ <xs:simpleType name="x_DocumentActMood">
943
+ <xs:annotation>
944
+ <xs:documentation>abstDomain: V19458 (C-0-D10196-V19458-cpt)</xs:documentation>
945
+ </xs:annotation>
946
+ <xs:restriction base="cs">
947
+ <xs:enumeration value="INT"/>
948
+ <xs:enumeration value="APT"/>
949
+ <xs:enumeration value="ARQ"/>
950
+ <xs:enumeration value="DEF"/>
951
+ <xs:enumeration value="EVN"/>
952
+ <xs:enumeration value="PRMS"/>
953
+ <xs:enumeration value="PRP"/>
954
+ <xs:enumeration value="RQO"/>
955
+ </xs:restriction>
956
+ </xs:simpleType>
957
+ <xs:simpleType name="x_DocumentEncounterMood">
958
+ <xs:annotation>
959
+ <xs:documentation>abstDomain: V19459 (C-0-D10196-V19459-cpt)</xs:documentation>
960
+ </xs:annotation>
961
+ <xs:restriction base="cs">
962
+ <xs:enumeration value="INT"/>
963
+ <xs:enumeration value="APT"/>
964
+ <xs:enumeration value="ARQ"/>
965
+ <xs:enumeration value="EVN"/>
966
+ <xs:enumeration value="PRMS"/>
967
+ <xs:enumeration value="PRP"/>
968
+ <xs:enumeration value="RQO"/>
969
+ </xs:restriction>
970
+ </xs:simpleType>
971
+ <xs:simpleType name="x_DocumentProcedureMood">
972
+ <xs:annotation>
973
+ <xs:documentation>abstDomain: V19460 (C-0-D10196-V19460-cpt)</xs:documentation>
974
+ </xs:annotation>
975
+ <xs:restriction base="cs">
976
+ <xs:enumeration value="INT"/>
977
+ <xs:enumeration value="APT"/>
978
+ <xs:enumeration value="ARQ"/>
979
+ <xs:enumeration value="DEF"/>
980
+ <xs:enumeration value="EVN"/>
981
+ <xs:enumeration value="PRMS"/>
982
+ <xs:enumeration value="PRP"/>
983
+ <xs:enumeration value="RQO"/>
984
+ </xs:restriction>
985
+ </xs:simpleType>
986
+ <xs:simpleType name="x_DocumentSubstanceMood">
987
+ <xs:annotation>
988
+ <xs:documentation>abstDomain: V19461 (C-0-D10196-V19461-cpt)</xs:documentation>
989
+ </xs:annotation>
990
+ <xs:restriction base="cs">
991
+ <xs:enumeration value="INT"/>
992
+ <xs:enumeration value="EVN"/>
993
+ <xs:enumeration value="PRMS"/>
994
+ <xs:enumeration value="PRP"/>
995
+ <xs:enumeration value="RQO"/>
996
+ </xs:restriction>
997
+ </xs:simpleType>
998
+ <xs:simpleType name="ActRelationshipType">
999
+ <xs:annotation>
1000
+ <xs:documentation>vocSet: D10317 (C-0-D10317-cpt)</xs:documentation>
1001
+ </xs:annotation>
1002
+ <xs:union memberTypes="ActRelationshipConditional ActRelationshipHasComponent ActRelationshipOutcome ActRelationshipPertains ActRelationshipSequel x_ActRelationshipDocument x_ActRelationshipEntry x_ActRelationshipEntryRelationship x_ActRelationshipExternalReference x_ActRelationshipPatientTransport x_ActRelationshipPertinentInfo"/>
1003
+ </xs:simpleType>
1004
+ <xs:simpleType name="ActRelationshipConditional">
1005
+ <xs:annotation>
1006
+ <xs:documentation>abstDomain: V18977 (C-0-D10317-V18977-cpt)</xs:documentation>
1007
+ </xs:annotation>
1008
+ <xs:union memberTypes="ActRelationshipReason">
1009
+ <xs:simpleType>
1010
+ <xs:restriction base="cs">
1011
+ <xs:enumeration value="CIND"/>
1012
+ <xs:enumeration value="PRCN"/>
1013
+ <xs:enumeration value="TRIG"/>
1014
+ </xs:restriction>
1015
+ </xs:simpleType>
1016
+ </xs:union>
1017
+ </xs:simpleType>
1018
+ <xs:simpleType name="ActRelationshipReason">
1019
+ <xs:annotation>
1020
+ <xs:documentation>specDomain: V19376 (C-0-D10317-V18977-V19376-cpt)</xs:documentation>
1021
+ </xs:annotation>
1022
+ <xs:restriction base="cs">
1023
+ <xs:enumeration value="RSON"/>
1024
+ <xs:enumeration value="MITGT"/>
1025
+ </xs:restriction>
1026
+ </xs:simpleType>
1027
+ <xs:simpleType name="ActRelationshipHasComponent">
1028
+ <xs:annotation>
1029
+ <xs:documentation>specDomain: V10318 (C-0-D10317-V10318-cpt)</xs:documentation>
1030
+ </xs:annotation>
1031
+ <xs:restriction base="cs">
1032
+ <xs:enumeration value="COMP"/>
1033
+ <xs:enumeration value="ARR"/>
1034
+ <xs:enumeration value="CTRLV"/>
1035
+ <xs:enumeration value="DEP"/>
1036
+ </xs:restriction>
1037
+ </xs:simpleType>
1038
+ <xs:simpleType name="ActRelationshipOutcome">
1039
+ <xs:annotation>
1040
+ <xs:documentation>specDomain: V10324 (C-0-D10317-V10324-cpt)</xs:documentation>
1041
+ </xs:annotation>
1042
+ <xs:union memberTypes="ActRelationshipObjective">
1043
+ <xs:simpleType>
1044
+ <xs:restriction base="cs">
1045
+ <xs:enumeration value="OUTC"/>
1046
+ <xs:enumeration value="GOAL"/>
1047
+ <xs:enumeration value="RISK"/>
1048
+ </xs:restriction>
1049
+ </xs:simpleType>
1050
+ </xs:union>
1051
+ </xs:simpleType>
1052
+ <xs:simpleType name="ActRelationshipObjective">
1053
+ <xs:annotation>
1054
+ <xs:documentation>abstDomain: V19625 (C-0-D10317-V10324-V19625-cpt)</xs:documentation>
1055
+ </xs:annotation>
1056
+ <xs:restriction base="cs">
1057
+ <xs:enumeration value="OBJC"/>
1058
+ <xs:enumeration value="OBJF"/>
1059
+ </xs:restriction>
1060
+ </xs:simpleType>
1061
+ <xs:simpleType name="ActRelationshipPertains">
1062
+ <xs:annotation>
1063
+ <xs:documentation>specDomain: V10329 (C-0-D10317-V10329-cpt)</xs:documentation>
1064
+ </xs:annotation>
1065
+ <xs:union memberTypes="ActRelationshipAccounting TemporallyPertains hasSupport">
1066
+ <xs:simpleType>
1067
+ <xs:restriction base="cs">
1068
+ <xs:enumeration value="PERT"/>
1069
+ <xs:enumeration value="AUTH"/>
1070
+ <xs:enumeration value="CAUS"/>
1071
+ <xs:enumeration value="COVBY"/>
1072
+ <xs:enumeration value="DRIV"/>
1073
+ <xs:enumeration value="EXPL"/>
1074
+ <xs:enumeration value="ITEMSLOC"/>
1075
+ <xs:enumeration value="LIMIT"/>
1076
+ <xs:enumeration value="MFST"/>
1077
+ <xs:enumeration value="NAME"/>
1078
+ <xs:enumeration value="PREV"/>
1079
+ <xs:enumeration value="REFR"/>
1080
+ <xs:enumeration value="REFV"/>
1081
+ <xs:enumeration value="SUBJ"/>
1082
+ <xs:enumeration value="SUMM"/>
1083
+ </xs:restriction>
1084
+ </xs:simpleType>
1085
+ </xs:union>
1086
+ </xs:simpleType>
1087
+ <xs:simpleType name="ActRelationshipAccounting">
1088
+ <xs:annotation>
1089
+ <xs:documentation>abstDomain: V14900 (C-0-D10317-V10329-V14900-cpt)</xs:documentation>
1090
+ </xs:annotation>
1091
+ <xs:union memberTypes="ActRelationshipCostTracking ActRelationshipPosting">
1092
+ <xs:simpleType>
1093
+ <xs:restriction base="cs"/>
1094
+ </xs:simpleType>
1095
+ </xs:union>
1096
+ </xs:simpleType>
1097
+ <xs:simpleType name="ActRelationshipCostTracking">
1098
+ <xs:annotation>
1099
+ <xs:documentation>abstDomain: V19618 (C-0-D10317-V10329-V14900-V19618-cpt)</xs:documentation>
1100
+ </xs:annotation>
1101
+ <xs:restriction base="cs">
1102
+ <xs:enumeration value="CHRG"/>
1103
+ <xs:enumeration value="COST"/>
1104
+ </xs:restriction>
1105
+ </xs:simpleType>
1106
+ <xs:simpleType name="ActRelationshipPosting">
1107
+ <xs:annotation>
1108
+ <xs:documentation>abstDomain: V19617 (C-0-D10317-V10329-V14900-V19617-cpt)</xs:documentation>
1109
+ </xs:annotation>
1110
+ <xs:restriction base="cs">
1111
+ <xs:enumeration value="CREDIT"/>
1112
+ <xs:enumeration value="DEBIT"/>
1113
+ </xs:restriction>
1114
+ </xs:simpleType>
1115
+ <xs:simpleType name="TemporallyPertains">
1116
+ <xs:annotation>
1117
+ <xs:documentation>abstDomain: V19590 (C-0-D10317-V10329-V19590-cpt)</xs:documentation>
1118
+ </xs:annotation>
1119
+ <xs:restriction base="cs">
1120
+ <xs:enumeration value="SAS"/>
1121
+ </xs:restriction>
1122
+ </xs:simpleType>
1123
+ <xs:simpleType name="hasSupport">
1124
+ <xs:annotation>
1125
+ <xs:documentation>specDomain: V10330 (C-0-D10317-V10329-V10330-cpt)</xs:documentation>
1126
+ </xs:annotation>
1127
+ <xs:restriction base="cs">
1128
+ <xs:enumeration value="SPRT"/>
1129
+ <xs:enumeration value="SPRTBND"/>
1130
+ </xs:restriction>
1131
+ </xs:simpleType>
1132
+ <xs:simpleType name="ActRelationshipSequel">
1133
+ <xs:annotation>
1134
+ <xs:documentation>specDomain: V10337 (C-0-D10317-V10337-cpt)</xs:documentation>
1135
+ </xs:annotation>
1136
+ <xs:union memberTypes="ActRelationshipExcerpt ActRelationshipFulfills ActRelationshipReplacement">
1137
+ <xs:simpleType>
1138
+ <xs:restriction base="cs">
1139
+ <xs:enumeration value="SEQL"/>
1140
+ <xs:enumeration value="APND"/>
1141
+ <xs:enumeration value="DOC"/>
1142
+ <xs:enumeration value="ELNK"/>
1143
+ <xs:enumeration value="GEN"/>
1144
+ <xs:enumeration value="GEVL"/>
1145
+ <xs:enumeration value="INST"/>
1146
+ <xs:enumeration value="MTCH"/>
1147
+ <xs:enumeration value="OPTN"/>
1148
+ <xs:enumeration value="REV"/>
1149
+ <xs:enumeration value="UPDT"/>
1150
+ <xs:enumeration value="XFRM"/>
1151
+ </xs:restriction>
1152
+ </xs:simpleType>
1153
+ </xs:union>
1154
+ </xs:simpleType>
1155
+ <xs:simpleType name="ActRelationshipExcerpt">
1156
+ <xs:annotation>
1157
+ <xs:documentation>specDomain: V18660 (C-0-D10317-V10337-V18660-cpt)</xs:documentation>
1158
+ </xs:annotation>
1159
+ <xs:restriction base="cs">
1160
+ <xs:enumeration value="XCRPT"/>
1161
+ <xs:enumeration value="VRXCRPT"/>
1162
+ </xs:restriction>
1163
+ </xs:simpleType>
1164
+ <xs:simpleType name="ActRelationshipFulfills">
1165
+ <xs:annotation>
1166
+ <xs:documentation>specDomain: V10342 (C-0-D10317-V10337-V10342-cpt)</xs:documentation>
1167
+ </xs:annotation>
1168
+ <xs:restriction base="cs">
1169
+ <xs:enumeration value="FLFS"/>
1170
+ <xs:enumeration value="OCCR"/>
1171
+ <xs:enumeration value="OREF"/>
1172
+ <xs:enumeration value="SCH"/>
1173
+ </xs:restriction>
1174
+ </xs:simpleType>
1175
+ <xs:simpleType name="ActRelationshipReplacement">
1176
+ <xs:annotation>
1177
+ <xs:documentation>specDomain: V10338 (C-0-D10317-V10337-V10338-cpt)</xs:documentation>
1178
+ </xs:annotation>
1179
+ <xs:restriction base="cs">
1180
+ <xs:enumeration value="RPLC"/>
1181
+ <xs:enumeration value="SUCC"/>
1182
+ </xs:restriction>
1183
+ </xs:simpleType>
1184
+ <xs:simpleType name="x_ActRelationshipDocument">
1185
+ <xs:annotation>
1186
+ <xs:documentation>abstDomain: V11610 (C-0-D10317-V11610-cpt)</xs:documentation>
1187
+ </xs:annotation>
1188
+ <xs:restriction base="cs">
1189
+ <xs:enumeration value="RPLC"/>
1190
+ <xs:enumeration value="APND"/>
1191
+ <xs:enumeration value="XFRM"/>
1192
+ </xs:restriction>
1193
+ </xs:simpleType>
1194
+ <xs:simpleType name="x_ActRelationshipEntry">
1195
+ <xs:annotation>
1196
+ <xs:documentation>abstDomain: V19446 (C-0-D10317-V19446-cpt)</xs:documentation>
1197
+ </xs:annotation>
1198
+ <xs:restriction base="cs">
1199
+ <xs:enumeration value="COMP"/>
1200
+ <xs:enumeration value="DRIV"/>
1201
+ </xs:restriction>
1202
+ </xs:simpleType>
1203
+ <xs:simpleType name="x_ActRelationshipEntryRelationship">
1204
+ <xs:annotation>
1205
+ <xs:documentation>abstDomain: V19447 (C-0-D10317-V19447-cpt)</xs:documentation>
1206
+ </xs:annotation>
1207
+ <xs:restriction base="cs">
1208
+ <xs:enumeration value="XCRPT"/>
1209
+ <xs:enumeration value="COMP"/>
1210
+ <xs:enumeration value="RSON"/>
1211
+ <xs:enumeration value="SPRT"/>
1212
+ <xs:enumeration value="CAUS"/>
1213
+ <xs:enumeration value="GEVL"/>
1214
+ <xs:enumeration value="MFST"/>
1215
+ <xs:enumeration value="REFR"/>
1216
+ <xs:enumeration value="SAS"/>
1217
+ <xs:enumeration value="SUBJ"/>
1218
+ </xs:restriction>
1219
+ </xs:simpleType>
1220
+ <xs:simpleType name="x_ActRelationshipExternalReference">
1221
+ <xs:annotation>
1222
+ <xs:documentation>abstDomain: V19000 (C-0-D10317-V19000-cpt)</xs:documentation>
1223
+ </xs:annotation>
1224
+ <xs:restriction base="cs">
1225
+ <xs:enumeration value="XCRPT"/>
1226
+ <xs:enumeration value="RPLC"/>
1227
+ <xs:enumeration value="SPRT"/>
1228
+ <xs:enumeration value="ELNK"/>
1229
+ <xs:enumeration value="REFR"/>
1230
+ <xs:enumeration value="SUBJ"/>
1231
+ </xs:restriction>
1232
+ </xs:simpleType>
1233
+ <xs:simpleType name="x_ActRelationshipPatientTransport">
1234
+ <xs:annotation>
1235
+ <xs:documentation>abstDomain: V19005 (C-0-D10317-V19005-cpt)</xs:documentation>
1236
+ </xs:annotation>
1237
+ <xs:restriction base="cs">
1238
+ <xs:enumeration value="ARR"/>
1239
+ <xs:enumeration value="DEP"/>
1240
+ </xs:restriction>
1241
+ </xs:simpleType>
1242
+ <xs:simpleType name="x_ActRelationshipPertinentInfo">
1243
+ <xs:annotation>
1244
+ <xs:documentation>abstDomain: V19562 (C-0-D10317-V19562-cpt)</xs:documentation>
1245
+ </xs:annotation>
1246
+ <xs:restriction base="cs">
1247
+ <xs:enumeration value="SPRT"/>
1248
+ <xs:enumeration value="CAUS"/>
1249
+ <xs:enumeration value="MFST"/>
1250
+ <xs:enumeration value="REFR"/>
1251
+ <xs:enumeration value="SUBJ"/>
1252
+ </xs:restriction>
1253
+ </xs:simpleType>
1254
+ <xs:simpleType name="CommunicationFunctionType">
1255
+ <xs:annotation>
1256
+ <xs:documentation>vocSet: D16031 (C-0-D16031-cpt)</xs:documentation>
1257
+ </xs:annotation>
1258
+ <xs:restriction base="cs">
1259
+ <xs:enumeration value="RCV"/>
1260
+ <xs:enumeration value="RSP"/>
1261
+ <xs:enumeration value="SND"/>
1262
+ </xs:restriction>
1263
+ </xs:simpleType>
1264
+ <xs:simpleType name="ContextControl">
1265
+ <xs:annotation>
1266
+ <xs:documentation>vocSet: D16478 (C-0-D16478-cpt)</xs:documentation>
1267
+ </xs:annotation>
1268
+ <xs:union memberTypes="ContextControlAdditive ContextControlNonPropagating ContextControlOverriding ContextControlPropagating"/>
1269
+ </xs:simpleType>
1270
+ <xs:simpleType name="ContextControlAdditive">
1271
+ <xs:annotation>
1272
+ <xs:documentation>abstDomain: V18934 (C-0-D16478-V18934-cpt)</xs:documentation>
1273
+ </xs:annotation>
1274
+ <xs:restriction base="cs">
1275
+ <xs:enumeration value="AN"/>
1276
+ <xs:enumeration value="AP"/>
1277
+ </xs:restriction>
1278
+ </xs:simpleType>
1279
+ <xs:simpleType name="ContextControlNonPropagating">
1280
+ <xs:annotation>
1281
+ <xs:documentation>abstDomain: V18937 (C-0-D16478-V18937-cpt)</xs:documentation>
1282
+ </xs:annotation>
1283
+ <xs:restriction base="cs">
1284
+ <xs:enumeration value="AN"/>
1285
+ <xs:enumeration value="ON"/>
1286
+ </xs:restriction>
1287
+ </xs:simpleType>
1288
+ <xs:simpleType name="ContextControlOverriding">
1289
+ <xs:annotation>
1290
+ <xs:documentation>abstDomain: V18935 (C-0-D16478-V18935-cpt)</xs:documentation>
1291
+ </xs:annotation>
1292
+ <xs:restriction base="cs">
1293
+ <xs:enumeration value="ON"/>
1294
+ <xs:enumeration value="OP"/>
1295
+ </xs:restriction>
1296
+ </xs:simpleType>
1297
+ <xs:simpleType name="ContextControlPropagating">
1298
+ <xs:annotation>
1299
+ <xs:documentation>abstDomain: V18936 (C-0-D16478-V18936-cpt)</xs:documentation>
1300
+ </xs:annotation>
1301
+ <xs:restriction base="cs">
1302
+ <xs:enumeration value="AP"/>
1303
+ <xs:enumeration value="OP"/>
1304
+ </xs:restriction>
1305
+ </xs:simpleType>
1306
+ <xs:simpleType name="EntityClass">
1307
+ <xs:annotation>
1308
+ <xs:documentation>vocSet: D10882 (C-0-D10882-cpt)</xs:documentation>
1309
+ </xs:annotation>
1310
+ <xs:union memberTypes="EntityClassRoot x_EntityClassDocumentReceiving x_EntityClassPersonOrOrgReceiving"/>
1311
+ </xs:simpleType>
1312
+ <xs:simpleType name="EntityClassRoot">
1313
+ <xs:annotation>
1314
+ <xs:documentation>specDomain: V13922 (C-0-D10882-V13922-cpt)</xs:documentation>
1315
+ </xs:annotation>
1316
+ <xs:union memberTypes="EntityClassLivingSubject EntityClassMaterial EntityClassOrganization EntityClassPlace">
1317
+ <xs:simpleType>
1318
+ <xs:restriction base="cs">
1319
+ <xs:enumeration value="ENT"/>
1320
+ <xs:enumeration value="HCE"/>
1321
+ <xs:enumeration value="RGRP"/>
1322
+ </xs:restriction>
1323
+ </xs:simpleType>
1324
+ </xs:union>
1325
+ </xs:simpleType>
1326
+ <xs:simpleType name="EntityClassLivingSubject">
1327
+ <xs:annotation>
1328
+ <xs:documentation>specDomain: V10884 (C-0-D10882-V13922-V10884-cpt)</xs:documentation>
1329
+ </xs:annotation>
1330
+ <xs:union memberTypes="EntityClassNonPersonLivingSubject">
1331
+ <xs:simpleType>
1332
+ <xs:restriction base="cs">
1333
+ <xs:enumeration value="LIV"/>
1334
+ <xs:enumeration value="PSN"/>
1335
+ </xs:restriction>
1336
+ </xs:simpleType>
1337
+ </xs:union>
1338
+ </xs:simpleType>
1339
+ <xs:simpleType name="EntityClassNonPersonLivingSubject">
1340
+ <xs:annotation>
1341
+ <xs:documentation>specDomain: V11621 (C-0-D10882-V13922-V10884-V11621-cpt)</xs:documentation>
1342
+ </xs:annotation>
1343
+ <xs:restriction base="cs">
1344
+ <xs:enumeration value="NLIV"/>
1345
+ <xs:enumeration value="ANM"/>
1346
+ <xs:enumeration value="MIC"/>
1347
+ <xs:enumeration value="PLNT"/>
1348
+ </xs:restriction>
1349
+ </xs:simpleType>
1350
+ <xs:simpleType name="EntityClassMaterial">
1351
+ <xs:annotation>
1352
+ <xs:documentation>specDomain: V10883 (C-0-D10882-V13922-V10883-cpt)</xs:documentation>
1353
+ </xs:annotation>
1354
+ <xs:union memberTypes="EntityClassManufacturedMaterial">
1355
+ <xs:simpleType>
1356
+ <xs:restriction base="cs">
1357
+ <xs:enumeration value="MAT"/>
1358
+ <xs:enumeration value="CHEM"/>
1359
+ <xs:enumeration value="FOOD"/>
1360
+ </xs:restriction>
1361
+ </xs:simpleType>
1362
+ </xs:union>
1363
+ </xs:simpleType>
1364
+ <xs:simpleType name="EntityClassManufacturedMaterial">
1365
+ <xs:annotation>
1366
+ <xs:documentation>specDomain: V13934 (C-0-D10882-V13922-V10883-V13934-cpt)</xs:documentation>
1367
+ </xs:annotation>
1368
+ <xs:union memberTypes="EntityClassContainer EntityClassDevice">
1369
+ <xs:simpleType>
1370
+ <xs:restriction base="cs">
1371
+ <xs:enumeration value="MMAT"/>
1372
+ </xs:restriction>
1373
+ </xs:simpleType>
1374
+ </xs:union>
1375
+ </xs:simpleType>
1376
+ <xs:simpleType name="EntityClassContainer">
1377
+ <xs:annotation>
1378
+ <xs:documentation>specDomain: V11622 (C-0-D10882-V13922-V10883-V13934-V11622-cpt)</xs:documentation>
1379
+ </xs:annotation>
1380
+ <xs:restriction base="cs">
1381
+ <xs:enumeration value="CONT"/>
1382
+ <xs:enumeration value="HOLD"/>
1383
+ </xs:restriction>
1384
+ </xs:simpleType>
1385
+ <xs:simpleType name="EntityClassDevice">
1386
+ <xs:annotation>
1387
+ <xs:documentation>specDomain: V11623 (C-0-D10882-V13922-V10883-V13934-V11623-cpt)</xs:documentation>
1388
+ </xs:annotation>
1389
+ <xs:restriction base="cs">
1390
+ <xs:enumeration value="DEV"/>
1391
+ <xs:enumeration value="CER"/>
1392
+ <xs:enumeration value="MODDV"/>
1393
+ </xs:restriction>
1394
+ </xs:simpleType>
1395
+ <xs:simpleType name="EntityClassPlace">
1396
+ <xs:annotation>
1397
+ <xs:documentation>specDomain: V10892 (C-0-D10882-V13922-V10892-cpt)</xs:documentation>
1398
+ </xs:annotation>
1399
+ <xs:restriction base="cs">
1400
+ <xs:enumeration value="PLC"/>
1401
+ <xs:enumeration value="CITY"/>
1402
+ <xs:enumeration value="COUNTRY"/>
1403
+ <xs:enumeration value="COUNTY"/>
1404
+ <xs:enumeration value="PROVINCE"/>
1405
+ </xs:restriction>
1406
+ </xs:simpleType>
1407
+ <xs:simpleType name="x_EntityClassDocumentReceiving">
1408
+ <xs:annotation>
1409
+ <xs:documentation>abstDomain: V19462 (C-0-D10882-V19462-cpt)</xs:documentation>
1410
+ </xs:annotation>
1411
+ <xs:union memberTypes="EntityClassOrganization">
1412
+ <xs:simpleType>
1413
+ <xs:restriction base="cs">
1414
+ <xs:enumeration value="HCE"/>
1415
+ <xs:enumeration value="PSN"/>
1416
+ </xs:restriction>
1417
+ </xs:simpleType>
1418
+ </xs:union>
1419
+ </xs:simpleType>
1420
+ <xs:simpleType name="x_EntityClassPersonOrOrgReceiving">
1421
+ <xs:annotation>
1422
+ <xs:documentation>abstDomain: V19463 (C-0-D10882-V19463-cpt)</xs:documentation>
1423
+ </xs:annotation>
1424
+ <xs:union memberTypes="EntityClassOrganization">
1425
+ <xs:simpleType>
1426
+ <xs:restriction base="cs">
1427
+ <xs:enumeration value="PSN"/>
1428
+ </xs:restriction>
1429
+ </xs:simpleType>
1430
+ </xs:union>
1431
+ </xs:simpleType>
1432
+ <xs:simpleType name="EntityClassOrganization">
1433
+ <xs:annotation>
1434
+ <xs:documentation>specDomain: V10889 (C-0-D10882-V19463-V10889-cpt)</xs:documentation>
1435
+ </xs:annotation>
1436
+ <xs:union memberTypes="State">
1437
+ <xs:simpleType>
1438
+ <xs:restriction base="cs">
1439
+ <xs:enumeration value="ORG"/>
1440
+ <xs:enumeration value="PUB"/>
1441
+ </xs:restriction>
1442
+ </xs:simpleType>
1443
+ </xs:union>
1444
+ </xs:simpleType>
1445
+ <xs:simpleType name="State">
1446
+ <xs:annotation>
1447
+ <xs:documentation>specDomain: V19455 (C-0-D10882-V19463-V10889-V19455-cpt)</xs:documentation>
1448
+ </xs:annotation>
1449
+ <xs:restriction base="cs">
1450
+ <xs:enumeration value="STATE"/>
1451
+ <xs:enumeration value="NAT"/>
1452
+ </xs:restriction>
1453
+ </xs:simpleType>
1454
+ <xs:simpleType name="EntityDeterminer">
1455
+ <xs:annotation>
1456
+ <xs:documentation>vocSet: D10878 (C-0-D10878-cpt)</xs:documentation>
1457
+ </xs:annotation>
1458
+ <xs:union memberTypes="EntityDeterminerDetermined x_DeterminerInstanceKind">
1459
+ <xs:simpleType>
1460
+ <xs:restriction base="cs">
1461
+ <xs:enumeration value="INSTANCE"/>
1462
+ </xs:restriction>
1463
+ </xs:simpleType>
1464
+ </xs:union>
1465
+ </xs:simpleType>
1466
+ <xs:simpleType name="EntityDeterminerDetermined">
1467
+ <xs:annotation>
1468
+ <xs:documentation>specDomain: V10879 (C-0-D10878-V10879-cpt)</xs:documentation>
1469
+ </xs:annotation>
1470
+ <xs:restriction base="cs">
1471
+ <xs:enumeration value="KIND"/>
1472
+ <xs:enumeration value="QUANTIFIED_KIND"/>
1473
+ </xs:restriction>
1474
+ </xs:simpleType>
1475
+ <xs:simpleType name="x_DeterminerInstanceKind">
1476
+ <xs:annotation>
1477
+ <xs:documentation>abstDomain: V19647 (C-0-D10878-V19647-cpt)</xs:documentation>
1478
+ </xs:annotation>
1479
+ <xs:restriction base="cs">
1480
+ <xs:enumeration value="KIND"/>
1481
+ <xs:enumeration value="INSTANCE"/>
1482
+ </xs:restriction>
1483
+ </xs:simpleType>
1484
+ <xs:simpleType name="NullFlavor">
1485
+ <xs:annotation>
1486
+ <xs:documentation>vocSet: D10609 (C-0-D10609-cpt)</xs:documentation>
1487
+ </xs:annotation>
1488
+ <xs:union memberTypes="NoInformation">
1489
+ <xs:simpleType>
1490
+ <xs:restriction base="cs">
1491
+ <xs:enumeration value="NP"/>
1492
+ </xs:restriction>
1493
+ </xs:simpleType>
1494
+ </xs:union>
1495
+ </xs:simpleType>
1496
+ <xs:simpleType name="NoInformation">
1497
+ <xs:annotation>
1498
+ <xs:documentation>specDomain: V10610 (C-0-D10609-V10610-cpt)</xs:documentation>
1499
+ </xs:annotation>
1500
+ <xs:union memberTypes="Other Unknown">
1501
+ <xs:simpleType>
1502
+ <xs:restriction base="cs">
1503
+ <xs:enumeration value="NI"/>
1504
+ <xs:enumeration value="MSK"/>
1505
+ <xs:enumeration value="NA"/>
1506
+ </xs:restriction>
1507
+ </xs:simpleType>
1508
+ </xs:union>
1509
+ </xs:simpleType>
1510
+ <xs:simpleType name="Other">
1511
+ <xs:annotation>
1512
+ <xs:documentation>specDomain: V10616 (C-0-D10609-V10610-V10616-cpt)</xs:documentation>
1513
+ </xs:annotation>
1514
+ <xs:restriction base="cs">
1515
+ <xs:enumeration value="OTH"/>
1516
+ <xs:enumeration value="NINF"/>
1517
+ <xs:enumeration value="PINF"/>
1518
+ </xs:restriction>
1519
+ </xs:simpleType>
1520
+ <xs:simpleType name="Unknown">
1521
+ <xs:annotation>
1522
+ <xs:documentation>specDomain: V10612 (C-0-D10609-V10610-V10612-cpt)</xs:documentation>
1523
+ </xs:annotation>
1524
+ <xs:union memberTypes="AskedButUnknown">
1525
+ <xs:simpleType>
1526
+ <xs:restriction base="cs">
1527
+ <xs:enumeration value="UNK"/>
1528
+ <xs:enumeration value="NASK"/>
1529
+ <xs:enumeration value="TRC"/>
1530
+ </xs:restriction>
1531
+ </xs:simpleType>
1532
+ </xs:union>
1533
+ </xs:simpleType>
1534
+ <xs:simpleType name="AskedButUnknown">
1535
+ <xs:annotation>
1536
+ <xs:documentation>specDomain: V10614 (C-0-D10609-V10610-V10612-V10614-cpt)</xs:documentation>
1537
+ </xs:annotation>
1538
+ <xs:restriction base="cs">
1539
+ <xs:enumeration value="ASKU"/>
1540
+ <xs:enumeration value="NAV"/>
1541
+ </xs:restriction>
1542
+ </xs:simpleType>
1543
+ <xs:simpleType name="ParticipationType">
1544
+ <xs:annotation>
1545
+ <xs:documentation>vocSet: D10901 (C-0-D10901-cpt)</xs:documentation>
1546
+ </xs:annotation>
1547
+ <xs:union memberTypes="ParticipationAncillary ParticipationIndirectTarget ParticipationInformationGenerator ParticipationInformationRecipient ParticipationPhysicalPerformer ParticipationTargetDirect ParticipationTargetLocation ParticipationVerifier x_EncounterParticipant x_EncounterPerformerParticipation x_InformationRecipient x_ParticipationAuthorPerformer x_ParticipationEntVrf x_ParticipationPrfEntVrf x_ParticipationVrfRespSprfWit x_ServiceEventPerformer">
1548
+ <xs:simpleType>
1549
+ <xs:restriction base="cs">
1550
+ <xs:enumeration value="CST"/>
1551
+ <xs:enumeration value="RESP"/>
1552
+ </xs:restriction>
1553
+ </xs:simpleType>
1554
+ </xs:union>
1555
+ </xs:simpleType>
1556
+ <xs:simpleType name="ParticipationAncillary">
1557
+ <xs:annotation>
1558
+ <xs:documentation>abstDomain: V10247 (C-0-D10901-V10247-cpt)</xs:documentation>
1559
+ </xs:annotation>
1560
+ <xs:restriction base="cs">
1561
+ <xs:enumeration value="ADM"/>
1562
+ <xs:enumeration value="ATND"/>
1563
+ <xs:enumeration value="CALLBCK"/>
1564
+ <xs:enumeration value="CON"/>
1565
+ <xs:enumeration value="DIS"/>
1566
+ <xs:enumeration value="ESC"/>
1567
+ <xs:enumeration value="REF"/>
1568
+ </xs:restriction>
1569
+ </xs:simpleType>
1570
+ <xs:simpleType name="ParticipationIndirectTarget">
1571
+ <xs:annotation>
1572
+ <xs:documentation>specDomain: V19032 (C-0-D10901-V19032-cpt)</xs:documentation>
1573
+ </xs:annotation>
1574
+ <xs:restriction base="cs">
1575
+ <xs:enumeration value="IND"/>
1576
+ <xs:enumeration value="BEN"/>
1577
+ <xs:enumeration value="COV"/>
1578
+ <xs:enumeration value="HLD"/>
1579
+ <xs:enumeration value="RCT"/>
1580
+ <xs:enumeration value="RCV"/>
1581
+ </xs:restriction>
1582
+ </xs:simpleType>
1583
+ <xs:simpleType name="ParticipationInformationGenerator">
1584
+ <xs:annotation>
1585
+ <xs:documentation>abstDomain: V10251 (C-0-D10901-V10251-cpt)</xs:documentation>
1586
+ </xs:annotation>
1587
+ <xs:restriction base="cs">
1588
+ <xs:enumeration value="AUT"/>
1589
+ <xs:enumeration value="ENT"/>
1590
+ <xs:enumeration value="INF"/>
1591
+ <xs:enumeration value="WIT"/>
1592
+ </xs:restriction>
1593
+ </xs:simpleType>
1594
+ <xs:simpleType name="ParticipationInformationRecipient">
1595
+ <xs:annotation>
1596
+ <xs:documentation>specDomain: V10263 (C-0-D10901-V10263-cpt)</xs:documentation>
1597
+ </xs:annotation>
1598
+ <xs:restriction base="cs">
1599
+ <xs:enumeration value="IRCP"/>
1600
+ <xs:enumeration value="NOT"/>
1601
+ <xs:enumeration value="PRCP"/>
1602
+ <xs:enumeration value="REFB"/>
1603
+ <xs:enumeration value="REFT"/>
1604
+ <xs:enumeration value="TRC"/>
1605
+ </xs:restriction>
1606
+ </xs:simpleType>
1607
+ <xs:simpleType name="ParticipationPhysicalPerformer">
1608
+ <xs:annotation>
1609
+ <xs:documentation>specDomain: V10248 (C-0-D10901-V10248-cpt)</xs:documentation>
1610
+ </xs:annotation>
1611
+ <xs:restriction base="cs">
1612
+ <xs:enumeration value="PRF"/>
1613
+ <xs:enumeration value="DIST"/>
1614
+ <xs:enumeration value="PPRF"/>
1615
+ <xs:enumeration value="SPRF"/>
1616
+ </xs:restriction>
1617
+ </xs:simpleType>
1618
+ <xs:simpleType name="ParticipationTargetDirect">
1619
+ <xs:annotation>
1620
+ <xs:documentation>specDomain: V10286 (C-0-D10901-V10286-cpt)</xs:documentation>
1621
+ </xs:annotation>
1622
+ <xs:union memberTypes="ParticipationTargetDevice ParticipationTargetSubject">
1623
+ <xs:simpleType>
1624
+ <xs:restriction base="cs">
1625
+ <xs:enumeration value="DIR"/>
1626
+ <xs:enumeration value="BBY"/>
1627
+ <xs:enumeration value="CSM"/>
1628
+ <xs:enumeration value="DON"/>
1629
+ <xs:enumeration value="PRD"/>
1630
+ </xs:restriction>
1631
+ </xs:simpleType>
1632
+ </xs:union>
1633
+ </xs:simpleType>
1634
+ <xs:simpleType name="ParticipationTargetDevice">
1635
+ <xs:annotation>
1636
+ <xs:documentation>specDomain: V10298 (C-0-D10901-V10286-V10298-cpt)</xs:documentation>
1637
+ </xs:annotation>
1638
+ <xs:restriction base="cs">
1639
+ <xs:enumeration value="DEV"/>
1640
+ <xs:enumeration value="NRD"/>
1641
+ <xs:enumeration value="RDV"/>
1642
+ </xs:restriction>
1643
+ </xs:simpleType>
1644
+ <xs:simpleType name="ParticipationTargetSubject">
1645
+ <xs:annotation>
1646
+ <xs:documentation>specDomain: V19584 (C-0-D10901-V10286-V19584-cpt)</xs:documentation>
1647
+ </xs:annotation>
1648
+ <xs:restriction base="cs">
1649
+ <xs:enumeration value="SBJ"/>
1650
+ <xs:enumeration value="SPC"/>
1651
+ </xs:restriction>
1652
+ </xs:simpleType>
1653
+ <xs:simpleType name="ParticipationTargetLocation">
1654
+ <xs:annotation>
1655
+ <xs:documentation>specDomain: V10302 (C-0-D10901-V10302-cpt)</xs:documentation>
1656
+ </xs:annotation>
1657
+ <xs:restriction base="cs">
1658
+ <xs:enumeration value="LOC"/>
1659
+ <xs:enumeration value="DST"/>
1660
+ <xs:enumeration value="ELOC"/>
1661
+ <xs:enumeration value="ORG"/>
1662
+ <xs:enumeration value="RML"/>
1663
+ <xs:enumeration value="VIA"/>
1664
+ </xs:restriction>
1665
+ </xs:simpleType>
1666
+ <xs:simpleType name="ParticipationVerifier">
1667
+ <xs:annotation>
1668
+ <xs:documentation>specDomain: V10259 (C-0-D10901-V10259-cpt)</xs:documentation>
1669
+ </xs:annotation>
1670
+ <xs:restriction base="cs">
1671
+ <xs:enumeration value="VRF"/>
1672
+ <xs:enumeration value="AUTHEN"/>
1673
+ <xs:enumeration value="LA"/>
1674
+ </xs:restriction>
1675
+ </xs:simpleType>
1676
+ <xs:simpleType name="x_EncounterParticipant">
1677
+ <xs:annotation>
1678
+ <xs:documentation>abstDomain: V19605 (C-0-D10901-V19605-cpt)</xs:documentation>
1679
+ </xs:annotation>
1680
+ <xs:restriction base="cs">
1681
+ <xs:enumeration value="ADM"/>
1682
+ <xs:enumeration value="ATND"/>
1683
+ <xs:enumeration value="CON"/>
1684
+ <xs:enumeration value="DIS"/>
1685
+ <xs:enumeration value="REF"/>
1686
+ </xs:restriction>
1687
+ </xs:simpleType>
1688
+ <xs:simpleType name="x_EncounterPerformerParticipation">
1689
+ <xs:annotation>
1690
+ <xs:documentation>abstDomain: V16764 (C-0-D10901-V16764-cpt)</xs:documentation>
1691
+ </xs:annotation>
1692
+ <xs:restriction base="cs">
1693
+ <xs:enumeration value="PRF"/>
1694
+ <xs:enumeration value="CON"/>
1695
+ <xs:enumeration value="SPRF"/>
1696
+ </xs:restriction>
1697
+ </xs:simpleType>
1698
+ <xs:simpleType name="x_InformationRecipient">
1699
+ <xs:annotation>
1700
+ <xs:documentation>abstDomain: V19366 (C-0-D10901-V19366-cpt)</xs:documentation>
1701
+ </xs:annotation>
1702
+ <xs:restriction base="cs">
1703
+ <xs:enumeration value="PRCP"/>
1704
+ <xs:enumeration value="TRC"/>
1705
+ </xs:restriction>
1706
+ </xs:simpleType>
1707
+ <xs:simpleType name="x_ParticipationAuthorPerformer">
1708
+ <xs:annotation>
1709
+ <xs:documentation>abstDomain: V19080 (C-0-D10901-V19080-cpt)</xs:documentation>
1710
+ </xs:annotation>
1711
+ <xs:restriction base="cs">
1712
+ <xs:enumeration value="PRF"/>
1713
+ <xs:enumeration value="AUT"/>
1714
+ </xs:restriction>
1715
+ </xs:simpleType>
1716
+ <xs:simpleType name="x_ParticipationEntVrf">
1717
+ <xs:annotation>
1718
+ <xs:documentation>abstDomain: V19600 (C-0-D10901-V19600-cpt)</xs:documentation>
1719
+ </xs:annotation>
1720
+ <xs:restriction base="cs">
1721
+ <xs:enumeration value="VRF"/>
1722
+ <xs:enumeration value="ENT"/>
1723
+ </xs:restriction>
1724
+ </xs:simpleType>
1725
+ <xs:simpleType name="x_ParticipationPrfEntVrf">
1726
+ <xs:annotation>
1727
+ <xs:documentation>abstDomain: V19601 (C-0-D10901-V19601-cpt)</xs:documentation>
1728
+ </xs:annotation>
1729
+ <xs:restriction base="cs">
1730
+ <xs:enumeration value="PRF"/>
1731
+ <xs:enumeration value="VRF"/>
1732
+ <xs:enumeration value="ENT"/>
1733
+ </xs:restriction>
1734
+ </xs:simpleType>
1735
+ <xs:simpleType name="x_ParticipationVrfRespSprfWit">
1736
+ <xs:annotation>
1737
+ <xs:documentation>abstDomain: V19083 (C-0-D10901-V19083-cpt)</xs:documentation>
1738
+ </xs:annotation>
1739
+ <xs:restriction base="cs">
1740
+ <xs:enumeration value="VRF"/>
1741
+ <xs:enumeration value="RESP"/>
1742
+ <xs:enumeration value="SPRF"/>
1743
+ <xs:enumeration value="WIT"/>
1744
+ </xs:restriction>
1745
+ </xs:simpleType>
1746
+ <xs:simpleType name="x_ServiceEventPerformer">
1747
+ <xs:annotation>
1748
+ <xs:documentation>abstDomain: V19606 (C-0-D10901-V19606-cpt)</xs:documentation>
1749
+ </xs:annotation>
1750
+ <xs:restriction base="cs">
1751
+ <xs:enumeration value="PRF"/>
1752
+ <xs:enumeration value="PPRF"/>
1753
+ <xs:enumeration value="SPRF"/>
1754
+ </xs:restriction>
1755
+ </xs:simpleType>
1756
+ <xs:simpleType name="RoleClass">
1757
+ <xs:annotation>
1758
+ <xs:documentation>vocSet: D11555 (C-0-D11555-cpt)</xs:documentation>
1759
+ </xs:annotation>
1760
+ <xs:union memberTypes="RoleClassRoot"/>
1761
+ </xs:simpleType>
1762
+ <xs:simpleType name="RoleClassRoot">
1763
+ <xs:annotation>
1764
+ <xs:documentation>specDomain: V13940 (C-0-D11555-V13940-cpt)</xs:documentation>
1765
+ </xs:annotation>
1766
+ <xs:union memberTypes="RoleClassAssociative RoleClassOntological RoleClassPartitive x_DocumentEntrySubject x_DocumentSubject x_InformationRecipientRole x_RoleClassAccommodationRequestor x_RoleClassCoverage x_RoleClassCoverageInvoice x_RoleClassCredentialedEntity x_RoleClassPayeePolicyRelationship">
1767
+ <xs:simpleType>
1768
+ <xs:restriction base="cs">
1769
+ <xs:enumeration value="ROL"/>
1770
+ </xs:restriction>
1771
+ </xs:simpleType>
1772
+ </xs:union>
1773
+ </xs:simpleType>
1774
+ <xs:simpleType name="RoleClassAssociative">
1775
+ <xs:annotation>
1776
+ <xs:documentation>abstDomain: V19313 (C-0-D11555-V13940-V19313-cpt)</xs:documentation>
1777
+ </xs:annotation>
1778
+ <xs:union memberTypes="RoleClassMutualRelationship RoleClassPassive">
1779
+ <xs:simpleType>
1780
+ <xs:restriction base="cs"/>
1781
+ </xs:simpleType>
1782
+ </xs:union>
1783
+ </xs:simpleType>
1784
+ <xs:simpleType name="RoleClassMutualRelationship">
1785
+ <xs:annotation>
1786
+ <xs:documentation>abstDomain: V19316 (C-0-D11555-V13940-V19313-V19316-cpt)</xs:documentation>
1787
+ </xs:annotation>
1788
+ <xs:union memberTypes="RoleClassRelationshipFormal">
1789
+ <xs:simpleType>
1790
+ <xs:restriction base="cs">
1791
+ <xs:enumeration value="CAREGIVER"/>
1792
+ <xs:enumeration value="PRS"/>
1793
+ </xs:restriction>
1794
+ </xs:simpleType>
1795
+ </xs:union>
1796
+ </xs:simpleType>
1797
+ <xs:simpleType name="RoleClassRelationshipFormal">
1798
+ <xs:annotation>
1799
+ <xs:documentation>abstDomain: V10416 (C-0-D11555-V13940-V19313-V19316-V10416-cpt)</xs:documentation>
1800
+ </xs:annotation>
1801
+ <xs:union memberTypes="LicensedEntityRole RoleClassAgent RoleClassEmployee RoleClassInvestigationSubject">
1802
+ <xs:simpleType>
1803
+ <xs:restriction base="cs">
1804
+ <xs:enumeration value="CIT"/>
1805
+ <xs:enumeration value="COVPTY"/>
1806
+ <xs:enumeration value="CRINV"/>
1807
+ <xs:enumeration value="CRSPNSR"/>
1808
+ <xs:enumeration value="GUAR"/>
1809
+ <xs:enumeration value="PAT"/>
1810
+ <xs:enumeration value="PAYEE"/>
1811
+ <xs:enumeration value="PAYOR"/>
1812
+ <xs:enumeration value="POLHOLD"/>
1813
+ <xs:enumeration value="QUAL"/>
1814
+ <xs:enumeration value="SPNSR"/>
1815
+ <xs:enumeration value="STD"/>
1816
+ <xs:enumeration value="UNDWRT"/>
1817
+ </xs:restriction>
1818
+ </xs:simpleType>
1819
+ </xs:union>
1820
+ </xs:simpleType>
1821
+ <xs:simpleType name="RoleClassAgent">
1822
+ <xs:annotation>
1823
+ <xs:documentation>specDomain: V14006 (C-0-D11555-V13940-V19313-V19316-V10416-V14006-cpt)</xs:documentation>
1824
+ </xs:annotation>
1825
+ <xs:union memberTypes="RoleClassAssignedEntity">
1826
+ <xs:simpleType>
1827
+ <xs:restriction base="cs">
1828
+ <xs:enumeration value="AGNT"/>
1829
+ <xs:enumeration value="GUARD"/>
1830
+ </xs:restriction>
1831
+ </xs:simpleType>
1832
+ </xs:union>
1833
+ </xs:simpleType>
1834
+ <xs:simpleType name="RoleClassAssignedEntity">
1835
+ <xs:annotation>
1836
+ <xs:documentation>specDomain: V11595 (C-0-D11555-V13940-V19313-V19316-V10416-V14006-V11595-cpt)</xs:documentation>
1837
+ </xs:annotation>
1838
+ <xs:union memberTypes="RoleClassContact">
1839
+ <xs:simpleType>
1840
+ <xs:restriction base="cs">
1841
+ <xs:enumeration value="ASSIGNED"/>
1842
+ <xs:enumeration value="COMPAR"/>
1843
+ <xs:enumeration value="SGNOFF"/>
1844
+ </xs:restriction>
1845
+ </xs:simpleType>
1846
+ </xs:union>
1847
+ </xs:simpleType>
1848
+ <xs:simpleType name="RoleClassContact">
1849
+ <xs:annotation>
1850
+ <xs:documentation>specDomain: V12205 (C-0-D11555-V13940-V19313-V19316-V10416-V14006-V11595-V12205-cpt)</xs:documentation>
1851
+ </xs:annotation>
1852
+ <xs:restriction base="cs">
1853
+ <xs:enumeration value="CON"/>
1854
+ <xs:enumeration value="ECON"/>
1855
+ <xs:enumeration value="NOK"/>
1856
+ </xs:restriction>
1857
+ </xs:simpleType>
1858
+ <xs:simpleType name="RoleClassEmployee">
1859
+ <xs:annotation>
1860
+ <xs:documentation>specDomain: V11569 (C-0-D11555-V13940-V19313-V19316-V10416-V11569-cpt)</xs:documentation>
1861
+ </xs:annotation>
1862
+ <xs:restriction base="cs">
1863
+ <xs:enumeration value="EMP"/>
1864
+ <xs:enumeration value="MIL"/>
1865
+ </xs:restriction>
1866
+ </xs:simpleType>
1867
+ <xs:simpleType name="RoleClassInvestigationSubject">
1868
+ <xs:annotation>
1869
+ <xs:documentation>specDomain: V19587 (C-0-D11555-V13940-V19313-V19316-V10416-V19587-cpt)</xs:documentation>
1870
+ </xs:annotation>
1871
+ <xs:restriction base="cs">
1872
+ <xs:enumeration value="INVSBJ"/>
1873
+ <xs:enumeration value="CASESBJ"/>
1874
+ <xs:enumeration value="RESBJ"/>
1875
+ </xs:restriction>
1876
+ </xs:simpleType>
1877
+ <xs:simpleType name="RoleClassPassive">
1878
+ <xs:annotation>
1879
+ <xs:documentation>abstDomain: V19105 (C-0-D11555-V13940-V19313-V19105-cpt)</xs:documentation>
1880
+ </xs:annotation>
1881
+ <xs:union memberTypes="RoleClassDistributedMaterial RoleClassManufacturedProduct RoleClassServiceDeliveryLocation">
1882
+ <xs:simpleType>
1883
+ <xs:restriction base="cs">
1884
+ <xs:enumeration value="ACCESS"/>
1885
+ <xs:enumeration value="BIRTHPL"/>
1886
+ <xs:enumeration value="EXPR"/>
1887
+ <xs:enumeration value="HLD"/>
1888
+ <xs:enumeration value="HLTHCHRT"/>
1889
+ <xs:enumeration value="IDENT"/>
1890
+ <xs:enumeration value="MNT"/>
1891
+ <xs:enumeration value="OWN"/>
1892
+ <xs:enumeration value="RGPR"/>
1893
+ <xs:enumeration value="TERR"/>
1894
+ <xs:enumeration value="WRTE"/>
1895
+ </xs:restriction>
1896
+ </xs:simpleType>
1897
+ </xs:union>
1898
+ </xs:simpleType>
1899
+ <xs:simpleType name="RoleClassDistributedMaterial">
1900
+ <xs:annotation>
1901
+ <xs:documentation>specDomain: V10418 (C-0-D11555-V13940-V19313-V19105-V10418-cpt)</xs:documentation>
1902
+ </xs:annotation>
1903
+ <xs:restriction base="cs">
1904
+ <xs:enumeration value="DST"/>
1905
+ <xs:enumeration value="RET"/>
1906
+ </xs:restriction>
1907
+ </xs:simpleType>
1908
+ <xs:simpleType name="RoleClassManufacturedProduct">
1909
+ <xs:annotation>
1910
+ <xs:documentation>specDomain: V11580 (C-0-D11555-V13940-V19313-V19105-V11580-cpt)</xs:documentation>
1911
+ </xs:annotation>
1912
+ <xs:restriction base="cs">
1913
+ <xs:enumeration value="MANU"/>
1914
+ <xs:enumeration value="THER"/>
1915
+ </xs:restriction>
1916
+ </xs:simpleType>
1917
+ <xs:simpleType name="RoleClassServiceDeliveryLocation">
1918
+ <xs:annotation>
1919
+ <xs:documentation>specDomain: V16927 (C-0-D11555-V13940-V19313-V19105-V16927-cpt)</xs:documentation>
1920
+ </xs:annotation>
1921
+ <xs:restriction base="cs">
1922
+ <xs:enumeration value="SDLOC"/>
1923
+ <xs:enumeration value="DSDLOC"/>
1924
+ <xs:enumeration value="ISDLOC"/>
1925
+ </xs:restriction>
1926
+ </xs:simpleType>
1927
+ <xs:simpleType name="RoleClassOntological">
1928
+ <xs:annotation>
1929
+ <xs:documentation>abstDomain: V10428 (C-0-D11555-V13940-V10428-cpt)</xs:documentation>
1930
+ </xs:annotation>
1931
+ <xs:union memberTypes="RoleClassIsSpeciesEntity">
1932
+ <xs:simpleType>
1933
+ <xs:restriction base="cs">
1934
+ <xs:enumeration value="INST"/>
1935
+ <xs:enumeration value="SUBS"/>
1936
+ <xs:enumeration value="SUBY"/>
1937
+ </xs:restriction>
1938
+ </xs:simpleType>
1939
+ </xs:union>
1940
+ </xs:simpleType>
1941
+ <xs:simpleType name="RoleClassIsSpeciesEntity">
1942
+ <xs:annotation>
1943
+ <xs:documentation>specDomain: V10441 (C-0-D11555-V13940-V10428-V10441-cpt)</xs:documentation>
1944
+ </xs:annotation>
1945
+ <xs:restriction base="cs">
1946
+ <xs:enumeration value="GEN"/>
1947
+ <xs:enumeration value="GRIC"/>
1948
+ </xs:restriction>
1949
+ </xs:simpleType>
1950
+ <xs:simpleType name="RoleClassPartitive">
1951
+ <xs:annotation>
1952
+ <xs:documentation>abstDomain: V10429 (C-0-D11555-V13940-V10429-cpt)</xs:documentation>
1953
+ </xs:annotation>
1954
+ <xs:union memberTypes="RoleClassIngredientEntity RoleClassLocatedEntity RoleClassSpecimen">
1955
+ <xs:simpleType>
1956
+ <xs:restriction base="cs">
1957
+ <xs:enumeration value="CONT"/>
1958
+ <xs:enumeration value="MBR"/>
1959
+ <xs:enumeration value="PART"/>
1960
+ </xs:restriction>
1961
+ </xs:simpleType>
1962
+ </xs:union>
1963
+ </xs:simpleType>
1964
+ <xs:simpleType name="RoleClassIngredientEntity">
1965
+ <xs:annotation>
1966
+ <xs:documentation>specDomain: V10430 (C-0-D11555-V13940-V10429-V10430-cpt)</xs:documentation>
1967
+ </xs:annotation>
1968
+ <xs:union memberTypes="RoleClassInactiveIngredient">
1969
+ <xs:simpleType>
1970
+ <xs:restriction base="cs">
1971
+ <xs:enumeration value="INGR"/>
1972
+ <xs:enumeration value="ACTI"/>
1973
+ <xs:enumeration value="ACTM"/>
1974
+ <xs:enumeration value="ADTV"/>
1975
+ <xs:enumeration value="BASE"/>
1976
+ </xs:restriction>
1977
+ </xs:simpleType>
1978
+ </xs:union>
1979
+ </xs:simpleType>
1980
+ <xs:simpleType name="RoleClassInactiveIngredient">
1981
+ <xs:annotation>
1982
+ <xs:documentation>specDomain: V19089 (C-0-D11555-V13940-V10429-V10430-V19089-cpt)</xs:documentation>
1983
+ </xs:annotation>
1984
+ <xs:restriction base="cs">
1985
+ <xs:enumeration value="IACT"/>
1986
+ <xs:enumeration value="COLR"/>
1987
+ <xs:enumeration value="FLVR"/>
1988
+ <xs:enumeration value="PRSV"/>
1989
+ <xs:enumeration value="STBL"/>
1990
+ </xs:restriction>
1991
+ </xs:simpleType>
1992
+ <xs:simpleType name="RoleClassLocatedEntity">
1993
+ <xs:annotation>
1994
+ <xs:documentation>specDomain: V16815 (C-0-D11555-V13940-V10429-V16815-cpt)</xs:documentation>
1995
+ </xs:annotation>
1996
+ <xs:restriction base="cs">
1997
+ <xs:enumeration value="LOCE"/>
1998
+ <xs:enumeration value="STOR"/>
1999
+ </xs:restriction>
2000
+ </xs:simpleType>
2001
+ <xs:simpleType name="RoleClassSpecimen">
2002
+ <xs:annotation>
2003
+ <xs:documentation>specDomain: V11591 (C-0-D11555-V13940-V10429-V11591-cpt)</xs:documentation>
2004
+ </xs:annotation>
2005
+ <xs:restriction base="cs">
2006
+ <xs:enumeration value="SPEC"/>
2007
+ <xs:enumeration value="ALQT"/>
2008
+ <xs:enumeration value="ISLT"/>
2009
+ </xs:restriction>
2010
+ </xs:simpleType>
2011
+ <xs:simpleType name="x_DocumentEntrySubject">
2012
+ <xs:annotation>
2013
+ <xs:documentation>abstDomain: V19367 (C-0-D11555-V13940-V19367-cpt)</xs:documentation>
2014
+ </xs:annotation>
2015
+ <xs:restriction base="cs">
2016
+ <xs:enumeration value="SPEC"/>
2017
+ <xs:enumeration value="PAT"/>
2018
+ <xs:enumeration value="PRS"/>
2019
+ </xs:restriction>
2020
+ </xs:simpleType>
2021
+ <xs:simpleType name="x_DocumentSubject">
2022
+ <xs:annotation>
2023
+ <xs:documentation>abstDomain: V19368 (C-0-D11555-V13940-V19368-cpt)</xs:documentation>
2024
+ </xs:annotation>
2025
+ <xs:restriction base="cs">
2026
+ <xs:enumeration value="PAT"/>
2027
+ <xs:enumeration value="PRS"/>
2028
+ </xs:restriction>
2029
+ </xs:simpleType>
2030
+ <xs:simpleType name="x_InformationRecipientRole">
2031
+ <xs:annotation>
2032
+ <xs:documentation>abstDomain: V16772 (C-0-D11555-V13940-V16772-cpt)</xs:documentation>
2033
+ </xs:annotation>
2034
+ <xs:restriction base="cs">
2035
+ <xs:enumeration value="ASSIGNED"/>
2036
+ <xs:enumeration value="HLTHCHRT"/>
2037
+ </xs:restriction>
2038
+ </xs:simpleType>
2039
+ <xs:simpleType name="x_RoleClassAccommodationRequestor">
2040
+ <xs:annotation>
2041
+ <xs:documentation>abstDomain: V19382 (C-0-D11555-V13940-V19382-cpt)</xs:documentation>
2042
+ </xs:annotation>
2043
+ <xs:restriction base="cs">
2044
+ <xs:enumeration value="AGNT"/>
2045
+ <xs:enumeration value="PAT"/>
2046
+ <xs:enumeration value="PROV"/>
2047
+ <xs:enumeration value="PRS"/>
2048
+ </xs:restriction>
2049
+ </xs:simpleType>
2050
+ <xs:simpleType name="x_RoleClassCoverage">
2051
+ <xs:annotation>
2052
+ <xs:documentation>abstDomain: V14008 (C-0-D11555-V13940-V14008-cpt)</xs:documentation>
2053
+ </xs:annotation>
2054
+ <xs:restriction base="cs">
2055
+ <xs:enumeration value="COVPTY"/>
2056
+ <xs:enumeration value="POLHOLD"/>
2057
+ <xs:enumeration value="SPNSR"/>
2058
+ <xs:enumeration value="UNDWRT"/>
2059
+ </xs:restriction>
2060
+ </xs:simpleType>
2061
+ <xs:simpleType name="x_RoleClassCoverageInvoice">
2062
+ <xs:annotation>
2063
+ <xs:documentation>abstDomain: V14013 (C-0-D11555-V13940-V14013-cpt)</xs:documentation>
2064
+ </xs:annotation>
2065
+ <xs:restriction base="cs">
2066
+ <xs:enumeration value="PAYEE"/>
2067
+ <xs:enumeration value="PAYOR"/>
2068
+ </xs:restriction>
2069
+ </xs:simpleType>
2070
+ <xs:simpleType name="x_RoleClassCredentialedEntity">
2071
+ <xs:annotation>
2072
+ <xs:documentation>abstDomain: V16930 (C-0-D11555-V13940-V16930-cpt)</xs:documentation>
2073
+ </xs:annotation>
2074
+ <xs:union memberTypes="LicensedEntityRole">
2075
+ <xs:simpleType>
2076
+ <xs:restriction base="cs">
2077
+ <xs:enumeration value="ASSIGNED"/>
2078
+ <xs:enumeration value="QUAL"/>
2079
+ </xs:restriction>
2080
+ </xs:simpleType>
2081
+ </xs:union>
2082
+ </xs:simpleType>
2083
+ <xs:simpleType name="LicensedEntityRole">
2084
+ <xs:annotation>
2085
+ <xs:documentation>specDomain: V16773 (C-0-D11555-V13940-V16930-V16773-cpt)</xs:documentation>
2086
+ </xs:annotation>
2087
+ <xs:restriction base="cs">
2088
+ <xs:enumeration value="LIC"/>
2089
+ <xs:enumeration value="NOT"/>
2090
+ <xs:enumeration value="PROV"/>
2091
+ </xs:restriction>
2092
+ </xs:simpleType>
2093
+ <xs:simpleType name="x_RoleClassPayeePolicyRelationship">
2094
+ <xs:annotation>
2095
+ <xs:documentation>abstDomain: V19395 (C-0-D11555-V13940-V19395-cpt)</xs:documentation>
2096
+ </xs:annotation>
2097
+ <xs:restriction base="cs">
2098
+ <xs:enumeration value="COVPTY"/>
2099
+ <xs:enumeration value="GUAR"/>
2100
+ <xs:enumeration value="POLHOLD"/>
2101
+ <xs:enumeration value="PROV"/>
2102
+ <xs:enumeration value="PRS"/>
2103
+ </xs:restriction>
2104
+ </xs:simpleType>
2105
+ <xs:simpleType name="RoleLinkType">
2106
+ <xs:annotation>
2107
+ <xs:documentation>vocSet: D11603 (C-0-D11603-cpt)</xs:documentation>
2108
+ </xs:annotation>
2109
+ <xs:union memberTypes="RelatedLinkType"/>
2110
+ </xs:simpleType>
2111
+ <xs:simpleType name="RelatedLinkType">
2112
+ <xs:annotation>
2113
+ <xs:documentation>specDomain: V19615 (C-0-D11603-V19615-cpt)</xs:documentation>
2114
+ </xs:annotation>
2115
+ <xs:restriction base="cs">
2116
+ <xs:enumeration value="REL"/>
2117
+ <xs:enumeration value="BACKUP"/>
2118
+ <xs:enumeration value="DIRAUTH"/>
2119
+ <xs:enumeration value="INDAUTH"/>
2120
+ <xs:enumeration value="PART"/>
2121
+ <xs:enumeration value="REPL"/>
2122
+ </xs:restriction>
2123
+ </xs:simpleType>
2124
+ </xs:schema>