openehr 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +3 -0
- data/README.rdoc +2 -2
- data/VERSION +1 -1
- data/lib/openehr/parser/adl_grammar.tt +4 -2
- data/openehr.gemspec +6 -3
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-abdomen.v1.adl +195 -211
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-uterine_cervix.v1.adl +462 -251
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-CLUSTER.exam-uterus.v1.adl +171 -177
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.operation_record.v1.adl +454 -0
- data/spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.uterine_contractions.v1.adl +440 -0
- data/spec/lib/openehr/parser/empty_use_spec.rb +41 -0
- metadata +133 -40
data/History.txt
CHANGED
data/README.rdoc
CHANGED
@@ -5,7 +5,7 @@ Ruby openEHR implementation project.
|
|
5
5
|
|
6
6
|
= Version
|
7
7
|
|
8
|
-
Release-1.1.
|
8
|
+
Release-1.1.2
|
9
9
|
|
10
10
|
= Requirements
|
11
11
|
|
@@ -46,7 +46,7 @@ Some specifications are not well determined yet, such as rm/security
|
|
46
46
|
and so on. We postponed to implement such classes.
|
47
47
|
|
48
48
|
Terminology and Demographic server will be implemented in other
|
49
|
-
projects.
|
49
|
+
projects.
|
50
50
|
|
51
51
|
= Authors
|
52
52
|
* Main codes
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.2
|
@@ -143,13 +143,15 @@ module OpenEHR
|
|
143
143
|
params['details'].each do |lang, attrs|
|
144
144
|
misuse = attrs['misuse']
|
145
145
|
misuse = nil if misuse.nil? or misuse.empty?
|
146
|
+
use = attrs['use']
|
147
|
+
use = nil if use.nil? or use.empty?
|
146
148
|
purpose = attrs['purpose'] || '__unknown__' # for backward compat.
|
147
149
|
item =
|
148
150
|
OpenEHR::RM::Common::Resource::ResourceDescriptionItem.new(
|
149
151
|
:language => attrs['language'],
|
150
152
|
:purpose => purpose,
|
151
153
|
:keywords => attrs["keywords"],
|
152
|
-
:use =>
|
154
|
+
:use => use,
|
153
155
|
:misuse => misuse,
|
154
156
|
:copyright => attrs['copyright'],
|
155
157
|
:original_resource_uri => attrs['original_resource_uri'],
|
@@ -333,7 +335,7 @@ module OpenEHR
|
|
333
335
|
def value(node)
|
334
336
|
args = c_ordinal.value
|
335
337
|
args[:path] = node.path
|
336
|
-
args[:rm_type_name] = '
|
338
|
+
args[:rm_type_name] = 'DV_ORDINAL'
|
337
339
|
args[:occurrences] ||= OpenEHR::AssumedLibraryTypes::Interval.new(
|
338
340
|
:upper => 1, :lower => 1)
|
339
341
|
OpenEHR::AM::OpenEHRProfile::DataTypes::Quantity::CDvOrdinal.new(
|
data/openehr.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "openehr"
|
8
|
-
s.version = "1.1.
|
8
|
+
s.version = "1.1.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Shinji KOBAYASHI", "Akimichi Tatsukawa"]
|
12
|
-
s.date = "2012-
|
12
|
+
s.date = "2012-06-27"
|
13
13
|
s.description = "This project is an implementation of the openEHR specification on Ruby."
|
14
14
|
s.email = "skoba@moss.gr.jp"
|
15
15
|
s.extra_rdoc_files = [
|
@@ -226,7 +226,9 @@ Gem::Specification.new do |s|
|
|
226
226
|
"spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.blood_pressure.v1.adl",
|
227
227
|
"spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.body_mass_index.v1.adl",
|
228
228
|
"spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.lab_test.v1.adl",
|
229
|
+
"spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.operation_record.v1.adl",
|
229
230
|
"spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.testassumedvalue.v1.adl",
|
231
|
+
"spec/lib/openehr/parser/adl14/openEHR-EHR-OBSERVATION.uterine_contractions.v1.adl",
|
230
232
|
"spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.findings.v1.adl",
|
231
233
|
"spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.reason_for_encounter.v1.adl",
|
232
234
|
"spec/lib/openehr/parser/adl14/openEHR-EHR-SECTION.summary.v1.adl",
|
@@ -262,6 +264,7 @@ Gem::Specification.new do |s|
|
|
262
264
|
"spec/lib/openehr/parser/duration_spec.rb",
|
263
265
|
"spec/lib/openehr/parser/dv_coded_text_parse_spec.rb",
|
264
266
|
"spec/lib/openehr/parser/empty_other_contributors_spec.rb",
|
267
|
+
"spec/lib/openehr/parser/empty_use_spec.rb",
|
265
268
|
"spec/lib/openehr/parser/lab_test_parser_spec.rb",
|
266
269
|
"spec/lib/openehr/parser/missing_language_spec.rb",
|
267
270
|
"spec/lib/openehr/parser/missing_purpose_spec.rb",
|
@@ -399,7 +402,7 @@ Gem::Specification.new do |s|
|
|
399
402
|
s.homepage = "http://github.com/skoba/ruby-impl-openehr"
|
400
403
|
s.licenses = ["Apache 2.0 license"]
|
401
404
|
s.require_paths = ["lib"]
|
402
|
-
s.rubygems_version = "1.8.
|
405
|
+
s.rubygems_version = "1.8.24"
|
403
406
|
s.summary = "Ruby implementation of the openEHR specification"
|
404
407
|
|
405
408
|
if s.respond_to? :specification_version then
|
@@ -1,6 +1,6 @@
|
|
1
|
-
archetype (adl_version=1.4)
|
1
|
+
archetype (adl_version=1.4)
|
2
2
|
openEHR-EHR-CLUSTER.exam-abdomen.v1
|
3
|
-
|
3
|
+
specialise
|
4
4
|
openEHR-EHR-CLUSTER.exam.v1
|
5
5
|
|
6
6
|
concept
|
@@ -11,310 +11,294 @@ description
|
|
11
11
|
original_author = <
|
12
12
|
["name"] = <"Heather Leslie">
|
13
13
|
["organisation"] = <"Ocean Informatics">
|
14
|
+
["email"] = <"heather.leslie@oceaninformatics.com">
|
14
15
|
["date"] = <"11/04/2007">
|
15
|
-
["email"] = <"heather.leslie@oceaninformatics.biz">
|
16
16
|
>
|
17
17
|
details = <
|
18
18
|
["en"] = <
|
19
19
|
language = <[ISO_639-1::en]>
|
20
|
-
purpose = <"A cluster for recording findings on physical examination of the abdomen">
|
20
|
+
purpose = <"A cluster for recording findings on physical examination of the abdomen.">
|
21
21
|
use = <"">
|
22
22
|
keywords = <"examination", "physical">
|
23
23
|
misuse = <"">
|
24
|
+
copyright = <"© openEHR Foundation">
|
24
25
|
>
|
25
26
|
>
|
26
|
-
lifecycle_state = <"
|
27
|
+
lifecycle_state = <"AuthorDraft">
|
27
28
|
other_contributors = <>
|
29
|
+
other_details = <
|
30
|
+
["MD5-CAM-1.0.1"] = <"75E4E6DE863A430A1F1C7ABF3C8DDB9A">
|
31
|
+
["references"] = <"">
|
32
|
+
>
|
28
33
|
|
29
|
-
definition
|
30
|
-
CLUSTER[at0000.1] matches { -- Examination of the abdomen
|
31
|
-
items cardinality matches {
|
32
|
-
CLUSTER[at0004] occurrences matches {0..1} matches { -- Normal statements
|
33
|
-
items cardinality matches {
|
34
|
-
ELEMENT[at0005] occurrences matches {0..*} matches { -- Normal statement
|
35
|
-
value matches {
|
36
|
-
DV_TEXT matches {*}
|
37
|
-
}
|
38
|
-
}
|
39
|
-
}
|
40
|
-
}
|
41
|
-
ELEMENT[at0002] occurrences matches {0..1} matches { -- Clinical description
|
42
|
-
value matches {
|
43
|
-
DV_TEXT matches {*}
|
44
|
-
}
|
45
|
-
}
|
46
|
-
CLUSTER[at0008] occurrences matches {0..1} matches { -- Findings
|
47
|
-
items cardinality matches {
|
48
|
-
CLUSTER[at0.2] occurrences matches {0..1} matches { -- Abdominal wall
|
49
|
-
items cardinality matches {
|
50
|
-
ELEMENT[at0.3] occurrences matches {0..1} matches { -- Description
|
51
|
-
value matches {
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
at0.
|
75
|
-
at0.
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
}
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
}
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
archetype_id/value matches {/exam-generic-
|
116
|
-
}
|
117
|
-
|
118
|
-
|
119
|
-
}
|
120
|
-
|
121
|
-
|
122
|
-
allow_archetype CLUSTER occurrences matches {0..1} matches {
|
123
|
-
include
|
124
|
-
archetype_id/value matches {/
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
archetype_id/value matches {/exam-generic\.v1/}
|
158
|
-
archetype_id/value matches {/exam\.v1/}
|
159
|
-
archetype_id/value matches {/percussion\.v1/}
|
160
|
-
archetype_id/value matches {/relative_position_abdomen\.v1draft/}
|
161
|
-
}
|
162
|
-
use_node ELEMENT /items[at0008]/items[at0.2]/items[at0.3]
|
163
|
-
}
|
164
|
-
}
|
165
|
-
}
|
166
|
-
}
|
167
|
-
use_node ELEMENT /items[at0008]/items[at0.2]/items[at0.3]
|
168
|
-
}
|
169
|
-
}
|
170
|
-
CLUSTER[at0003] occurrences matches {0..1} matches { -- Detail
|
171
|
-
items cardinality matches {0..*; unordered} matches {
|
172
|
-
allow_archetype CLUSTER occurrences matches {0..1} matches {
|
173
|
-
include
|
174
|
-
archetype_id/value matches {/exam-generic\.v1/}
|
175
|
-
}
|
176
|
-
}
|
177
|
-
}
|
178
|
-
}
|
179
|
-
}
|
180
|
-
ELEMENT[at0006] occurrences matches {0..*} matches { -- Image
|
181
|
-
value matches {
|
182
|
-
DV_MULTIMEDIA matches {
|
183
|
-
media_type matches {
|
184
|
-
[openEHR::
|
185
|
-
426,
|
186
|
-
427,
|
187
|
-
429]
|
188
|
-
}
|
189
|
-
}
|
190
|
-
}
|
191
|
-
}
|
192
|
-
}
|
193
|
-
}
|
34
|
+
definition
|
35
|
+
CLUSTER[at0000.1] matches { -- Examination of the abdomen
|
36
|
+
items cardinality matches {1..*; unordered} matches {
|
37
|
+
CLUSTER[at0004] occurrences matches {0..1} matches { -- Normal statements
|
38
|
+
items cardinality matches {1..*; unordered} matches {
|
39
|
+
ELEMENT[at0005] occurrences matches {0..*} matches { -- Normal statement
|
40
|
+
value matches {
|
41
|
+
DV_TEXT matches {*}
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
ELEMENT[at0002] occurrences matches {0..1} matches { -- Clinical description
|
47
|
+
value matches {
|
48
|
+
DV_TEXT matches {*}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
CLUSTER[at0008] occurrences matches {0..1} matches { -- Findings
|
52
|
+
items cardinality matches {1..*; unordered} matches {
|
53
|
+
CLUSTER[at0.2] occurrences matches {0..1} matches { -- Abdominal wall
|
54
|
+
items cardinality matches {1..*; unordered} matches {
|
55
|
+
ELEMENT[at0.3] occurrences matches {0..1} matches { -- Description
|
56
|
+
value matches {
|
57
|
+
DV_TEXT matches {*}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
allow_archetype CLUSTER[at0.24] occurrences matches {0..1} matches { -- Abdominal wall detail
|
61
|
+
include
|
62
|
+
archetype_id/value matches {/openEHR-EHR-CLUSTER\.palpation(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.inspection(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.exam-generic(-[a-zA-Z0-9_]+)*\.v1/}
|
63
|
+
}
|
64
|
+
}
|
65
|
+
}
|
66
|
+
CLUSTER[at0.9] occurrences matches {0..1} matches { -- Abdominal region
|
67
|
+
items cardinality matches {1..*; unordered} matches {
|
68
|
+
ELEMENT[at0.10] occurrences matches {0..1} matches { -- Region
|
69
|
+
value matches {
|
70
|
+
DV_CODED_TEXT matches {
|
71
|
+
defining_code matches {
|
72
|
+
[local::
|
73
|
+
at0.11, -- Left upper quadrant
|
74
|
+
at0.12, -- Epigastrium
|
75
|
+
at0.16, -- Left upper quadrant
|
76
|
+
at0.17, -- Right loin
|
77
|
+
at0.18, -- Central/peri-umbilical
|
78
|
+
at0.19, -- Left loin
|
79
|
+
at0.20, -- Right iliac fossa
|
80
|
+
at0.21] -- Left iliac fossa
|
81
|
+
}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
}
|
85
|
+
use_node ELEMENT /items[at0008]/items[at0.2]/items[at0.3] -- /items[Findings]/items[Abdominal wall]/items[Description]
|
86
|
+
allow_archetype CLUSTER[at0.25] occurrences matches {0..1} matches { -- Abdominal region detail
|
87
|
+
include
|
88
|
+
archetype_id/value matches {/openEHR-EHR-CLUSTER\.exam-generic(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.inspection(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.palpation(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.auscultation(-[a-zA-Z0-9_]+)*\.v1/}
|
89
|
+
}
|
90
|
+
}
|
91
|
+
}
|
92
|
+
CLUSTER[at0.5] occurrences matches {0..1} matches { -- Abdominal contents
|
93
|
+
items cardinality matches {1..*; unordered} matches {
|
94
|
+
use_node ELEMENT occurrences matches {0..1} /items[at0008]/items[at0.2]/items[at0.3] -- /items[Findings]/items[Abdominal wall]/items[Description]
|
95
|
+
CLUSTER[at0.13] occurrences matches {0..1} matches { -- Organs
|
96
|
+
items cardinality matches {1..*; unordered} matches {
|
97
|
+
CLUSTER[at0.14] occurrences matches {0..1} matches { -- Liver
|
98
|
+
items cardinality matches {1..*; unordered} matches {
|
99
|
+
use_node ELEMENT /items[at0008]/items[at0.2]/items[at0.3] -- /items[Findings]/items[Abdominal wall]/items[Description]
|
100
|
+
allow_archetype CLUSTER[at0.27] occurrences matches {0..1} matches { -- Liver detail
|
101
|
+
include
|
102
|
+
archetype_id/value matches {/openEHR-EHR-CLUSTER\.palpation(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.physical_properties(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.percussion(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.exam-generic(-[a-zA-Z0-9_]+)*\.v1/}
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}
|
106
|
+
CLUSTER[at0.7] occurrences matches {0..1} matches { -- Spleen
|
107
|
+
items cardinality matches {1..*; unordered} matches {
|
108
|
+
use_node ELEMENT /items[at0008]/items[at0.2]/items[at0.3] -- /items[Findings]/items[Abdominal wall]/items[Description]
|
109
|
+
allow_archetype CLUSTER[at0.28] occurrences matches {0..1} matches { -- Spleen detail
|
110
|
+
include
|
111
|
+
archetype_id/value matches {/openEHR-EHR-CLUSTER\.palpation(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.physical_properties(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.percussion(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.exam-generic(-[a-zA-Z0-9_]+)*\.v1/}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
115
|
+
CLUSTER[at0.8] occurrences matches {0..1} matches { -- Kidney
|
116
|
+
items cardinality matches {1..*; unordered} matches {
|
117
|
+
use_node ELEMENT /items[at0008]/items[at0.2]/items[at0.3] -- /items[Findings]/items[Abdominal wall]/items[Description]
|
118
|
+
allow_archetype CLUSTER[at0.29] occurrences matches {0..1} matches { -- Kidney detail
|
119
|
+
include
|
120
|
+
archetype_id/value matches {/openEHR-EHR-CLUSTER\.palpation(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.physical_properties(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.percussion(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.exam-generic(-[a-zA-Z0-9_]+)*\.v1/}
|
121
|
+
}
|
122
|
+
}
|
123
|
+
}
|
124
|
+
CLUSTER[at0.15] occurrences matches {0..1} matches { -- Bowel
|
125
|
+
items cardinality matches {1..*; unordered} matches {
|
126
|
+
use_node ELEMENT /items[at0008]/items[at0.2]/items[at0.3] -- /items[Findings]/items[Abdominal wall]/items[Description]
|
127
|
+
allow_archetype CLUSTER[at0.30] occurrences matches {0..1} matches { -- Bowel detail
|
128
|
+
include
|
129
|
+
archetype_id/value matches {/openEHR-EHR-CLUSTER\.palpation(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.physical_properties(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.percussion(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.exam-generic(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.auscultation(-[a-zA-Z0-9_]+)*\.v1/}
|
130
|
+
}
|
131
|
+
}
|
132
|
+
}
|
133
|
+
}
|
134
|
+
}
|
135
|
+
allow_archetype CLUSTER[at0.26] occurrences matches {0..*} matches { -- Abdominal contents detail
|
136
|
+
include
|
137
|
+
archetype_id/value matches {/openEHR-EHR-CLUSTER\.palpation(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.physical_properties(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.percussion(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.exam-generic(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.auscultation(-[a-zA-Z0-9_]+)*\.v1/}
|
138
|
+
}
|
139
|
+
}
|
140
|
+
}
|
141
|
+
allow_archetype CLUSTER[at0009] occurrences matches {0..1} matches { -- Detail
|
142
|
+
include
|
143
|
+
archetype_id/value matches {/openEHR-EHR-CLUSTER\.exam-generic(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.auscultation(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.inspection(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.palpation(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.percussion(-[a-zA-Z0-9_]+)*\.v1|openEHR-EHR-CLUSTER\.physical_properties(-[a-zA-Z0-9_]+)*\.v1/}
|
144
|
+
}
|
145
|
+
}
|
146
|
+
}
|
147
|
+
ELEMENT[at0006] occurrences matches {0..*} matches { -- Image
|
148
|
+
value matches {
|
149
|
+
DV_MULTIMEDIA matches {
|
150
|
+
media_type matches {
|
151
|
+
[openEHR::
|
152
|
+
426,
|
153
|
+
427,
|
154
|
+
429]
|
155
|
+
}
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}
|
159
|
+
}
|
160
|
+
}
|
161
|
+
|
194
162
|
|
195
163
|
ontology
|
196
164
|
term_definitions = <
|
197
165
|
["en"] = <
|
198
166
|
items = <
|
199
167
|
["at0.10"] = <
|
200
|
-
description = <"*">
|
201
168
|
text = <"Region">
|
169
|
+
description = <"The abdominal region being described.">
|
202
170
|
>
|
203
171
|
["at0.11"] = <
|
204
|
-
description = <"*">
|
205
172
|
text = <"Left upper quadrant">
|
173
|
+
description = <"*">
|
206
174
|
>
|
207
175
|
["at0.12"] = <
|
208
|
-
description = <"*">
|
209
176
|
text = <"Epigastrium">
|
177
|
+
description = <"*">
|
210
178
|
>
|
211
179
|
["at0.13"] = <
|
212
|
-
description = <"*">
|
213
180
|
text = <"Organs">
|
181
|
+
description = <"*">
|
214
182
|
>
|
215
183
|
["at0.14"] = <
|
216
|
-
description = <"*">
|
217
184
|
text = <"Liver">
|
185
|
+
description = <"Findings related to liver.">
|
218
186
|
>
|
219
187
|
["at0.15"] = <
|
220
|
-
description = <"*">
|
221
188
|
text = <"Bowel">
|
189
|
+
description = <"Findings related to bowel.">
|
222
190
|
>
|
223
191
|
["at0.16"] = <
|
224
|
-
description = <"*">
|
225
192
|
text = <"Left upper quadrant">
|
193
|
+
description = <"*">
|
226
194
|
>
|
227
195
|
["at0.17"] = <
|
228
|
-
description = <"*">
|
229
196
|
text = <"Right loin">
|
197
|
+
description = <"*">
|
230
198
|
>
|
231
199
|
["at0.18"] = <
|
232
|
-
description = <"*">
|
233
200
|
text = <"Central/peri-umbilical">
|
201
|
+
description = <"*">
|
234
202
|
>
|
235
203
|
["at0.19"] = <
|
236
|
-
description = <"*">
|
237
204
|
text = <"Left loin">
|
205
|
+
description = <"*">
|
238
206
|
>
|
239
207
|
["at0.2"] = <
|
240
|
-
description = <"*">
|
241
208
|
text = <"Abdominal wall">
|
209
|
+
description = <"Findings related to the abdominal wall.">
|
242
210
|
>
|
243
211
|
["at0.20"] = <
|
244
|
-
description = <"*">
|
245
212
|
text = <"Right iliac fossa">
|
213
|
+
description = <"*">
|
246
214
|
>
|
247
215
|
["at0.21"] = <
|
248
|
-
description = <"*">
|
249
216
|
text = <"Left iliac fossa">
|
250
|
-
>
|
251
|
-
["at0.22"] = <
|
252
217
|
description = <"*">
|
253
|
-
text = <"New element">
|
254
218
|
>
|
255
|
-
["at0.
|
256
|
-
|
257
|
-
|
219
|
+
["at0.24"] = <
|
220
|
+
text = <"Abdominal wall detail">
|
221
|
+
description = <"Details of abdominal wall findings.">
|
222
|
+
>
|
223
|
+
["at0.25"] = <
|
224
|
+
text = <"Abdominal region detail">
|
225
|
+
description = <"Detailed findings of a specific abdominal region.">
|
226
|
+
>
|
227
|
+
["at0.26"] = <
|
228
|
+
text = <"Abdominal contents detail">
|
229
|
+
description = <"Detailed findings of abdominal contents.">
|
230
|
+
>
|
231
|
+
["at0.27"] = <
|
232
|
+
text = <"Liver detail">
|
233
|
+
description = <"Detailed liver findings.">
|
234
|
+
>
|
235
|
+
["at0.28"] = <
|
236
|
+
text = <"Spleen detail">
|
237
|
+
description = <"Detailed spleen findings.">
|
238
|
+
>
|
239
|
+
["at0.29"] = <
|
240
|
+
text = <"Kidney detail">
|
241
|
+
description = <"Detailed kidney findings.">
|
258
242
|
>
|
259
243
|
["at0.3"] = <
|
260
|
-
description = <"Clincial description of findings">
|
261
244
|
text = <"Description">
|
245
|
+
description = <"Clinical description of findings related to the abdominal wall.">
|
262
246
|
>
|
263
|
-
["at0.
|
264
|
-
|
265
|
-
|
247
|
+
["at0.30"] = <
|
248
|
+
text = <"Bowel detail">
|
249
|
+
description = <"Detailed bowel findings.">
|
266
250
|
>
|
267
251
|
["at0.5"] = <
|
268
|
-
|
269
|
-
|
270
|
-
>
|
271
|
-
["at0.6"] = <
|
272
|
-
description = <"Clinical description">
|
273
|
-
text = <"Description">
|
252
|
+
text = <"Abdominal contents">
|
253
|
+
description = <"Findings related to abdominal contents.">
|
274
254
|
>
|
275
255
|
["at0.7"] = <
|
276
|
-
description = <"*">
|
277
256
|
text = <"Spleen">
|
257
|
+
description = <"Findings related to spleen.">
|
278
258
|
>
|
279
259
|
["at0.8"] = <
|
280
|
-
description = <"*">
|
281
260
|
text = <"Kidney">
|
261
|
+
description = <"Findings related to kidney.">
|
282
262
|
>
|
283
263
|
["at0.9"] = <
|
284
|
-
|
285
|
-
|
264
|
+
text = <"Abdominal region">
|
265
|
+
description = <"Findings related to a specific abdominal region.">
|
286
266
|
>
|
287
267
|
["at0000"] = <
|
288
|
-
description = <"Basic examination cluster for describing findings on physical examination when there is no named focus of examination">
|
289
268
|
text = <"Examination">
|
269
|
+
description = <"Basic examination cluster for describing findings on physical examination when there is no named focus of examination.">
|
290
270
|
>
|
291
271
|
["at0000.1"] = <
|
292
|
-
description = <"For recording findings on physical examination of the abdomen">
|
293
272
|
text = <"Examination of the abdomen">
|
273
|
+
description = <"For recording findings on physical examination of the abdomen.">
|
294
274
|
>
|
295
275
|
["at0002"] = <
|
296
|
-
description = <"Textural description of the part examined">
|
297
276
|
text = <"Clinical description">
|
277
|
+
description = <"Textural description of the part examined.">
|
298
278
|
>
|
299
279
|
["at0003"] = <
|
300
|
-
description = <"More focused examination findings">
|
301
280
|
text = <"Detail">
|
281
|
+
description = <"More focused examination findings.">
|
302
282
|
>
|
303
283
|
["at0004"] = <
|
304
|
-
description = <"A group of statements about the normality of the examination">
|
305
284
|
text = <"Normal statements">
|
285
|
+
description = <"A group of statements about the normality of the examination.">
|
306
286
|
>
|
307
287
|
["at0005"] = <
|
308
|
-
description = <"A specific statement of normality">
|
309
288
|
text = <"Normal statement">
|
289
|
+
description = <"A specific statement of normality.">
|
310
290
|
>
|
311
291
|
["at0006"] = <
|
312
|
-
description = <"Drawing or image of the area examined">
|
313
292
|
text = <"Image">
|
293
|
+
description = <"Drawing or image of the area examined.">
|
314
294
|
>
|
315
295
|
["at0008"] = <
|
316
|
-
description = <"Clinical findings">
|
317
296
|
text = <"Findings">
|
297
|
+
description = <"Clinical findings.">
|
298
|
+
>
|
299
|
+
["at0009"] = <
|
300
|
+
text = <"Detail">
|
301
|
+
description = <"More focused examination findings.">
|
318
302
|
>
|
319
303
|
>
|
320
304
|
>
|