cqm-validators 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +7 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +201 -0
- data/QRDA_Schematron_License.txt +191 -0
- data/README.md +40 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/cqm_validators.gemspec +28 -0
- data/lib/base_validator.rb +22 -0
- data/lib/cqm_validators.rb +15 -0
- data/lib/cqm_validators/version.rb +3 -0
- data/lib/data_validator.rb +82 -0
- data/lib/measure_validator.rb +130 -0
- data/lib/performance_rate_validator.rb +92 -0
- data/lib/qrda_qdm_template_validator.rb +320 -0
- data/lib/reported_result_extractor.rb +172 -0
- data/lib/schema/infrastructure/cda/CDA_SDTC.xsd +44 -0
- data/lib/schema/infrastructure/cda/POCD_MT000040_SDTC.xsd +1500 -0
- data/lib/schema/infrastructure/cda/SDTC.xsd +210 -0
- data/lib/schema/processable/coreschemas/NarrativeBlock.xsd +557 -0
- data/lib/schema/processable/coreschemas/datatypes-base_SDTC.xsd +1850 -0
- data/lib/schema/processable/coreschemas/datatypes.xsd +1375 -0
- data/lib/schema/processable/coreschemas/infrastructureRoot.xsd +27 -0
- data/lib/schema/processable/coreschemas/voc.xsd +2124 -0
- data/lib/schema_validator.rb +23 -0
- data/lib/schematron/c_processor.rb +26 -0
- data/lib/schematron/iso-schematron-xslt1/ExtractSchFromRNG.xsl +75 -0
- data/lib/schematron/iso-schematron-xslt1/ExtractSchFromXSD.xsl +77 -0
- data/lib/schematron/iso-schematron-xslt1/iso_abstract_expand.xsl +297 -0
- data/lib/schematron/iso-schematron-xslt1/iso_dsdl_include.xsl +1509 -0
- data/lib/schematron/iso-schematron-xslt1/iso_schematron_message.xsl +55 -0
- data/lib/schematron/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl +1844 -0
- data/lib/schematron/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl +605 -0
- data/lib/schematron/iso-schematron-xslt1/readme.txt +101 -0
- data/lib/schematron/iso-schematron-xslt1/schematron-skeleton-api.htm +723 -0
- data/lib/schematron/iso-schematron-xslt2/ExtractSchFromRNG-2.xsl +75 -0
- data/lib/schematron/iso-schematron-xslt2/ExtractSchFromXSD-2.xsl +77 -0
- data/lib/schematron/iso-schematron-xslt2/iso_abstract_expand.xsl +297 -0
- data/lib/schematron/iso-schematron-xslt2/iso_dsdl_include.xsl +1508 -0
- data/lib/schematron/iso-schematron-xslt2/iso_schematron_message_xslt2.xsl +55 -0
- data/lib/schematron/iso-schematron-xslt2/iso_schematron_skeleton_for_saxon.xsl +2299 -0
- data/lib/schematron/iso-schematron-xslt2/iso_svrl_for_xslt2.xsl +684 -0
- data/lib/schematron/iso-schematron-xslt2/readme.txt +100 -0
- data/lib/schematron/iso-schematron-xslt2/sch-messages-cs.xhtml +56 -0
- data/lib/schematron/iso-schematron-xslt2/sch-messages-de.xhtml +57 -0
- data/lib/schematron/iso-schematron-xslt2/sch-messages-en.xhtml +57 -0
- data/lib/schematron/iso-schematron-xslt2/sch-messages-fr.xhtml +54 -0
- data/lib/schematron/iso-schematron-xslt2/sch-messages-nl.xhtml +58 -0
- data/lib/schematron/iso-schematron-xslt2/schematron-skeleton-api.htm +723 -0
- data/lib/schematron/java_processor.rb +92 -0
- data/lib/schematron/qrda/cat_1/HL7_CDAR2_QRDA_Category_I_2_12_16.sch +4693 -0
- data/lib/schematron/qrda/cat_1/voc.xml +1177 -0
- data/lib/schematron/qrda/cat_1_r2/QRDA Category I Release 2.sch +4069 -0
- data/lib/schematron/qrda/cat_1_r2/voc.xml +1065 -0
- data/lib/schematron/qrda/cat_1_r3_1/HL7 QRDA Category I STU 3.1.sch +3573 -0
- data/lib/schematron/qrda/cat_1_r3_1/HL7 QRDA Category III STU 1.1.sch +464 -0
- data/lib/schematron/qrda/cat_1_r3_1/QRDA Category I STU Release 3.1.sch +5394 -0
- data/lib/schematron/qrda/cat_1_r3_1/voc.xml +1229 -0
- data/lib/schematron/qrda/cat_1_r4/HL7 QRDA Category I STU 4.sch +3526 -0
- data/lib/schematron/qrda/cat_1_r4/voc.xml +1186 -0
- data/lib/schematron/qrda/cat_1_r5/HL7 QRDA Category I STU 5.sch +3069 -0
- data/lib/schematron/qrda/cat_1_r5/voc.xml +1186 -0
- data/lib/schematron/qrda/cat_3/QRDA Category III.sch +675 -0
- data/lib/schematron/qrda/cat_3/voc.xml +21 -0
- data/lib/schematron/qrda/cat_3_r1_1/HL7 QRDA Category III STU 1.1.sch +528 -0
- data/lib/schematron/qrda/cat_3_r1_1/voc.xml +8 -0
- data/lib/schematron/qrda/cat_3_r2/HL7 QRDA Category III STU 2.sch +677 -0
- data/lib/schematron/qrda/cat_3_r2/voc.xml +1186 -0
- data/lib/schematron/qrda/cat_3_r2_1/HL7 QRDA Category III STU 2.1.sch +678 -0
- data/lib/schematron/qrda/cat_3_r2_1/voc.xml +1186 -0
- data/lib/schematron_validator.rb +38 -0
- data/lib/validation_error.rb +10 -0
- data/lib/validators.rb +136 -0
- metadata +177 -0
@@ -0,0 +1,172 @@
|
|
1
|
+
module CqmValidators
|
2
|
+
module ReportedResultExtractor
|
3
|
+
|
4
|
+
#takes a document and a list of 1 or more id hashes, e.g.:
|
5
|
+
#[{measure_id:"8a4d92b2-36af-5758-0136-ea8c43244986", set_id:"03876d69-085b-415c-ae9d-9924171040c2", ipp:"D77106C4-8ED0-4C5D-B29E-13DBF255B9FF", den:"8B0FA80F-8FFE-494C-958A-191C1BB36DBF", num:"9363135E-A816-451F-8022-96CDA7E540DD"}]
|
6
|
+
#returns nil if nothing matching is found
|
7
|
+
# returns a hash with the values of the populations filled out along with the population_ids added to the result
|
8
|
+
|
9
|
+
|
10
|
+
def extract_results_by_ids(measure_id, ids, doc)
|
11
|
+
results = nil
|
12
|
+
_ids = ids.dup
|
13
|
+
stratification = _ids.delete("stratification")
|
14
|
+
stratification ||= _ids.delete("STRAT")
|
15
|
+
errors = []
|
16
|
+
nodes = find_measure_node(measure_id, doc)
|
17
|
+
|
18
|
+
if nodes.nil? || nodes.empty?
|
19
|
+
# short circuit and return nil
|
20
|
+
return {}
|
21
|
+
end
|
22
|
+
|
23
|
+
nodes.each do |n|
|
24
|
+
results = get_measure_components(n, _ids, stratification)
|
25
|
+
break if (results != nil || (results != nil && !results.empty?))
|
26
|
+
end
|
27
|
+
return nil if results.nil?
|
28
|
+
results[:population_ids] = ids.dup
|
29
|
+
results
|
30
|
+
end
|
31
|
+
|
32
|
+
def find_measure_node(id, doc)
|
33
|
+
xpath_measures = %Q{/cda:ClinicalDocument/cda:component/cda:structuredBody/cda:component/cda:section
|
34
|
+
/cda:entry/cda:organizer[ ./cda:templateId[@root = "2.16.840.1.113883.10.20.27.3.1"]
|
35
|
+
and ./cda:reference/cda:externalDocument/cda:id[#{translate("@extension")}='#{id.upcase}' and #{translate("@root")}='2.16.840.1.113883.4.738']]}
|
36
|
+
return doc.xpath(xpath_measures)
|
37
|
+
end
|
38
|
+
|
39
|
+
def get_measure_components(n,ids, stratification)
|
40
|
+
results = {:supplemental_data =>{}}
|
41
|
+
ids.each_pair do |k,v|
|
42
|
+
val = nil
|
43
|
+
sup = nil
|
44
|
+
if (k == 'OBSERV')
|
45
|
+
msrpopl = ids['MSRPOPL']
|
46
|
+
val, sup = extract_cv_value(n,v,msrpopl, stratification)
|
47
|
+
else
|
48
|
+
val,sup,pr =extract_component_value(n,k,v,stratification)
|
49
|
+
end
|
50
|
+
if !val.nil?
|
51
|
+
results[k.to_s] = val
|
52
|
+
results[:supplemental_data][k] = sup
|
53
|
+
else
|
54
|
+
# return nil
|
55
|
+
end
|
56
|
+
if !pr.nil?
|
57
|
+
results["PR"] = pr
|
58
|
+
end
|
59
|
+
end
|
60
|
+
results
|
61
|
+
end
|
62
|
+
|
63
|
+
def extract_cv_value(node, id, msrpopl, strata = nil)
|
64
|
+
xpath_observation = %{ cda:component/cda:observation[./cda:value[@code = "MSRPOPL"] and ./cda:reference/cda:externalObservation/cda:id[#{translate("@root")}='#{msrpopl.upcase}']]}
|
65
|
+
cv = node.at_xpath(xpath_observation)
|
66
|
+
return nil unless cv
|
67
|
+
val = nil
|
68
|
+
if strata
|
69
|
+
strata_path = %{ cda:entryRelationship[@typeCode="COMP"]/cda:observation[./cda:templateId[@root = "2.16.840.1.113883.10.20.27.3.4"] and ./cda:reference/cda:externalObservation/cda:id[#{translate("@root")}='#{strata.upcase}']]}
|
70
|
+
n = cv.xpath(strata_path)
|
71
|
+
val = get_cv_value(n,id)
|
72
|
+
else
|
73
|
+
val = get_cv_value(cv,id)
|
74
|
+
end
|
75
|
+
return val, (strata.nil? ? extract_supplemental_data(cv) : nil)
|
76
|
+
end
|
77
|
+
|
78
|
+
def extract_component_value(node, code, id, strata = nil)
|
79
|
+
xpath_observation = %{ cda:component/cda:observation[./cda:value[@code = "#{code}"] and ./cda:reference/cda:externalObservation/cda:id[#{translate("@root")}='#{id.upcase}']]}
|
80
|
+
cv = node.at_xpath(xpath_observation)
|
81
|
+
return nil unless cv
|
82
|
+
val = nil
|
83
|
+
if strata
|
84
|
+
strata_path = %{ cda:entryRelationship[@typeCode="COMP"]/cda:observation[./cda:templateId[@root = "2.16.840.1.113883.10.20.27.3.4"] and ./cda:reference/cda:externalObservation/cda:id[#{translate("@root")}='#{strata.upcase}']]}
|
85
|
+
n = cv.xpath(strata_path)
|
86
|
+
val = get_aggregate_count(n) if n
|
87
|
+
else
|
88
|
+
val = get_aggregate_count(cv)
|
89
|
+
end
|
90
|
+
#Performance rate is only applicable for unstratified values
|
91
|
+
if code == "NUMER" && strata == nil
|
92
|
+
pref_rate_value = extract_performance_rate(node,code,id)
|
93
|
+
end
|
94
|
+
return val,(strata.nil? ? extract_supplemental_data(cv) : nil),pref_rate_value
|
95
|
+
end
|
96
|
+
|
97
|
+
def extract_performance_rate(node,code,id)
|
98
|
+
xpath_perf_rate = %{ cda:component/cda:observation[./cda:templateId[@root = "2.16.840.1.113883.10.20.27.3.14"] and ./cda:reference/cda:externalObservation/cda:id[#{translate("@root")}='#{id.upcase}']]/cda:value}
|
99
|
+
perf_rate = node.at_xpath(xpath_perf_rate)
|
100
|
+
pref_rate_value = {}
|
101
|
+
if perf_rate != nil
|
102
|
+
if perf_rate.at_xpath("./@nullFlavor")
|
103
|
+
pref_rate_value["nullFlavor"] = "NA"
|
104
|
+
return pref_rate_value
|
105
|
+
else
|
106
|
+
pref_rate_value["value"] = perf_rate.at_xpath("./@value").value
|
107
|
+
return pref_rate_value
|
108
|
+
end
|
109
|
+
end
|
110
|
+
return nil
|
111
|
+
end
|
112
|
+
# convert numbers in value nodes to Int / Float as necessary TODO add more types other than 'REAL'
|
113
|
+
def convert_value(value_node)
|
114
|
+
if value_node.nil?
|
115
|
+
return
|
116
|
+
end
|
117
|
+
if value_node['type'] == 'REAL' || value_node['value'].include?('.')
|
118
|
+
return value_node['value'].to_f
|
119
|
+
else
|
120
|
+
return value_node['value'].to_i
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
#given an observation node with an aggregate count node, return the reported and expected value within the count node
|
125
|
+
def get_cv_value(node, cv_id)
|
126
|
+
xpath_value = %{cda:entryRelationship/cda:observation[./cda:templateId[@root="2.16.840.1.113883.10.20.27.3.2"] and ./cda:reference/cda:externalObservation/cda:id[#{translate("@root")}='#{cv_id.upcase}']]/cda:value}
|
127
|
+
|
128
|
+
value_node = node.at_xpath(xpath_value)
|
129
|
+
value = convert_value(value_node) if value_node
|
130
|
+
value
|
131
|
+
end
|
132
|
+
|
133
|
+
#given an observation node with an aggregate count node, return the reported and expected value within the count node
|
134
|
+
def get_aggregate_count(node)
|
135
|
+
xpath_value = 'cda:entryRelationship/cda:observation[./cda:templateId[@root="2.16.840.1.113883.10.20.27.3.3"]]/cda:value'
|
136
|
+
value_node = node.at_xpath(xpath_value)
|
137
|
+
value = convert_value(value_node) if value_node
|
138
|
+
value
|
139
|
+
end
|
140
|
+
|
141
|
+
def extract_supplemental_data(cv)
|
142
|
+
ret = {}
|
143
|
+
supplemental_data_mapping = {"RACE"=> "2.16.840.1.113883.10.20.27.3.8",
|
144
|
+
"ETHNICITY" => "2.16.840.1.113883.10.20.27.3.7",
|
145
|
+
"SEX" => "2.16.840.1.113883.10.20.27.3.6",
|
146
|
+
"PAYER" => "2.16.840.1.113883.10.20.27.3.9"}
|
147
|
+
supplemental_data_mapping.each_pair do |supp, id|
|
148
|
+
key_hash = {}
|
149
|
+
xpath = "cda:entryRelationship/cda:observation[cda:templateId[@root='#{id}']]"
|
150
|
+
(cv.xpath(xpath) || []).each do |node|
|
151
|
+
value = node.at_xpath('cda:value')
|
152
|
+
count = get_aggregate_count(node)
|
153
|
+
if value.at_xpath("./@nullFlavor")
|
154
|
+
if supp == "PAYER" && value['xsi:type'] == 'CD' && value['nullFlavor'] == 'OTH' && value.at_xpath("cda:translation") && value.at_xpath("cda:translation")['code']
|
155
|
+
key_hash[value.at_xpath("cda:translation")['code']] = count
|
156
|
+
else
|
157
|
+
key_hash["UNK"] = count
|
158
|
+
end
|
159
|
+
else
|
160
|
+
key_hash[value['code']] = count
|
161
|
+
end
|
162
|
+
end
|
163
|
+
ret[supp.to_s] = key_hash
|
164
|
+
end
|
165
|
+
ret
|
166
|
+
end
|
167
|
+
|
168
|
+
def translate(id)
|
169
|
+
%{translate(#{id}, "abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ")}
|
170
|
+
end
|
171
|
+
end
|
172
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<xs:schema targetNamespace="urn:hl7-org:v3" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:sdtc="urn:hl7-org:sdtc" xmlns="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif"
|
3
|
+
elementFormDefault="qualified">
|
4
|
+
<xs:annotation>
|
5
|
+
<xs:documentation>XML schema for message type POCD_MT000040.</xs:documentation>
|
6
|
+
<xs:documentation>
|
7
|
+
Copyright (c) 2015 Health Level Seven.
|
8
|
+
All rights reserved.
|
9
|
+
|
10
|
+
Redistribution and use in source and binary forms, with or
|
11
|
+
without modification, are permitted provided that the following
|
12
|
+
conditions are met:
|
13
|
+
1. Redistributions of source code must retain the above
|
14
|
+
copyright notice, this list of conditions and the following
|
15
|
+
disclaimer.
|
16
|
+
2. Redistributions in binary form must reproduce the above
|
17
|
+
copyright notice, this list of conditions and the following
|
18
|
+
disclaimer in the documentation and/or other materials
|
19
|
+
provided with the distribution.
|
20
|
+
3. All advertising materials mentioning features or use of this
|
21
|
+
software must display the following acknowledgement:
|
22
|
+
|
23
|
+
This product includes software developed by Health Level Seven.
|
24
|
+
|
25
|
+
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS
|
26
|
+
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
|
27
|
+
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
28
|
+
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
29
|
+
SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
30
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
31
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
32
|
+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
33
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
34
|
+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
35
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
36
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
37
|
+
DAMAGE.
|
38
|
+
</xs:documentation>
|
39
|
+
<xs:documentation>2012-07-06 Created CDA_SDTC.xsd (this file) which is an edited version of CDA.xsd pointing to extension namespace SDTC.</xs:documentation>
|
40
|
+
</xs:annotation>
|
41
|
+
<!-- Edited to point to new file with extensions -->
|
42
|
+
<xs:include schemaLocation="POCD_MT000040_SDTC.xsd"/>
|
43
|
+
<xs:element name="ClinicalDocument" type="POCD_MT000040.ClinicalDocument"/>
|
44
|
+
</xs:schema>
|
@@ -0,0 +1,1500 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<xs:schema targetNamespace="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns="urn:hl7-org:v3"
|
3
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" xmlns:sdtc="urn:hl7-org:sdtc">
|
4
|
+
<xs:annotation>
|
5
|
+
<xs:documentation>XML schema for message type POCD_MT000040.</xs:documentation>
|
6
|
+
<xs:documentation>
|
7
|
+
Copyright (c) 2015 Health Level Seven.
|
8
|
+
All rights reserved.
|
9
|
+
|
10
|
+
Redistribution and use in source and binary forms, with or
|
11
|
+
without modification, are permitted provided that the following
|
12
|
+
conditions are met:
|
13
|
+
1. Redistributions of source code must retain the above
|
14
|
+
copyright notice, this list of conditions and the following
|
15
|
+
disclaimer.
|
16
|
+
2. Redistributions in binary form must reproduce the above
|
17
|
+
copyright notice, this list of conditions and the following
|
18
|
+
disclaimer in the documentation and/or other materials
|
19
|
+
provided with the distribution.
|
20
|
+
3. All advertising materials mentioning features or use of this
|
21
|
+
software must display the following acknowledgement:
|
22
|
+
|
23
|
+
This product includes software developed by Health Level Seven.
|
24
|
+
|
25
|
+
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS
|
26
|
+
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
|
27
|
+
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
28
|
+
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
29
|
+
SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
30
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
31
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
32
|
+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
33
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
34
|
+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
35
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
36
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
37
|
+
DAMAGE.
|
38
|
+
</xs:documentation>
|
39
|
+
<xs:documentation>
|
40
|
+
2012-07-06 Created POCD_MT000040_SDTC.xsd (this file) this file is an edited version of POCD_MT000040.xsd that contains the SDTC extensions.
|
41
|
+
</xs:documentation>
|
42
|
+
<xs:documentation>
|
43
|
+
2012-07-06 Added extensions approved by SDWG prior to 2012-07-06:
|
44
|
+
RelatedSubject/sdtc:id,
|
45
|
+
SubjectPerson/sdtc:id,
|
46
|
+
Patient/sdtc:deceasedInd,
|
47
|
+
SubjectPerson/sdtc:deceasedInd,
|
48
|
+
Patient/sdtc:deceasedTime,
|
49
|
+
SubjectPerson/sdtc:deceasedTime,
|
50
|
+
Encounter/sdtc:dischargeDispositionCode,
|
51
|
+
Patient/sdtc:raceCode,
|
52
|
+
SubjectPerson/sdtc:raceCode,
|
53
|
+
PlayingEntity/sdtc:birthTime
|
54
|
+
</xs:documentation>
|
55
|
+
<xs:documentation>
|
56
|
+
2014-07-14 Added extensions approved by SDWG on xxxx date:
|
57
|
+
Authenticator/sdtc:signatureText,
|
58
|
+
LegalAuthenticator/sdtc:signatureText
|
59
|
+
</xs:documentation>
|
60
|
+
<xs:documentation>
|
61
|
+
2015-04-01 Added extensions approved by SDWG on 2014-11-xx:
|
62
|
+
Patient/sdtc:multipleBirthInd,
|
63
|
+
SubjectPerson/sdtc:multipleBirthInd,
|
64
|
+
Patient/sdtc:multipleBirthOrderNumber,
|
65
|
+
SubjectPerson/sdtc:multipleBirthOrderNumber
|
66
|
+
Added extensions approved by SDWG on 2014-12-18:
|
67
|
+
Patient/sdtc:ethnicGroupCode,
|
68
|
+
SubjectPerson/sdtc:ethnicGroupCode
|
69
|
+
</xs:documentation>
|
70
|
+
<xs:documentation>
|
71
|
+
2015-04-01 Added extension approved by SDWG on 2014-01-xx:
|
72
|
+
ClinicalDocument/sdtc:statusCode
|
73
|
+
</xs:documentation>
|
74
|
+
<xs:documentation>
|
75
|
+
2015-04-01 Added extension approved by SDWG on 2015-03-05:
|
76
|
+
Patient/sdtc:desc
|
77
|
+
SubjectPerson/sdtc:desc
|
78
|
+
Person/sdtc:desc
|
79
|
+
</xs:documentation>
|
80
|
+
<xs:documentation>
|
81
|
+
2015-04-01 Added extension approved by SDWG on 2015-03-05:
|
82
|
+
AssignedEntity/sdtc:patient
|
83
|
+
</xs:documentation>
|
84
|
+
<xs:documentation>
|
85
|
+
2015-04-01 Added extension approved by SDWG on 2015-03-19:
|
86
|
+
Observation/sdtc:inFulfillmentOf1
|
87
|
+
SubstanceAdministration/sdtc:inFulfillmentOf1
|
88
|
+
Supply/sdtc:inFulfillmentOf1
|
89
|
+
Procedure/sdtc:inFulfillmentOf1
|
90
|
+
Encounter/sdtc:inFulfillmentOf1
|
91
|
+
Act/sdtc:inFulfillmentOf1
|
92
|
+
</xs:documentation>
|
93
|
+
<xs:documentation>
|
94
|
+
2015-04-01 Added extension approved by SDWG on 2015-03-05:
|
95
|
+
Person/sdtc:asPatientRelationship
|
96
|
+
</xs:documentation>
|
97
|
+
|
98
|
+
</xs:annotation>
|
99
|
+
<xs:include schemaLocation="../../processable/coreschemas/datatypes.xsd" />
|
100
|
+
<xs:include schemaLocation="../../processable/coreschemas/voc.xsd" />
|
101
|
+
<xs:include schemaLocation="../../processable/coreschemas/NarrativeBlock.xsd" />
|
102
|
+
<!-- Added SDTC namespace which holds the SDTC extensions -->
|
103
|
+
<xs:import namespace="urn:hl7-org:sdtc" schemaLocation="SDTC.xsd" />
|
104
|
+
<xs:complexType name="POCD_MT000040.InfrastructureRoot.typeId">
|
105
|
+
<xs:complexContent>
|
106
|
+
<xs:restriction base="II">
|
107
|
+
<xs:attribute name="root" type="uid" use="required" fixed="2.16.840.1.113883.1.3" />
|
108
|
+
<xs:attribute name="extension" type="st" use="required" />
|
109
|
+
</xs:restriction>
|
110
|
+
</xs:complexContent>
|
111
|
+
</xs:complexType>
|
112
|
+
<xs:complexType name="POCD_MT000040.Act">
|
113
|
+
<xs:sequence>
|
114
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
115
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
116
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
117
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
118
|
+
<xs:element name="code" type="CD" />
|
119
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
120
|
+
<xs:element name="statusCode" type="CS" minOccurs="0" />
|
121
|
+
<xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" />
|
122
|
+
<xs:element name="priorityCode" type="CE" minOccurs="0" />
|
123
|
+
<xs:element name="languageCode" type="CS" minOccurs="0" />
|
124
|
+
<xs:element name="subject" type="POCD_MT000040.Subject" minOccurs="0" />
|
125
|
+
<xs:element name="specimen" type="POCD_MT000040.Specimen" minOccurs="0" maxOccurs="unbounded" />
|
126
|
+
<xs:element name="performer" type="POCD_MT000040.Performer2" minOccurs="0" maxOccurs="unbounded" />
|
127
|
+
<xs:element name="author" type="POCD_MT000040.Author" minOccurs="0" maxOccurs="unbounded" />
|
128
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
129
|
+
<xs:element name="participant" type="POCD_MT000040.Participant2" minOccurs="0" maxOccurs="unbounded" />
|
130
|
+
<xs:element name="entryRelationship" type="POCD_MT000040.EntryRelationship" minOccurs="0"
|
131
|
+
maxOccurs="unbounded" />
|
132
|
+
<xs:element name="reference" type="POCD_MT000040.Reference" minOccurs="0" maxOccurs="unbounded" />
|
133
|
+
<xs:element name="precondition" type="POCD_MT000040.Precondition" minOccurs="0" maxOccurs="unbounded" />
|
134
|
+
<!-- Begin Extension: (SDTC) -->
|
135
|
+
<xs:element ref="sdtc:inFulfillmentOf1" minOccurs="0" maxOccurs="unbounded" />
|
136
|
+
<!-- End Extension: (SDTC) -->
|
137
|
+
</xs:sequence>
|
138
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
139
|
+
<xs:attribute name="classCode" type="x_ActClassDocumentEntryAct" use="required" />
|
140
|
+
<xs:attribute name="moodCode" type="x_DocumentActMood" use="required" />
|
141
|
+
<xs:attribute name="negationInd" type="bl" use="optional" />
|
142
|
+
</xs:complexType>
|
143
|
+
<xs:complexType name="POCD_MT000040.AssignedAuthor">
|
144
|
+
<xs:sequence>
|
145
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
146
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
147
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
148
|
+
<xs:element name="id" type="II" maxOccurs="unbounded" />
|
149
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
150
|
+
<xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded" />
|
151
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded" />
|
152
|
+
<xs:choice>
|
153
|
+
<xs:element name="assignedPerson" type="POCD_MT000040.Person" minOccurs="0" />
|
154
|
+
<xs:element name="assignedAuthoringDevice" type="POCD_MT000040.AuthoringDevice" minOccurs="0" />
|
155
|
+
</xs:choice>
|
156
|
+
<xs:element name="representedOrganization" type="POCD_MT000040.Organization" minOccurs="0" />
|
157
|
+
</xs:sequence>
|
158
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
159
|
+
<xs:attribute name="classCode" type="RoleClassAssignedEntity" use="optional" fixed="ASSIGNED" />
|
160
|
+
</xs:complexType>
|
161
|
+
<xs:complexType name="POCD_MT000040.AssignedCustodian">
|
162
|
+
<xs:sequence>
|
163
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
164
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
165
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
166
|
+
<xs:element name="representedCustodianOrganization" type="POCD_MT000040.CustodianOrganization" />
|
167
|
+
</xs:sequence>
|
168
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
169
|
+
<xs:attribute name="classCode" type="RoleClassAssignedEntity" use="optional" fixed="ASSIGNED" />
|
170
|
+
</xs:complexType>
|
171
|
+
<xs:complexType name="POCD_MT000040.AssignedEntity">
|
172
|
+
<xs:sequence>
|
173
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
174
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
175
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
176
|
+
<xs:element name="id" type="II" maxOccurs="unbounded" />
|
177
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
178
|
+
<xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded" />
|
179
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded" />
|
180
|
+
<xs:element name="assignedPerson" type="POCD_MT000040.Person" minOccurs="0" />
|
181
|
+
<xs:element name="representedOrganization" type="POCD_MT000040.Organization" minOccurs="0" />
|
182
|
+
<!-- Begin Extension: (SDTC) -->
|
183
|
+
<xs:element ref="sdtc:patient" minOccurs="0" />
|
184
|
+
<!-- End Extension: (SDTC) -->
|
185
|
+
</xs:sequence>
|
186
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
187
|
+
<xs:attribute name="classCode" type="RoleClassAssignedEntity" use="optional" fixed="ASSIGNED" />
|
188
|
+
</xs:complexType>
|
189
|
+
<xs:complexType name="POCD_MT000040.AssociatedEntity">
|
190
|
+
<xs:sequence>
|
191
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
192
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
193
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
194
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
195
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
196
|
+
<xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded" />
|
197
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded" />
|
198
|
+
<xs:element name="associatedPerson" type="POCD_MT000040.Person" minOccurs="0" />
|
199
|
+
<xs:element name="scopingOrganization" type="POCD_MT000040.Organization" minOccurs="0" />
|
200
|
+
</xs:sequence>
|
201
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
202
|
+
<xs:attribute name="classCode" type="RoleClassAssociative" use="required" />
|
203
|
+
</xs:complexType>
|
204
|
+
<xs:complexType name="POCD_MT000040.Authenticator">
|
205
|
+
<xs:sequence>
|
206
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
207
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
208
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
209
|
+
<xs:element name="time" type="TS" />
|
210
|
+
<xs:element name="signatureCode" type="CS" />
|
211
|
+
<!-- Begin Extension: (SDTC) -->
|
212
|
+
<xs:element ref="sdtc:signatureText" minOccurs="0" />
|
213
|
+
<!-- End Extension: (SDTC) -->
|
214
|
+
<xs:element name="assignedEntity" type="POCD_MT000040.AssignedEntity" />
|
215
|
+
</xs:sequence>
|
216
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
217
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="AUTHEN" />
|
218
|
+
</xs:complexType>
|
219
|
+
<xs:complexType name="POCD_MT000040.Author">
|
220
|
+
<xs:sequence>
|
221
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
222
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
223
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
224
|
+
<xs:element name="functionCode" type="CE" minOccurs="0" />
|
225
|
+
<xs:element name="time" type="TS" />
|
226
|
+
<xs:element name="assignedAuthor" type="POCD_MT000040.AssignedAuthor" />
|
227
|
+
</xs:sequence>
|
228
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
229
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="AUT" />
|
230
|
+
<xs:attribute name="contextControlCode" type="ContextControl" use="optional" fixed="OP" />
|
231
|
+
</xs:complexType>
|
232
|
+
<xs:complexType name="POCD_MT000040.AuthoringDevice">
|
233
|
+
<xs:sequence>
|
234
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
235
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
236
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
237
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
238
|
+
<xs:element name="manufacturerModelName" type="SC" minOccurs="0" />
|
239
|
+
<xs:element name="softwareName" type="SC" minOccurs="0" />
|
240
|
+
<xs:element name="asMaintainedEntity" type="POCD_MT000040.MaintainedEntity" minOccurs="0"
|
241
|
+
maxOccurs="unbounded" />
|
242
|
+
</xs:sequence>
|
243
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
244
|
+
<xs:attribute name="classCode" type="EntityClassDevice" use="optional" fixed="DEV" />
|
245
|
+
<xs:attribute name="determinerCode" type="EntityDeterminer" use="optional" fixed="INSTANCE" />
|
246
|
+
</xs:complexType>
|
247
|
+
<xs:complexType name="POCD_MT000040.Authorization">
|
248
|
+
<xs:sequence>
|
249
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
250
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
251
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
252
|
+
<xs:element name="consent" type="POCD_MT000040.Consent" />
|
253
|
+
</xs:sequence>
|
254
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
255
|
+
<xs:attribute name="typeCode" type="ActRelationshipType" use="optional" fixed="AUTH" />
|
256
|
+
</xs:complexType>
|
257
|
+
<xs:complexType name="POCD_MT000040.Birthplace">
|
258
|
+
<xs:sequence>
|
259
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
260
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
261
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
262
|
+
<xs:element name="place" type="POCD_MT000040.Place" />
|
263
|
+
</xs:sequence>
|
264
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
265
|
+
<xs:attribute name="classCode" type="RoleClass" use="optional" fixed="BIRTHPL" />
|
266
|
+
</xs:complexType>
|
267
|
+
<xs:complexType name="POCD_MT000040.ClinicalDocument">
|
268
|
+
<xs:sequence>
|
269
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
270
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" />
|
271
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
272
|
+
<xs:element name="id" type="II" />
|
273
|
+
<xs:element name="code" type="CE" />
|
274
|
+
<xs:element name="title" type="ST" minOccurs="0" />
|
275
|
+
<!-- Begin Extension: (SDTC) -->
|
276
|
+
<xs:element ref="sdtc:statusCode" minOccurs="0" />
|
277
|
+
<!-- End Extension: (SDTC) -->
|
278
|
+
<xs:element name="effectiveTime" type="TS" />
|
279
|
+
<xs:element name="confidentialityCode" type="CE" />
|
280
|
+
<xs:element name="languageCode" type="CS" minOccurs="0" />
|
281
|
+
<xs:element name="setId" type="II" minOccurs="0" />
|
282
|
+
<xs:element name="versionNumber" type="INT" minOccurs="0" />
|
283
|
+
<xs:element name="copyTime" type="TS" minOccurs="0" />
|
284
|
+
<xs:element name="recordTarget" type="POCD_MT000040.RecordTarget" maxOccurs="unbounded" />
|
285
|
+
<xs:element name="author" type="POCD_MT000040.Author" maxOccurs="unbounded" />
|
286
|
+
<xs:element name="dataEnterer" type="POCD_MT000040.DataEnterer" minOccurs="0" />
|
287
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
288
|
+
<xs:element name="custodian" type="POCD_MT000040.Custodian" />
|
289
|
+
<xs:element name="informationRecipient" type="POCD_MT000040.InformationRecipient" minOccurs="0"
|
290
|
+
maxOccurs="unbounded" />
|
291
|
+
<xs:element name="legalAuthenticator" type="POCD_MT000040.LegalAuthenticator" minOccurs="0" />
|
292
|
+
<xs:element name="authenticator" type="POCD_MT000040.Authenticator" minOccurs="0" maxOccurs="unbounded" />
|
293
|
+
<xs:element name="participant" type="POCD_MT000040.Participant1" minOccurs="0" maxOccurs="unbounded" />
|
294
|
+
<xs:element name="inFulfillmentOf" type="POCD_MT000040.InFulfillmentOf" minOccurs="0" maxOccurs="unbounded" />
|
295
|
+
<xs:element name="documentationOf" type="POCD_MT000040.DocumentationOf" minOccurs="0" maxOccurs="unbounded" />
|
296
|
+
<xs:element name="relatedDocument" type="POCD_MT000040.RelatedDocument" minOccurs="0" maxOccurs="unbounded" />
|
297
|
+
<xs:element name="authorization" type="POCD_MT000040.Authorization" minOccurs="0" maxOccurs="unbounded" />
|
298
|
+
<xs:element name="componentOf" type="POCD_MT000040.Component1" minOccurs="0" />
|
299
|
+
<xs:element name="component" type="POCD_MT000040.Component2" />
|
300
|
+
</xs:sequence>
|
301
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
302
|
+
<xs:attribute name="classCode" type="ActClinicalDocument" use="optional" fixed="DOCCLIN" />
|
303
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
304
|
+
</xs:complexType>
|
305
|
+
<xs:complexType name="POCD_MT000040.Component1">
|
306
|
+
<xs:sequence>
|
307
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
308
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
309
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
310
|
+
<xs:element name="encompassingEncounter" type="POCD_MT000040.EncompassingEncounter" />
|
311
|
+
</xs:sequence>
|
312
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
313
|
+
<xs:attribute name="typeCode" type="ActRelationshipHasComponent" use="optional" fixed="COMP" />
|
314
|
+
</xs:complexType>
|
315
|
+
<xs:complexType name="POCD_MT000040.Component2">
|
316
|
+
<xs:sequence>
|
317
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
318
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
319
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
320
|
+
<xs:choice>
|
321
|
+
<xs:element name="nonXMLBody" type="POCD_MT000040.NonXMLBody" />
|
322
|
+
<xs:element name="structuredBody" type="POCD_MT000040.StructuredBody" />
|
323
|
+
</xs:choice>
|
324
|
+
</xs:sequence>
|
325
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
326
|
+
<xs:attribute name="typeCode" type="ActRelationshipHasComponent" use="optional" fixed="COMP" />
|
327
|
+
<xs:attribute name="contextConductionInd" type="bl" use="optional" fixed="true" />
|
328
|
+
</xs:complexType>
|
329
|
+
<xs:complexType name="POCD_MT000040.Component3">
|
330
|
+
<xs:sequence>
|
331
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
332
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
333
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
334
|
+
<xs:element name="section" type="POCD_MT000040.Section" />
|
335
|
+
</xs:sequence>
|
336
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
337
|
+
<xs:attribute name="typeCode" type="ActRelationshipHasComponent" use="optional" fixed="COMP" />
|
338
|
+
<xs:attribute name="contextConductionInd" type="bl" use="optional" fixed="true" />
|
339
|
+
</xs:complexType>
|
340
|
+
<xs:complexType name="POCD_MT000040.Component4">
|
341
|
+
<xs:sequence>
|
342
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
343
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
344
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
345
|
+
<xs:element name="sequenceNumber" type="INT" minOccurs="0" />
|
346
|
+
<xs:element name="seperatableInd" type="BL" minOccurs="0" />
|
347
|
+
<xs:choice>
|
348
|
+
<xs:element name="act" type="POCD_MT000040.Act" />
|
349
|
+
<xs:element name="encounter" type="POCD_MT000040.Encounter" />
|
350
|
+
<xs:element name="observation" type="POCD_MT000040.Observation" />
|
351
|
+
<xs:element name="observationMedia" type="POCD_MT000040.ObservationMedia" />
|
352
|
+
<xs:element name="organizer" type="POCD_MT000040.Organizer" />
|
353
|
+
<xs:element name="procedure" type="POCD_MT000040.Procedure" />
|
354
|
+
<xs:element name="regionOfInterest" type="POCD_MT000040.RegionOfInterest" />
|
355
|
+
<xs:element name="substanceAdministration" type="POCD_MT000040.SubstanceAdministration" />
|
356
|
+
<xs:element name="supply" type="POCD_MT000040.Supply" />
|
357
|
+
</xs:choice>
|
358
|
+
</xs:sequence>
|
359
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
360
|
+
<xs:attribute name="typeCode" type="ActRelationshipHasComponent" use="optional" fixed="COMP" />
|
361
|
+
<xs:attribute name="contextConductionInd" type="bl" use="optional" fixed="true" />
|
362
|
+
</xs:complexType>
|
363
|
+
<xs:complexType name="POCD_MT000040.Component5">
|
364
|
+
<xs:sequence>
|
365
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
366
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
367
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
368
|
+
<xs:element name="section" type="POCD_MT000040.Section" />
|
369
|
+
</xs:sequence>
|
370
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
371
|
+
<xs:attribute name="typeCode" type="ActRelationshipHasComponent" use="optional" fixed="COMP" />
|
372
|
+
<xs:attribute name="contextConductionInd" type="bl" use="optional" fixed="true" />
|
373
|
+
</xs:complexType>
|
374
|
+
<xs:complexType name="POCD_MT000040.Consent">
|
375
|
+
<xs:sequence>
|
376
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
377
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
378
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
379
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
380
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
381
|
+
<xs:element name="statusCode" type="CS" />
|
382
|
+
</xs:sequence>
|
383
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
384
|
+
<xs:attribute name="classCode" type="ActClass" use="optional" fixed="CONS" />
|
385
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
386
|
+
</xs:complexType>
|
387
|
+
<xs:complexType name="POCD_MT000040.Consumable">
|
388
|
+
<xs:sequence>
|
389
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
390
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
391
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
392
|
+
<xs:element name="manufacturedProduct" type="POCD_MT000040.ManufacturedProduct" />
|
393
|
+
</xs:sequence>
|
394
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
395
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="CSM" />
|
396
|
+
</xs:complexType>
|
397
|
+
<xs:complexType name="POCD_MT000040.Criterion">
|
398
|
+
<xs:sequence>
|
399
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
400
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
401
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
402
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
403
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
404
|
+
<xs:element name="value" type="ANY" minOccurs="0" />
|
405
|
+
</xs:sequence>
|
406
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
407
|
+
<xs:attribute name="classCode" type="ActClassObservation" use="optional" default="OBS" />
|
408
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN.CRT" />
|
409
|
+
</xs:complexType>
|
410
|
+
<xs:complexType name="POCD_MT000040.Custodian">
|
411
|
+
<xs:sequence>
|
412
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
413
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
414
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
415
|
+
<xs:element name="assignedCustodian" type="POCD_MT000040.AssignedCustodian" />
|
416
|
+
</xs:sequence>
|
417
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
418
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="CST" />
|
419
|
+
</xs:complexType>
|
420
|
+
<xs:complexType name="POCD_MT000040.CustodianOrganization">
|
421
|
+
<xs:sequence>
|
422
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
423
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
424
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
425
|
+
<xs:element name="id" type="II" maxOccurs="unbounded" />
|
426
|
+
<xs:element name="name" type="ON" minOccurs="0" />
|
427
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" />
|
428
|
+
<xs:element name="addr" type="AD" minOccurs="0" />
|
429
|
+
</xs:sequence>
|
430
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
431
|
+
<xs:attribute name="classCode" type="EntityClassOrganization" use="optional" fixed="ORG" />
|
432
|
+
<xs:attribute name="determinerCode" type="EntityDeterminer" use="optional" fixed="INSTANCE" />
|
433
|
+
</xs:complexType>
|
434
|
+
<xs:complexType name="POCD_MT000040.DataEnterer">
|
435
|
+
<xs:sequence>
|
436
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
437
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
438
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
439
|
+
<xs:element name="time" type="TS" minOccurs="0" />
|
440
|
+
<xs:element name="assignedEntity" type="POCD_MT000040.AssignedEntity" />
|
441
|
+
</xs:sequence>
|
442
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
443
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="ENT" />
|
444
|
+
<xs:attribute name="contextControlCode" type="ContextControl" use="optional" fixed="OP" />
|
445
|
+
</xs:complexType>
|
446
|
+
<xs:complexType name="POCD_MT000040.Device">
|
447
|
+
<xs:sequence>
|
448
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
449
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
450
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
451
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
452
|
+
<xs:element name="manufacturerModelName" type="SC" minOccurs="0" />
|
453
|
+
<xs:element name="softwareName" type="SC" minOccurs="0" />
|
454
|
+
</xs:sequence>
|
455
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
456
|
+
<xs:attribute name="classCode" type="EntityClassDevice" use="optional" default="DEV" />
|
457
|
+
<xs:attribute name="determinerCode" type="EntityDeterminer" use="optional" fixed="INSTANCE" />
|
458
|
+
</xs:complexType>
|
459
|
+
<xs:complexType name="POCD_MT000040.DocumentationOf">
|
460
|
+
<xs:sequence>
|
461
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
462
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
463
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
464
|
+
<xs:element name="serviceEvent" type="POCD_MT000040.ServiceEvent" />
|
465
|
+
</xs:sequence>
|
466
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
467
|
+
<xs:attribute name="typeCode" type="ActRelationshipType" use="optional" fixed="DOC" />
|
468
|
+
</xs:complexType>
|
469
|
+
<xs:complexType name="POCD_MT000040.EncompassingEncounter">
|
470
|
+
<xs:sequence>
|
471
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
472
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
473
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
474
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
475
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
476
|
+
<xs:element name="effectiveTime" type="IVL_TS" />
|
477
|
+
<xs:element name="dischargeDispositionCode" type="CE" minOccurs="0" />
|
478
|
+
<xs:element name="responsibleParty" type="POCD_MT000040.ResponsibleParty" minOccurs="0" />
|
479
|
+
<xs:element name="encounterParticipant" type="POCD_MT000040.EncounterParticipant" minOccurs="0"
|
480
|
+
maxOccurs="unbounded" />
|
481
|
+
<xs:element name="location" type="POCD_MT000040.Location" minOccurs="0" />
|
482
|
+
</xs:sequence>
|
483
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
484
|
+
<xs:attribute name="classCode" type="ActClass" use="optional" fixed="ENC" />
|
485
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
486
|
+
</xs:complexType>
|
487
|
+
<xs:complexType name="POCD_MT000040.Encounter">
|
488
|
+
<xs:sequence>
|
489
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
490
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
491
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
492
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
493
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
494
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
495
|
+
<xs:element name="statusCode" type="CS" minOccurs="0" />
|
496
|
+
<xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" />
|
497
|
+
<!-- Begin Extension: (SDTC) -->
|
498
|
+
<xs:element ref="sdtc:dischargeDispositionCode" minOccurs="0" />
|
499
|
+
<!-- End Extension: (SDTC) -->
|
500
|
+
<xs:element name="priorityCode" type="CE" minOccurs="0" />
|
501
|
+
<xs:element name="subject" type="POCD_MT000040.Subject" minOccurs="0" />
|
502
|
+
<xs:element name="specimen" type="POCD_MT000040.Specimen" minOccurs="0" maxOccurs="unbounded" />
|
503
|
+
<xs:element name="performer" type="POCD_MT000040.Performer2" minOccurs="0" maxOccurs="unbounded" />
|
504
|
+
<xs:element name="author" type="POCD_MT000040.Author" minOccurs="0" maxOccurs="unbounded" />
|
505
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
506
|
+
<xs:element name="participant" type="POCD_MT000040.Participant2" minOccurs="0" maxOccurs="unbounded" />
|
507
|
+
<xs:element name="entryRelationship" type="POCD_MT000040.EntryRelationship" minOccurs="0"
|
508
|
+
maxOccurs="unbounded" />
|
509
|
+
<xs:element name="reference" type="POCD_MT000040.Reference" minOccurs="0" maxOccurs="unbounded" />
|
510
|
+
<xs:element name="precondition" type="POCD_MT000040.Precondition" minOccurs="0" maxOccurs="unbounded" />
|
511
|
+
<!-- Begin Extension: (SDTC) -->
|
512
|
+
<xs:element ref="sdtc:inFulfillmentOf1" minOccurs="0" maxOccurs="unbounded" />
|
513
|
+
<!-- End Extension: (SDTC) -->
|
514
|
+
</xs:sequence>
|
515
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
516
|
+
<xs:attribute name="classCode" type="ActClass" use="required" />
|
517
|
+
<xs:attribute name="moodCode" type="x_DocumentEncounterMood" use="required" />
|
518
|
+
</xs:complexType>
|
519
|
+
<xs:complexType name="POCD_MT000040.EncounterParticipant">
|
520
|
+
<xs:sequence>
|
521
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
522
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
523
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
524
|
+
<xs:element name="time" type="IVL_TS" minOccurs="0" />
|
525
|
+
<xs:element name="assignedEntity" type="POCD_MT000040.AssignedEntity" />
|
526
|
+
</xs:sequence>
|
527
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
528
|
+
<xs:attribute name="typeCode" type="x_EncounterParticipant" use="required" />
|
529
|
+
</xs:complexType>
|
530
|
+
<xs:complexType name="POCD_MT000040.Entity">
|
531
|
+
<xs:sequence>
|
532
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
533
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
534
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
535
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
536
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
537
|
+
<xs:element name="desc" type="ED" minOccurs="0" />
|
538
|
+
</xs:sequence>
|
539
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
540
|
+
<xs:attribute name="classCode" type="EntityClassRoot" use="optional" default="ENT" />
|
541
|
+
<xs:attribute name="determinerCode" type="EntityDeterminer" use="optional" fixed="INSTANCE" />
|
542
|
+
</xs:complexType>
|
543
|
+
<xs:complexType name="POCD_MT000040.Entry">
|
544
|
+
<xs:sequence>
|
545
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
546
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
547
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
548
|
+
<xs:choice>
|
549
|
+
<xs:element name="act" type="POCD_MT000040.Act" />
|
550
|
+
<xs:element name="encounter" type="POCD_MT000040.Encounter" />
|
551
|
+
<xs:element name="observation" type="POCD_MT000040.Observation" />
|
552
|
+
<xs:element name="observationMedia" type="POCD_MT000040.ObservationMedia" />
|
553
|
+
<xs:element name="organizer" type="POCD_MT000040.Organizer" />
|
554
|
+
<xs:element name="procedure" type="POCD_MT000040.Procedure" />
|
555
|
+
<xs:element name="regionOfInterest" type="POCD_MT000040.RegionOfInterest" />
|
556
|
+
<xs:element name="substanceAdministration" type="POCD_MT000040.SubstanceAdministration" />
|
557
|
+
<xs:element name="supply" type="POCD_MT000040.Supply" />
|
558
|
+
</xs:choice>
|
559
|
+
</xs:sequence>
|
560
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
561
|
+
<xs:attribute name="typeCode" type="x_ActRelationshipEntry" use="optional" default="COMP" />
|
562
|
+
<xs:attribute name="contextConductionInd" type="bl" use="optional" fixed="true" />
|
563
|
+
</xs:complexType>
|
564
|
+
<xs:complexType name="POCD_MT000040.EntryRelationship">
|
565
|
+
<xs:sequence>
|
566
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
567
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
568
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
569
|
+
<xs:element name="sequenceNumber" type="INT" minOccurs="0" />
|
570
|
+
<xs:element name="seperatableInd" type="BL" minOccurs="0" />
|
571
|
+
<xs:choice>
|
572
|
+
<xs:element name="act" type="POCD_MT000040.Act" />
|
573
|
+
<xs:element name="encounter" type="POCD_MT000040.Encounter" />
|
574
|
+
<xs:element name="observation" type="POCD_MT000040.Observation" />
|
575
|
+
<xs:element name="observationMedia" type="POCD_MT000040.ObservationMedia" />
|
576
|
+
<xs:element name="organizer" type="POCD_MT000040.Organizer" />
|
577
|
+
<xs:element name="procedure" type="POCD_MT000040.Procedure" />
|
578
|
+
<xs:element name="regionOfInterest" type="POCD_MT000040.RegionOfInterest" />
|
579
|
+
<xs:element name="substanceAdministration" type="POCD_MT000040.SubstanceAdministration" />
|
580
|
+
<xs:element name="supply" type="POCD_MT000040.Supply" />
|
581
|
+
</xs:choice>
|
582
|
+
</xs:sequence>
|
583
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
584
|
+
<xs:attribute name="typeCode" type="x_ActRelationshipEntryRelationship" use="required" />
|
585
|
+
<xs:attribute name="inversionInd" type="bl" use="optional" />
|
586
|
+
<xs:attribute name="contextConductionInd" type="bl" use="optional" default="true" />
|
587
|
+
<xs:attribute name="negationInd" type="bl" use="optional" />
|
588
|
+
</xs:complexType>
|
589
|
+
<xs:complexType name="POCD_MT000040.ExternalAct">
|
590
|
+
<xs:sequence>
|
591
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
592
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
593
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
594
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
595
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
596
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
597
|
+
</xs:sequence>
|
598
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
599
|
+
<xs:attribute name="classCode" type="ActClassRoot" use="optional" default="ACT" />
|
600
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
601
|
+
</xs:complexType>
|
602
|
+
<xs:complexType name="POCD_MT000040.ExternalDocument">
|
603
|
+
<xs:sequence>
|
604
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
605
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
606
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
607
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
608
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
609
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
610
|
+
<xs:element name="setId" type="II" minOccurs="0" />
|
611
|
+
<xs:element name="versionNumber" type="INT" minOccurs="0" />
|
612
|
+
</xs:sequence>
|
613
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
614
|
+
<xs:attribute name="classCode" type="ActClassDocument" use="optional" default="DOC" />
|
615
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
616
|
+
</xs:complexType>
|
617
|
+
<xs:complexType name="POCD_MT000040.ExternalObservation">
|
618
|
+
<xs:sequence>
|
619
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
620
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
621
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
622
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
623
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
624
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
625
|
+
</xs:sequence>
|
626
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
627
|
+
<xs:attribute name="classCode" type="ActClassObservation" use="optional" default="OBS" />
|
628
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
629
|
+
</xs:complexType>
|
630
|
+
<xs:complexType name="POCD_MT000040.ExternalProcedure">
|
631
|
+
<xs:sequence>
|
632
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
633
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
634
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
635
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
636
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
637
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
638
|
+
</xs:sequence>
|
639
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
640
|
+
<xs:attribute name="classCode" type="ActClass" use="optional" fixed="PROC" />
|
641
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
642
|
+
</xs:complexType>
|
643
|
+
<xs:complexType name="POCD_MT000040.Guardian">
|
644
|
+
<xs:sequence>
|
645
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
646
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
647
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
648
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
649
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
650
|
+
<xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded" />
|
651
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded" />
|
652
|
+
<xs:choice>
|
653
|
+
<xs:element name="guardianPerson" type="POCD_MT000040.Person" />
|
654
|
+
<xs:element name="guardianOrganization" type="POCD_MT000040.Organization" />
|
655
|
+
</xs:choice>
|
656
|
+
</xs:sequence>
|
657
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
658
|
+
<xs:attribute name="classCode" type="RoleClass" use="optional" fixed="GUARD" />
|
659
|
+
</xs:complexType>
|
660
|
+
<xs:complexType name="POCD_MT000040.HealthCareFacility">
|
661
|
+
<xs:sequence>
|
662
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
663
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
664
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
665
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
666
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
667
|
+
<xs:element name="location" type="POCD_MT000040.Place" minOccurs="0" />
|
668
|
+
<xs:element name="serviceProviderOrganization" type="POCD_MT000040.Organization" minOccurs="0" />
|
669
|
+
</xs:sequence>
|
670
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
671
|
+
<xs:attribute name="classCode" type="RoleClassServiceDeliveryLocation" use="optional" default="SDLOC" />
|
672
|
+
</xs:complexType>
|
673
|
+
<xs:complexType name="POCD_MT000040.Informant12">
|
674
|
+
<xs:sequence>
|
675
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
676
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
677
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
678
|
+
<xs:choice>
|
679
|
+
<xs:element name="assignedEntity" type="POCD_MT000040.AssignedEntity" />
|
680
|
+
<xs:element name="relatedEntity" type="POCD_MT000040.RelatedEntity" />
|
681
|
+
</xs:choice>
|
682
|
+
</xs:sequence>
|
683
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
684
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="INF" />
|
685
|
+
<xs:attribute name="contextControlCode" type="ContextControl" use="optional" fixed="OP" />
|
686
|
+
</xs:complexType>
|
687
|
+
<xs:complexType name="POCD_MT000040.InformationRecipient">
|
688
|
+
<xs:sequence>
|
689
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
690
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
691
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
692
|
+
<xs:element name="intendedRecipient" type="POCD_MT000040.IntendedRecipient" />
|
693
|
+
</xs:sequence>
|
694
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
695
|
+
<xs:attribute name="typeCode" type="x_InformationRecipient" use="optional" default="PRCP" />
|
696
|
+
</xs:complexType>
|
697
|
+
<xs:complexType name="POCD_MT000040.InFulfillmentOf">
|
698
|
+
<xs:sequence>
|
699
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
700
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
701
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
702
|
+
<xs:element name="order" type="POCD_MT000040.Order" />
|
703
|
+
</xs:sequence>
|
704
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
705
|
+
<xs:attribute name="typeCode" type="ActRelationshipFulfills" use="optional" fixed="FLFS" />
|
706
|
+
</xs:complexType>
|
707
|
+
<xs:complexType name="POCD_MT000040.IntendedRecipient">
|
708
|
+
<xs:sequence>
|
709
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
710
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
711
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
712
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
713
|
+
<xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded" />
|
714
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded" />
|
715
|
+
<xs:element name="informationRecipient" type="POCD_MT000040.Person" minOccurs="0" />
|
716
|
+
<xs:element name="receivedOrganization" type="POCD_MT000040.Organization" minOccurs="0" />
|
717
|
+
</xs:sequence>
|
718
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
719
|
+
<xs:attribute name="classCode" type="x_InformationRecipientRole" use="optional" default="ASSIGNED" />
|
720
|
+
</xs:complexType>
|
721
|
+
<xs:complexType name="POCD_MT000040.LabeledDrug">
|
722
|
+
<xs:sequence>
|
723
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
724
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
725
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
726
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
727
|
+
<xs:element name="name" type="EN" minOccurs="0" />
|
728
|
+
</xs:sequence>
|
729
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
730
|
+
<xs:attribute name="classCode" type="EntityClassManufacturedMaterial" use="optional" fixed="MMAT" />
|
731
|
+
<xs:attribute name="determinerCode" type="EntityDeterminerDetermined" use="optional" fixed="KIND" />
|
732
|
+
</xs:complexType>
|
733
|
+
<xs:complexType name="POCD_MT000040.LanguageCommunication">
|
734
|
+
<xs:sequence>
|
735
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
736
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
737
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
738
|
+
<xs:element name="languageCode" type="CS" minOccurs="0" />
|
739
|
+
<xs:element name="modeCode" type="CE" minOccurs="0" />
|
740
|
+
<xs:element name="proficiencyLevelCode" type="CE" minOccurs="0" />
|
741
|
+
<xs:element name="preferenceInd" type="BL" minOccurs="0" />
|
742
|
+
</xs:sequence>
|
743
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
744
|
+
</xs:complexType>
|
745
|
+
<xs:complexType name="POCD_MT000040.LegalAuthenticator">
|
746
|
+
<xs:sequence>
|
747
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
748
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
749
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
750
|
+
<xs:element name="time" type="TS" />
|
751
|
+
<xs:element name="signatureCode" type="CS" />
|
752
|
+
<!-- Begin Extension: (SDTC) -->
|
753
|
+
<xs:element ref="sdtc:signatureText" minOccurs="0" />
|
754
|
+
<!-- End Extension: (SDTC) -->
|
755
|
+
<xs:element name="assignedEntity" type="POCD_MT000040.AssignedEntity" />
|
756
|
+
</xs:sequence>
|
757
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
758
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="LA" />
|
759
|
+
<xs:attribute name="contextControlCode" type="ContextControl" use="optional" fixed="OP" />
|
760
|
+
</xs:complexType>
|
761
|
+
<xs:complexType name="POCD_MT000040.Location">
|
762
|
+
<xs:sequence>
|
763
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
764
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
765
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
766
|
+
<xs:element name="healthCareFacility" type="POCD_MT000040.HealthCareFacility" />
|
767
|
+
</xs:sequence>
|
768
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
769
|
+
<xs:attribute name="typeCode" type="ParticipationTargetLocation" use="optional" fixed="LOC" />
|
770
|
+
</xs:complexType>
|
771
|
+
<xs:complexType name="POCD_MT000040.MaintainedEntity">
|
772
|
+
<xs:sequence>
|
773
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
774
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
775
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
776
|
+
<xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" />
|
777
|
+
<xs:element name="maintainingPerson" type="POCD_MT000040.Person" />
|
778
|
+
</xs:sequence>
|
779
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
780
|
+
<xs:attribute name="classCode" type="RoleClass" use="optional" fixed="MNT" />
|
781
|
+
</xs:complexType>
|
782
|
+
<xs:complexType name="POCD_MT000040.ManufacturedProduct">
|
783
|
+
<xs:sequence>
|
784
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
785
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
786
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
787
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
788
|
+
<xs:choice>
|
789
|
+
<xs:element name="manufacturedLabeledDrug" type="POCD_MT000040.LabeledDrug" />
|
790
|
+
<xs:element name="manufacturedMaterial" type="POCD_MT000040.Material" />
|
791
|
+
</xs:choice>
|
792
|
+
<xs:element name="manufacturerOrganization" type="POCD_MT000040.Organization" minOccurs="0" />
|
793
|
+
</xs:sequence>
|
794
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
795
|
+
<xs:attribute name="classCode" type="RoleClassManufacturedProduct" use="optional" fixed="MANU" />
|
796
|
+
</xs:complexType>
|
797
|
+
<xs:complexType name="POCD_MT000040.Material">
|
798
|
+
<xs:sequence>
|
799
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
800
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
801
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
802
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
803
|
+
<xs:element name="name" type="EN" minOccurs="0" />
|
804
|
+
<xs:element name="lotNumberText" type="ST" minOccurs="0" />
|
805
|
+
</xs:sequence>
|
806
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
807
|
+
<xs:attribute name="classCode" type="EntityClassManufacturedMaterial" use="optional" fixed="MMAT" />
|
808
|
+
<xs:attribute name="determinerCode" type="EntityDeterminerDetermined" use="optional" fixed="KIND" />
|
809
|
+
</xs:complexType>
|
810
|
+
<xs:complexType name="POCD_MT000040.NonXMLBody">
|
811
|
+
<xs:sequence>
|
812
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
813
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
814
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
815
|
+
<xs:element name="text" type="ED" />
|
816
|
+
<xs:element name="confidentialityCode" type="CE" minOccurs="0" />
|
817
|
+
<xs:element name="languageCode" type="CS" minOccurs="0" />
|
818
|
+
</xs:sequence>
|
819
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
820
|
+
<xs:attribute name="classCode" type="ActClass" use="optional" fixed="DOCBODY" />
|
821
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
822
|
+
</xs:complexType>
|
823
|
+
<xs:complexType name="POCD_MT000040.Observation">
|
824
|
+
<xs:sequence>
|
825
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
826
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
827
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
828
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
829
|
+
<xs:element name="code" type="CD" />
|
830
|
+
<xs:element name="derivationExpr" type="ST" minOccurs="0" />
|
831
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
832
|
+
<xs:element name="statusCode" type="CS" minOccurs="0" />
|
833
|
+
<xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" />
|
834
|
+
<xs:element name="priorityCode" type="CE" minOccurs="0" />
|
835
|
+
<xs:element name="repeatNumber" type="IVL_INT" minOccurs="0" />
|
836
|
+
<xs:element name="languageCode" type="CS" minOccurs="0" />
|
837
|
+
<xs:element name="value" type="ANY" minOccurs="0" maxOccurs="unbounded" />
|
838
|
+
<xs:element name="interpretationCode" type="CE" minOccurs="0" maxOccurs="unbounded" />
|
839
|
+
<xs:element name="methodCode" type="CE" minOccurs="0" maxOccurs="unbounded" />
|
840
|
+
<xs:element name="targetSiteCode" type="CD" minOccurs="0" maxOccurs="unbounded" />
|
841
|
+
<xs:element name="subject" type="POCD_MT000040.Subject" minOccurs="0" />
|
842
|
+
<xs:element name="specimen" type="POCD_MT000040.Specimen" minOccurs="0" maxOccurs="unbounded" />
|
843
|
+
<xs:element name="performer" type="POCD_MT000040.Performer2" minOccurs="0" maxOccurs="unbounded" />
|
844
|
+
<xs:element name="author" type="POCD_MT000040.Author" minOccurs="0" maxOccurs="unbounded" />
|
845
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
846
|
+
<xs:element name="participant" type="POCD_MT000040.Participant2" minOccurs="0" maxOccurs="unbounded" />
|
847
|
+
<xs:element name="entryRelationship" type="POCD_MT000040.EntryRelationship" minOccurs="0"
|
848
|
+
maxOccurs="unbounded" />
|
849
|
+
<xs:element name="reference" type="POCD_MT000040.Reference" minOccurs="0" maxOccurs="unbounded" />
|
850
|
+
<xs:element name="precondition" type="POCD_MT000040.Precondition" minOccurs="0" maxOccurs="unbounded" />
|
851
|
+
<xs:element name="referenceRange" type="POCD_MT000040.ReferenceRange" minOccurs="0" maxOccurs="unbounded" />
|
852
|
+
<!-- Begin Extension: (SDTC) -->
|
853
|
+
<xs:element ref="sdtc:inFulfillmentOf1" minOccurs="0" maxOccurs="unbounded" />
|
854
|
+
<!-- End Extension: (SDTC) -->
|
855
|
+
</xs:sequence>
|
856
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
857
|
+
<xs:attribute name="classCode" type="ActClassObservation" use="required" />
|
858
|
+
<xs:attribute name="moodCode" type="x_ActMoodDocumentObservation" use="required" />
|
859
|
+
<xs:attribute name="negationInd" type="bl" use="optional" />
|
860
|
+
</xs:complexType>
|
861
|
+
<xs:complexType name="POCD_MT000040.ObservationMedia">
|
862
|
+
<xs:sequence>
|
863
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
864
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
865
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
866
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
867
|
+
<xs:element name="languageCode" type="CS" minOccurs="0" />
|
868
|
+
<xs:element name="value" type="ED" />
|
869
|
+
<xs:element name="subject" type="POCD_MT000040.Subject" minOccurs="0" />
|
870
|
+
<xs:element name="specimen" type="POCD_MT000040.Specimen" minOccurs="0" maxOccurs="unbounded" />
|
871
|
+
<xs:element name="performer" type="POCD_MT000040.Performer2" minOccurs="0" maxOccurs="unbounded" />
|
872
|
+
<xs:element name="author" type="POCD_MT000040.Author" minOccurs="0" maxOccurs="unbounded" />
|
873
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
874
|
+
<xs:element name="participant" type="POCD_MT000040.Participant2" minOccurs="0" maxOccurs="unbounded" />
|
875
|
+
<xs:element name="entryRelationship" type="POCD_MT000040.EntryRelationship" minOccurs="0"
|
876
|
+
maxOccurs="unbounded" />
|
877
|
+
<xs:element name="reference" type="POCD_MT000040.Reference" minOccurs="0" maxOccurs="unbounded" />
|
878
|
+
<xs:element name="precondition" type="POCD_MT000040.Precondition" minOccurs="0" maxOccurs="unbounded" />
|
879
|
+
</xs:sequence>
|
880
|
+
<xs:attribute name="ID" type="xs:ID" />
|
881
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
882
|
+
<xs:attribute name="classCode" type="ActClassObservation" use="required" />
|
883
|
+
<xs:attribute name="moodCode" type="ActMood" use="required" />
|
884
|
+
</xs:complexType>
|
885
|
+
<xs:complexType name="POCD_MT000040.ObservationRange">
|
886
|
+
<xs:sequence>
|
887
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
888
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
889
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
890
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
891
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
892
|
+
<xs:element name="value" type="ANY" minOccurs="0" />
|
893
|
+
<xs:element name="interpretationCode" type="CE" minOccurs="0" />
|
894
|
+
</xs:sequence>
|
895
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
896
|
+
<xs:attribute name="classCode" type="ActClassObservation" use="optional" default="OBS" />
|
897
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN.CRT" />
|
898
|
+
</xs:complexType>
|
899
|
+
<xs:complexType name="POCD_MT000040.Order">
|
900
|
+
<xs:sequence>
|
901
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
902
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
903
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
904
|
+
<xs:element name="id" type="II" maxOccurs="unbounded" />
|
905
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
906
|
+
<xs:element name="priorityCode" type="CE" minOccurs="0" />
|
907
|
+
</xs:sequence>
|
908
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
909
|
+
<xs:attribute name="classCode" type="ActClassRoot" use="optional" default="ACT" />
|
910
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="RQO" />
|
911
|
+
</xs:complexType>
|
912
|
+
<xs:complexType name="POCD_MT000040.Organization">
|
913
|
+
<xs:sequence>
|
914
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
915
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
916
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
917
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
918
|
+
<xs:element name="name" type="ON" minOccurs="0" maxOccurs="unbounded" />
|
919
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded" />
|
920
|
+
<xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded" />
|
921
|
+
<xs:element name="standardIndustryClassCode" type="CE" minOccurs="0" />
|
922
|
+
<xs:element name="asOrganizationPartOf" type="POCD_MT000040.OrganizationPartOf" minOccurs="0" />
|
923
|
+
</xs:sequence>
|
924
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
925
|
+
<xs:attribute name="classCode" type="EntityClassOrganization" use="optional" fixed="ORG" />
|
926
|
+
<xs:attribute name="determinerCode" type="EntityDeterminer" use="optional" fixed="INSTANCE" />
|
927
|
+
</xs:complexType>
|
928
|
+
<xs:complexType name="POCD_MT000040.OrganizationPartOf">
|
929
|
+
<xs:sequence>
|
930
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
931
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
932
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
933
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
934
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
935
|
+
<xs:element name="statusCode" type="CS" minOccurs="0" />
|
936
|
+
<xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" />
|
937
|
+
<xs:element name="wholeOrganization" type="POCD_MT000040.Organization" minOccurs="0" />
|
938
|
+
</xs:sequence>
|
939
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
940
|
+
<xs:attribute name="classCode" type="RoleClass" use="optional" fixed="PART" />
|
941
|
+
</xs:complexType>
|
942
|
+
<xs:complexType name="POCD_MT000040.Organizer">
|
943
|
+
<xs:sequence>
|
944
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
945
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
946
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
947
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
948
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
949
|
+
<xs:element name="statusCode" type="CS" />
|
950
|
+
<xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" />
|
951
|
+
<xs:element name="subject" type="POCD_MT000040.Subject" minOccurs="0" />
|
952
|
+
<xs:element name="specimen" type="POCD_MT000040.Specimen" minOccurs="0" maxOccurs="unbounded" />
|
953
|
+
<xs:element name="performer" type="POCD_MT000040.Performer2" minOccurs="0" maxOccurs="unbounded" />
|
954
|
+
<xs:element name="author" type="POCD_MT000040.Author" minOccurs="0" maxOccurs="unbounded" />
|
955
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
956
|
+
<xs:element name="participant" type="POCD_MT000040.Participant2" minOccurs="0" maxOccurs="unbounded" />
|
957
|
+
<xs:element name="reference" type="POCD_MT000040.Reference" minOccurs="0" maxOccurs="unbounded" />
|
958
|
+
<xs:element name="precondition" type="POCD_MT000040.Precondition" minOccurs="0" maxOccurs="unbounded" />
|
959
|
+
<xs:element name="component" type="POCD_MT000040.Component4" minOccurs="0" maxOccurs="unbounded" />
|
960
|
+
</xs:sequence>
|
961
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
962
|
+
<xs:attribute name="classCode" type="x_ActClassDocumentEntryOrganizer" use="required" />
|
963
|
+
<xs:attribute name="moodCode" type="ActMood" use="required" />
|
964
|
+
</xs:complexType>
|
965
|
+
<xs:complexType name="POCD_MT000040.ParentDocument">
|
966
|
+
<xs:sequence>
|
967
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
968
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
969
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
970
|
+
<xs:element name="id" type="II" maxOccurs="unbounded" />
|
971
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
972
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
973
|
+
<xs:element name="setId" type="II" minOccurs="0" />
|
974
|
+
<xs:element name="versionNumber" type="INT" minOccurs="0" />
|
975
|
+
</xs:sequence>
|
976
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
977
|
+
<xs:attribute name="classCode" type="ActClinicalDocument" use="optional" fixed="DOCCLIN" />
|
978
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
979
|
+
</xs:complexType>
|
980
|
+
<xs:complexType name="POCD_MT000040.Participant1">
|
981
|
+
<xs:sequence>
|
982
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
983
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
984
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
985
|
+
<xs:element name="functionCode" type="CE" minOccurs="0" />
|
986
|
+
<xs:element name="time" type="IVL_TS" minOccurs="0" />
|
987
|
+
<xs:element name="associatedEntity" type="POCD_MT000040.AssociatedEntity" />
|
988
|
+
</xs:sequence>
|
989
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
990
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="required" />
|
991
|
+
<xs:attribute name="contextControlCode" type="ContextControl" use="optional" fixed="OP" />
|
992
|
+
</xs:complexType>
|
993
|
+
<xs:complexType name="POCD_MT000040.Participant2">
|
994
|
+
<xs:sequence>
|
995
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
996
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
997
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
998
|
+
<xs:element name="time" type="IVL_TS" minOccurs="0" />
|
999
|
+
<xs:element name="awarenessCode" type="CE" minOccurs="0" />
|
1000
|
+
<xs:element name="participantRole" type="POCD_MT000040.ParticipantRole" />
|
1001
|
+
</xs:sequence>
|
1002
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1003
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="required" />
|
1004
|
+
<xs:attribute name="contextControlCode" type="ContextControl" use="optional" fixed="OP" />
|
1005
|
+
</xs:complexType>
|
1006
|
+
<xs:complexType name="POCD_MT000040.ParticipantRole">
|
1007
|
+
<xs:sequence>
|
1008
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1009
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1010
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1011
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1012
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
1013
|
+
<xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded" />
|
1014
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded" />
|
1015
|
+
<xs:choice>
|
1016
|
+
<xs:element name="playingDevice" type="POCD_MT000040.Device" minOccurs="0" />
|
1017
|
+
<xs:element name="playingEntity" type="POCD_MT000040.PlayingEntity" minOccurs="0" />
|
1018
|
+
</xs:choice>
|
1019
|
+
<xs:element name="scopingEntity" type="POCD_MT000040.Entity" minOccurs="0" />
|
1020
|
+
</xs:sequence>
|
1021
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1022
|
+
<xs:attribute name="classCode" type="RoleClassRoot" use="optional" default="ROL" />
|
1023
|
+
</xs:complexType>
|
1024
|
+
<xs:complexType name="POCD_MT000040.Patient">
|
1025
|
+
<xs:sequence>
|
1026
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1027
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1028
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1029
|
+
<xs:element name="id" type="II" minOccurs="0" />
|
1030
|
+
<xs:element name="name" type="PN" minOccurs="0" maxOccurs="unbounded" />
|
1031
|
+
<!-- Begin Extension: (SDTC) -->
|
1032
|
+
<xs:element ref="sdtc:desc" minOccurs="0" maxOccurs="1" />
|
1033
|
+
<!-- End Extension: (SDTC) -->
|
1034
|
+
<xs:element name="administrativeGenderCode" type="CE" minOccurs="0" />
|
1035
|
+
<xs:element name="birthTime" type="TS" minOccurs="0" />
|
1036
|
+
<!-- Begin Extension: (SDTC) -->
|
1037
|
+
<xs:element ref="sdtc:deceasedInd" minOccurs="0" />
|
1038
|
+
<xs:element ref="sdtc:deceasedTime" minOccurs="0" />
|
1039
|
+
<xs:element ref="sdtc:multipleBirthInd" minOccurs="0" />
|
1040
|
+
<xs:element ref="sdtc:multipleBirthOrderNumber" minOccurs="0" />
|
1041
|
+
<!-- End Extension: (SDTC) -->
|
1042
|
+
<xs:element name="maritalStatusCode" type="CE" minOccurs="0" />
|
1043
|
+
<xs:element name="religiousAffiliationCode" type="CE" minOccurs="0" />
|
1044
|
+
<xs:element name="raceCode" type="CE" minOccurs="0" />
|
1045
|
+
<!-- Begin Extension: (SDTC) -->
|
1046
|
+
<xs:element ref="sdtc:raceCode" minOccurs="0" maxOccurs="unbounded" />
|
1047
|
+
<!-- End Extension: (SDTC) -->
|
1048
|
+
<xs:element name="ethnicGroupCode" type="CE" minOccurs="0" />
|
1049
|
+
<!-- Begin Extension: (SDTC) -->
|
1050
|
+
<xs:element ref="sdtc:ethnicGroupCode" minOccurs="0" maxOccurs="unbounded" />
|
1051
|
+
<!-- End Extension: (SDTC) -->
|
1052
|
+
<xs:element name="guardian" type="POCD_MT000040.Guardian" minOccurs="0" maxOccurs="unbounded" />
|
1053
|
+
<xs:element name="birthplace" type="POCD_MT000040.Birthplace" minOccurs="0" />
|
1054
|
+
<xs:element name="languageCommunication" type="POCD_MT000040.LanguageCommunication" minOccurs="0"
|
1055
|
+
maxOccurs="unbounded" />
|
1056
|
+
</xs:sequence>
|
1057
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1058
|
+
<xs:attribute name="classCode" type="EntityClass" use="optional" fixed="PSN" />
|
1059
|
+
<xs:attribute name="determinerCode" type="EntityDeterminer" use="optional" fixed="INSTANCE" />
|
1060
|
+
</xs:complexType>
|
1061
|
+
<xs:complexType name="POCD_MT000040.PatientRole">
|
1062
|
+
<xs:sequence>
|
1063
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1064
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1065
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1066
|
+
<xs:element name="id" type="II" maxOccurs="unbounded" />
|
1067
|
+
<xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded" />
|
1068
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded" />
|
1069
|
+
<xs:element name="patient" type="POCD_MT000040.Patient" minOccurs="0" />
|
1070
|
+
<xs:element name="providerOrganization" type="POCD_MT000040.Organization" minOccurs="0" />
|
1071
|
+
</xs:sequence>
|
1072
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1073
|
+
<xs:attribute name="classCode" type="RoleClass" use="optional" fixed="PAT" />
|
1074
|
+
</xs:complexType>
|
1075
|
+
<xs:complexType name="POCD_MT000040.Performer1">
|
1076
|
+
<xs:sequence>
|
1077
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1078
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1079
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1080
|
+
<xs:element name="functionCode" type="CE" minOccurs="0" />
|
1081
|
+
<xs:element name="time" type="IVL_TS" minOccurs="0" />
|
1082
|
+
<xs:element name="assignedEntity" type="POCD_MT000040.AssignedEntity" />
|
1083
|
+
</xs:sequence>
|
1084
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1085
|
+
<xs:attribute name="typeCode" type="x_ServiceEventPerformer" use="required" />
|
1086
|
+
</xs:complexType>
|
1087
|
+
<xs:complexType name="POCD_MT000040.Performer2">
|
1088
|
+
<xs:sequence>
|
1089
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1090
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1091
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1092
|
+
<xs:element name="time" type="IVL_TS" minOccurs="0" />
|
1093
|
+
<xs:element name="modeCode" type="CE" minOccurs="0" />
|
1094
|
+
<xs:element name="assignedEntity" type="POCD_MT000040.AssignedEntity" />
|
1095
|
+
</xs:sequence>
|
1096
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1097
|
+
<xs:attribute name="typeCode" type="ParticipationPhysicalPerformer" use="optional" fixed="PRF" />
|
1098
|
+
</xs:complexType>
|
1099
|
+
<xs:complexType name="POCD_MT000040.Person">
|
1100
|
+
<xs:sequence>
|
1101
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1102
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1103
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1104
|
+
<xs:element name="name" type="PN" minOccurs="0" maxOccurs="unbounded" />
|
1105
|
+
<!-- Begin Extension: (SDTC) -->
|
1106
|
+
<xs:element ref="sdtc:desc" minOccurs="0" />
|
1107
|
+
<xs:element ref="sdtc:asPatientRelationship" minOccurs="0" />
|
1108
|
+
<!-- End Extension: (SDTC) -->
|
1109
|
+
</xs:sequence>
|
1110
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1111
|
+
<xs:attribute name="classCode" type="EntityClass" use="optional" fixed="PSN" />
|
1112
|
+
<xs:attribute name="determinerCode" type="EntityDeterminer" use="optional" fixed="INSTANCE" />
|
1113
|
+
</xs:complexType>
|
1114
|
+
<xs:complexType name="POCD_MT000040.Place">
|
1115
|
+
<xs:sequence>
|
1116
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1117
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1118
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1119
|
+
<xs:element name="name" type="EN" minOccurs="0" />
|
1120
|
+
<xs:element name="addr" type="AD" minOccurs="0" />
|
1121
|
+
</xs:sequence>
|
1122
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1123
|
+
<xs:attribute name="classCode" type="EntityClassPlace" use="optional" fixed="PLC" />
|
1124
|
+
<xs:attribute name="determinerCode" type="EntityDeterminer" use="optional" fixed="INSTANCE" />
|
1125
|
+
</xs:complexType>
|
1126
|
+
<xs:complexType name="POCD_MT000040.PlayingEntity">
|
1127
|
+
<xs:sequence>
|
1128
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1129
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1130
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1131
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
1132
|
+
<xs:element name="quantity" type="PQ" minOccurs="0" maxOccurs="unbounded" />
|
1133
|
+
<xs:element name="name" type="PN" minOccurs="0" maxOccurs="unbounded" />
|
1134
|
+
<!-- Begin Extension: (SDTC) -->
|
1135
|
+
<xs:element ref="sdtc:birthTime" minOccurs="0" />
|
1136
|
+
<!-- End Extension: (SDTC) -->
|
1137
|
+
<xs:element name="desc" type="ED" minOccurs="0" />
|
1138
|
+
</xs:sequence>
|
1139
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1140
|
+
<xs:attribute name="classCode" type="EntityClassRoot" use="optional" default="ENT" />
|
1141
|
+
<xs:attribute name="determinerCode" type="EntityDeterminer" use="optional" fixed="INSTANCE" />
|
1142
|
+
</xs:complexType>
|
1143
|
+
<xs:complexType name="POCD_MT000040.Precondition">
|
1144
|
+
<xs:sequence>
|
1145
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1146
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1147
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1148
|
+
<xs:element name="criterion" type="POCD_MT000040.Criterion" />
|
1149
|
+
</xs:sequence>
|
1150
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1151
|
+
<xs:attribute name="typeCode" type="ActRelationshipType" use="optional" fixed="PRCN" />
|
1152
|
+
</xs:complexType>
|
1153
|
+
<xs:complexType name="POCD_MT000040.Procedure">
|
1154
|
+
<xs:sequence>
|
1155
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1156
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1157
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1158
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1159
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
1160
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
1161
|
+
<xs:element name="statusCode" type="CS" minOccurs="0" />
|
1162
|
+
<xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" />
|
1163
|
+
<xs:element name="priorityCode" type="CE" minOccurs="0" />
|
1164
|
+
<xs:element name="languageCode" type="CS" minOccurs="0" />
|
1165
|
+
<xs:element name="methodCode" type="CE" minOccurs="0" maxOccurs="unbounded" />
|
1166
|
+
<xs:element name="approachSiteCode" type="CD" minOccurs="0" maxOccurs="unbounded" />
|
1167
|
+
<xs:element name="targetSiteCode" type="CD" minOccurs="0" maxOccurs="unbounded" />
|
1168
|
+
<xs:element name="subject" type="POCD_MT000040.Subject" minOccurs="0" />
|
1169
|
+
<xs:element name="specimen" type="POCD_MT000040.Specimen" minOccurs="0" maxOccurs="unbounded" />
|
1170
|
+
<xs:element name="performer" type="POCD_MT000040.Performer2" minOccurs="0" maxOccurs="unbounded" />
|
1171
|
+
<xs:element name="author" type="POCD_MT000040.Author" minOccurs="0" maxOccurs="unbounded" />
|
1172
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
1173
|
+
<xs:element name="participant" type="POCD_MT000040.Participant2" minOccurs="0" maxOccurs="unbounded" />
|
1174
|
+
<xs:element name="entryRelationship" type="POCD_MT000040.EntryRelationship" minOccurs="0"
|
1175
|
+
maxOccurs="unbounded" />
|
1176
|
+
<xs:element name="reference" type="POCD_MT000040.Reference" minOccurs="0" maxOccurs="unbounded" />
|
1177
|
+
<xs:element name="precondition" type="POCD_MT000040.Precondition" minOccurs="0" maxOccurs="unbounded" />
|
1178
|
+
<!-- Begin Extension: (SDTC) -->
|
1179
|
+
<xs:element ref="sdtc:inFulfillmentOf1" minOccurs="0" maxOccurs="unbounded" />
|
1180
|
+
<!-- End Extension: (SDTC) -->
|
1181
|
+
</xs:sequence>
|
1182
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1183
|
+
<xs:attribute name="classCode" type="ActClass" use="required" />
|
1184
|
+
<xs:attribute name="moodCode" type="x_DocumentProcedureMood" use="required" />
|
1185
|
+
<xs:attribute name="negationInd" type="bl" use="optional" />
|
1186
|
+
</xs:complexType>
|
1187
|
+
<xs:complexType name="POCD_MT000040.Product">
|
1188
|
+
<xs:sequence>
|
1189
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1190
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1191
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1192
|
+
<xs:element name="manufacturedProduct" type="POCD_MT000040.ManufacturedProduct" />
|
1193
|
+
</xs:sequence>
|
1194
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1195
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="PRD" />
|
1196
|
+
</xs:complexType>
|
1197
|
+
<xs:complexType name="POCD_MT000040.RecordTarget">
|
1198
|
+
<xs:sequence>
|
1199
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1200
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1201
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1202
|
+
<xs:element name="patientRole" type="POCD_MT000040.PatientRole" />
|
1203
|
+
</xs:sequence>
|
1204
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1205
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="RCT" />
|
1206
|
+
<xs:attribute name="contextControlCode" type="ContextControl" use="optional" fixed="OP" />
|
1207
|
+
</xs:complexType>
|
1208
|
+
<xs:complexType name="POCD_MT000040.Reference">
|
1209
|
+
<xs:sequence>
|
1210
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1211
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1212
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1213
|
+
<xs:element name="seperatableInd" type="BL" minOccurs="0" />
|
1214
|
+
<xs:choice>
|
1215
|
+
<xs:element name="externalAct" type="POCD_MT000040.ExternalAct" />
|
1216
|
+
<xs:element name="externalObservation" type="POCD_MT000040.ExternalObservation" />
|
1217
|
+
<xs:element name="externalProcedure" type="POCD_MT000040.ExternalProcedure" />
|
1218
|
+
<xs:element name="externalDocument" type="POCD_MT000040.ExternalDocument" />
|
1219
|
+
</xs:choice>
|
1220
|
+
</xs:sequence>
|
1221
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1222
|
+
<xs:attribute name="typeCode" type="x_ActRelationshipExternalReference" use="required" />
|
1223
|
+
</xs:complexType>
|
1224
|
+
<xs:complexType name="POCD_MT000040.ReferenceRange">
|
1225
|
+
<xs:sequence>
|
1226
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1227
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1228
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1229
|
+
<xs:element name="observationRange" type="POCD_MT000040.ObservationRange" />
|
1230
|
+
</xs:sequence>
|
1231
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1232
|
+
<xs:attribute name="typeCode" type="ActRelationshipType" use="optional" fixed="REFV" />
|
1233
|
+
</xs:complexType>
|
1234
|
+
<xs:complexType name="POCD_MT000040.RegionOfInterest.value">
|
1235
|
+
<xs:complexContent>
|
1236
|
+
<xs:extension base="INT">
|
1237
|
+
<xs:attribute name="unsorted" type="xs:boolean" default="false" />
|
1238
|
+
</xs:extension>
|
1239
|
+
</xs:complexContent>
|
1240
|
+
</xs:complexType>
|
1241
|
+
<xs:complexType name="POCD_MT000040.RegionOfInterest">
|
1242
|
+
<xs:sequence>
|
1243
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1244
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1245
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1246
|
+
<xs:element name="id" type="II" maxOccurs="unbounded" />
|
1247
|
+
<xs:element name="code" type="CS" />
|
1248
|
+
<xs:element name="value" type="POCD_MT000040.RegionOfInterest.value" maxOccurs="unbounded" />
|
1249
|
+
<xs:element name="subject" type="POCD_MT000040.Subject" minOccurs="0" />
|
1250
|
+
<xs:element name="specimen" type="POCD_MT000040.Specimen" minOccurs="0" maxOccurs="unbounded" />
|
1251
|
+
<xs:element name="performer" type="POCD_MT000040.Performer2" minOccurs="0" maxOccurs="unbounded" />
|
1252
|
+
<xs:element name="author" type="POCD_MT000040.Author" minOccurs="0" maxOccurs="unbounded" />
|
1253
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
1254
|
+
<xs:element name="participant" type="POCD_MT000040.Participant2" minOccurs="0" maxOccurs="unbounded" />
|
1255
|
+
<xs:element name="entryRelationship" type="POCD_MT000040.EntryRelationship" minOccurs="0"
|
1256
|
+
maxOccurs="unbounded" />
|
1257
|
+
<xs:element name="reference" type="POCD_MT000040.Reference" minOccurs="0" maxOccurs="unbounded" />
|
1258
|
+
<xs:element name="precondition" type="POCD_MT000040.Precondition" minOccurs="0" maxOccurs="unbounded" />
|
1259
|
+
</xs:sequence>
|
1260
|
+
<xs:attribute name="ID" type="xs:ID" />
|
1261
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1262
|
+
<xs:attribute name="classCode" type="ActClass" use="required" fixed="ROIOVL" />
|
1263
|
+
<xs:attribute name="moodCode" type="ActMood" use="required" fixed="EVN" />
|
1264
|
+
</xs:complexType>
|
1265
|
+
<xs:complexType name="POCD_MT000040.RelatedDocument">
|
1266
|
+
<xs:sequence>
|
1267
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1268
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1269
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1270
|
+
<xs:element name="parentDocument" type="POCD_MT000040.ParentDocument" />
|
1271
|
+
</xs:sequence>
|
1272
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1273
|
+
<xs:attribute name="typeCode" type="x_ActRelationshipDocument" use="required" />
|
1274
|
+
</xs:complexType>
|
1275
|
+
<xs:complexType name="POCD_MT000040.RelatedEntity">
|
1276
|
+
<xs:sequence>
|
1277
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1278
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1279
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1280
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
1281
|
+
<xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded" />
|
1282
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded" />
|
1283
|
+
<xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" />
|
1284
|
+
<xs:element name="relatedPerson" type="POCD_MT000040.Person" minOccurs="0" />
|
1285
|
+
</xs:sequence>
|
1286
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1287
|
+
<xs:attribute name="classCode" type="RoleClassMutualRelationship" use="required" />
|
1288
|
+
</xs:complexType>
|
1289
|
+
<xs:complexType name="POCD_MT000040.RelatedSubject">
|
1290
|
+
<xs:sequence>
|
1291
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1292
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1293
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1294
|
+
<!-- Begin Extension: (SDTC) -->
|
1295
|
+
<xs:element ref="sdtc:id" minOccurs="0" maxOccurs="unbounded" />
|
1296
|
+
<!-- End Extension: (SDTC) -->
|
1297
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
1298
|
+
<xs:element name="addr" type="AD" minOccurs="0" maxOccurs="unbounded" />
|
1299
|
+
<xs:element name="telecom" type="TEL" minOccurs="0" maxOccurs="unbounded" />
|
1300
|
+
<xs:element name="subject" type="POCD_MT000040.SubjectPerson" minOccurs="0" />
|
1301
|
+
</xs:sequence>
|
1302
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1303
|
+
<xs:attribute name="classCode" type="x_DocumentSubject" use="optional" default="PRS" />
|
1304
|
+
</xs:complexType>
|
1305
|
+
<xs:complexType name="POCD_MT000040.ResponsibleParty">
|
1306
|
+
<xs:sequence>
|
1307
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1308
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1309
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1310
|
+
<xs:element name="assignedEntity" type="POCD_MT000040.AssignedEntity" />
|
1311
|
+
</xs:sequence>
|
1312
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1313
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="RESP" />
|
1314
|
+
</xs:complexType>
|
1315
|
+
<xs:complexType name="POCD_MT000040.Section">
|
1316
|
+
<xs:sequence>
|
1317
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1318
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1319
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1320
|
+
<xs:element name="id" type="II" minOccurs="0" />
|
1321
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
1322
|
+
<xs:element name="title" type="ST" minOccurs="0" />
|
1323
|
+
<xs:element name="text" type="StrucDoc.Text" minOccurs="0" />
|
1324
|
+
<xs:element name="confidentialityCode" type="CE" minOccurs="0" />
|
1325
|
+
<xs:element name="languageCode" type="CS" minOccurs="0" />
|
1326
|
+
<xs:element name="subject" type="POCD_MT000040.Subject" minOccurs="0" />
|
1327
|
+
<xs:element name="author" type="POCD_MT000040.Author" minOccurs="0" maxOccurs="unbounded" />
|
1328
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
1329
|
+
<xs:element name="entry" type="POCD_MT000040.Entry" minOccurs="0" maxOccurs="unbounded" />
|
1330
|
+
<xs:element name="component" type="POCD_MT000040.Component5" minOccurs="0" maxOccurs="unbounded" />
|
1331
|
+
</xs:sequence>
|
1332
|
+
<xs:attribute name="ID" type="xs:ID" />
|
1333
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1334
|
+
<xs:attribute name="classCode" type="ActClass" use="optional" fixed="DOCSECT" />
|
1335
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
1336
|
+
</xs:complexType>
|
1337
|
+
<xs:complexType name="POCD_MT000040.ServiceEvent">
|
1338
|
+
<xs:sequence>
|
1339
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1340
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1341
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1342
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1343
|
+
<xs:element name="code" type="CE" minOccurs="0" />
|
1344
|
+
<xs:element name="effectiveTime" type="IVL_TS" minOccurs="0" />
|
1345
|
+
<xs:element name="performer" type="POCD_MT000040.Performer1" minOccurs="0" maxOccurs="unbounded" />
|
1346
|
+
</xs:sequence>
|
1347
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1348
|
+
<xs:attribute name="classCode" type="ActClassRoot" use="optional" default="ACT" />
|
1349
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
1350
|
+
</xs:complexType>
|
1351
|
+
<xs:complexType name="POCD_MT000040.Specimen">
|
1352
|
+
<xs:sequence>
|
1353
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1354
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1355
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1356
|
+
<xs:element name="specimenRole" type="POCD_MT000040.SpecimenRole" />
|
1357
|
+
</xs:sequence>
|
1358
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1359
|
+
<xs:attribute name="typeCode" type="ParticipationType" use="optional" fixed="SPC" />
|
1360
|
+
</xs:complexType>
|
1361
|
+
<xs:complexType name="POCD_MT000040.SpecimenRole">
|
1362
|
+
<xs:sequence>
|
1363
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1364
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1365
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1366
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1367
|
+
<xs:element name="specimenPlayingEntity" type="POCD_MT000040.PlayingEntity" minOccurs="0" />
|
1368
|
+
</xs:sequence>
|
1369
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1370
|
+
<xs:attribute name="classCode" type="RoleClassSpecimen" use="optional" fixed="SPEC" />
|
1371
|
+
</xs:complexType>
|
1372
|
+
<xs:complexType name="POCD_MT000040.StructuredBody">
|
1373
|
+
<xs:sequence>
|
1374
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1375
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1376
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1377
|
+
<xs:element name="confidentialityCode" type="CE" minOccurs="0" />
|
1378
|
+
<xs:element name="languageCode" type="CS" minOccurs="0" />
|
1379
|
+
<xs:element name="component" type="POCD_MT000040.Component3" maxOccurs="unbounded" />
|
1380
|
+
</xs:sequence>
|
1381
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1382
|
+
<xs:attribute name="classCode" type="ActClass" use="optional" fixed="DOCBODY" />
|
1383
|
+
<xs:attribute name="moodCode" type="ActMood" use="optional" fixed="EVN" />
|
1384
|
+
</xs:complexType>
|
1385
|
+
<xs:complexType name="POCD_MT000040.Subject">
|
1386
|
+
<xs:sequence>
|
1387
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1388
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1389
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1390
|
+
<xs:element name="awarenessCode" type="CE" minOccurs="0" />
|
1391
|
+
<xs:element name="relatedSubject" type="POCD_MT000040.RelatedSubject" />
|
1392
|
+
</xs:sequence>
|
1393
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1394
|
+
<xs:attribute name="typeCode" type="ParticipationTargetSubject" use="optional" fixed="SBJ" />
|
1395
|
+
<xs:attribute name="contextControlCode" type="ContextControl" use="optional" fixed="OP" />
|
1396
|
+
</xs:complexType>
|
1397
|
+
<xs:complexType name="POCD_MT000040.SubjectPerson">
|
1398
|
+
<xs:sequence>
|
1399
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1400
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1401
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1402
|
+
<!-- Begin Extension: (SDTC) -->
|
1403
|
+
<xs:element ref="sdtc:id" minOccurs="0" maxOccurs="unbounded" />
|
1404
|
+
<!-- End Extension: (SDTC) -->
|
1405
|
+
<xs:element name="name" type="PN" minOccurs="0" maxOccurs="unbounded" />
|
1406
|
+
<!-- Begin Extension: (SDTC) -->
|
1407
|
+
<xs:element ref="sdtc:desc" minOccurs="0" maxOccurs="1" />
|
1408
|
+
<!-- End Extension: (SDTC) -->
|
1409
|
+
<xs:element name="administrativeGenderCode" type="CE" minOccurs="0" />
|
1410
|
+
<xs:element name="birthTime" type="TS" minOccurs="0" />
|
1411
|
+
<!-- Begin Extension: (SDTC) -->
|
1412
|
+
<xs:element ref="sdtc:deceasedInd" minOccurs="0" />
|
1413
|
+
<xs:element ref="sdtc:deceasedTime" minOccurs="0" />
|
1414
|
+
<xs:element ref="sdtc:multipleBirthInd" minOccurs="0" />
|
1415
|
+
<xs:element ref="sdtc:multipleBirthOrderNumber" minOccurs="0" />
|
1416
|
+
<!-- End Extension: (SDTC) -->
|
1417
|
+
<!-- Begin Extension: (SDTC) -->
|
1418
|
+
<xs:element ref="sdtc:raceCode" minOccurs="0" maxOccurs="unbounded" />
|
1419
|
+
<!-- End Extension: (SDTC) -->
|
1420
|
+
<!-- Begin Extension: (SDTC) -->
|
1421
|
+
<xs:element ref="sdtc:ethnicGroupCode" minOccurs="0" maxOccurs="unbounded" />
|
1422
|
+
<!-- End Extension: (SDTC) -->
|
1423
|
+
</xs:sequence>
|
1424
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1425
|
+
<xs:attribute name="classCode" type="EntityClass" use="optional" fixed="PSN" />
|
1426
|
+
<xs:attribute name="determinerCode" type="EntityDeterminer" use="optional" fixed="INSTANCE" />
|
1427
|
+
</xs:complexType>
|
1428
|
+
<xs:complexType name="POCD_MT000040.SubstanceAdministration">
|
1429
|
+
<xs:sequence>
|
1430
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1431
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1432
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1433
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1434
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
1435
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
1436
|
+
<xs:element name="statusCode" type="CS" minOccurs="0" />
|
1437
|
+
<xs:element name="effectiveTime" type="SXCM_TS" minOccurs="0" maxOccurs="unbounded" />
|
1438
|
+
<xs:element name="priorityCode" type="CE" minOccurs="0" />
|
1439
|
+
<xs:element name="repeatNumber" type="IVL_INT" minOccurs="0" />
|
1440
|
+
<xs:element name="routeCode" type="CE" minOccurs="0" />
|
1441
|
+
<xs:element name="approachSiteCode" type="CD" minOccurs="0" maxOccurs="unbounded" />
|
1442
|
+
<xs:element name="doseQuantity" type="IVL_PQ" minOccurs="0" />
|
1443
|
+
<xs:element name="rateQuantity" type="IVL_PQ" minOccurs="0" />
|
1444
|
+
<xs:element name="maxDoseQuantity" type="RTO_PQ_PQ" minOccurs="0" />
|
1445
|
+
<xs:element name="administrationUnitCode" type="CE" minOccurs="0" />
|
1446
|
+
<xs:element name="subject" type="POCD_MT000040.Subject" minOccurs="0" />
|
1447
|
+
<xs:element name="specimen" type="POCD_MT000040.Specimen" minOccurs="0" maxOccurs="unbounded" />
|
1448
|
+
<xs:element name="consumable" type="POCD_MT000040.Consumable" />
|
1449
|
+
<xs:element name="performer" type="POCD_MT000040.Performer2" minOccurs="0" maxOccurs="unbounded" />
|
1450
|
+
<xs:element name="author" type="POCD_MT000040.Author" minOccurs="0" maxOccurs="unbounded" />
|
1451
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
1452
|
+
<xs:element name="participant" type="POCD_MT000040.Participant2" minOccurs="0" maxOccurs="unbounded" />
|
1453
|
+
<xs:element name="entryRelationship" type="POCD_MT000040.EntryRelationship" minOccurs="0"
|
1454
|
+
maxOccurs="unbounded" />
|
1455
|
+
<xs:element name="reference" type="POCD_MT000040.Reference" minOccurs="0" maxOccurs="unbounded" />
|
1456
|
+
<xs:element name="precondition" type="POCD_MT000040.Precondition" minOccurs="0" maxOccurs="unbounded" />
|
1457
|
+
<!-- Begin Extension: (SDTC) -->
|
1458
|
+
<xs:element ref="sdtc:inFulfillmentOf1" minOccurs="0" maxOccurs="unbounded" />
|
1459
|
+
<!-- End Extension: (SDTC) -->
|
1460
|
+
</xs:sequence>
|
1461
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1462
|
+
<xs:attribute name="classCode" type="ActClass" use="required" fixed="SBADM" />
|
1463
|
+
<xs:attribute name="moodCode" type="x_DocumentSubstanceMood" use="required" />
|
1464
|
+
<xs:attribute name="negationInd" type="bl" use="optional" />
|
1465
|
+
</xs:complexType>
|
1466
|
+
<xs:complexType name="POCD_MT000040.Supply">
|
1467
|
+
<xs:sequence>
|
1468
|
+
<xs:element name="realmCode" type="CS" minOccurs="0" maxOccurs="unbounded" />
|
1469
|
+
<xs:element name="typeId" type="POCD_MT000040.InfrastructureRoot.typeId" minOccurs="0" />
|
1470
|
+
<xs:element name="templateId" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1471
|
+
<xs:element name="id" type="II" minOccurs="0" maxOccurs="unbounded" />
|
1472
|
+
<xs:element name="code" type="CD" minOccurs="0" />
|
1473
|
+
<xs:element name="text" type="ED" minOccurs="0" />
|
1474
|
+
<xs:element name="statusCode" type="CS" minOccurs="0" />
|
1475
|
+
<xs:element name="effectiveTime" type="SXCM_TS" minOccurs="0" maxOccurs="unbounded" />
|
1476
|
+
<xs:element name="priorityCode" type="CE" minOccurs="0" maxOccurs="unbounded" />
|
1477
|
+
<xs:element name="repeatNumber" type="IVL_INT" minOccurs="0" />
|
1478
|
+
<xs:element name="independentInd" type="BL" minOccurs="0" />
|
1479
|
+
<xs:element name="quantity" type="PQ" minOccurs="0" />
|
1480
|
+
<xs:element name="expectedUseTime" type="IVL_TS" minOccurs="0" />
|
1481
|
+
<xs:element name="subject" type="POCD_MT000040.Subject" minOccurs="0" />
|
1482
|
+
<xs:element name="specimen" type="POCD_MT000040.Specimen" minOccurs="0" maxOccurs="unbounded" />
|
1483
|
+
<xs:element name="product" type="POCD_MT000040.Product" minOccurs="0" />
|
1484
|
+
<xs:element name="performer" type="POCD_MT000040.Performer2" minOccurs="0" maxOccurs="unbounded" />
|
1485
|
+
<xs:element name="author" type="POCD_MT000040.Author" minOccurs="0" maxOccurs="unbounded" />
|
1486
|
+
<xs:element name="informant" type="POCD_MT000040.Informant12" minOccurs="0" maxOccurs="unbounded" />
|
1487
|
+
<xs:element name="participant" type="POCD_MT000040.Participant2" minOccurs="0" maxOccurs="unbounded" />
|
1488
|
+
<xs:element name="entryRelationship" type="POCD_MT000040.EntryRelationship" minOccurs="0"
|
1489
|
+
maxOccurs="unbounded" />
|
1490
|
+
<xs:element name="reference" type="POCD_MT000040.Reference" minOccurs="0" maxOccurs="unbounded" />
|
1491
|
+
<xs:element name="precondition" type="POCD_MT000040.Precondition" minOccurs="0" maxOccurs="unbounded" />
|
1492
|
+
<!-- Begin Extension: (SDTC) -->
|
1493
|
+
<xs:element ref="sdtc:inFulfillmentOf1" minOccurs="0" maxOccurs="unbounded" />
|
1494
|
+
<!-- End Extension: (SDTC) -->
|
1495
|
+
</xs:sequence>
|
1496
|
+
<xs:attribute name="nullFlavor" type="NullFlavor" use="optional" />
|
1497
|
+
<xs:attribute name="classCode" type="ActClassSupply" use="required" fixed="SPLY" />
|
1498
|
+
<xs:attribute name="moodCode" type="x_DocumentSubstanceMood" use="required" />
|
1499
|
+
</xs:complexType>
|
1500
|
+
</xs:schema>
|