openehr 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -53,5 +53,44 @@ module OpenEHR
53
53
  end
54
54
  end
55
55
  end
56
- end
57
- end
56
+
57
+ class ArchetypeNode
58
+ attr_reader :parent
59
+ attr_accessor :path, :id
60
+
61
+ def initialize(parent = nil)
62
+ @parent = parent
63
+ @path = '/' if parent.nil?
64
+ end
65
+
66
+ def root?
67
+ return parent.nil?
68
+ end
69
+ end
70
+
71
+ class CDvQuantityItems < Treetop::Runtime::SyntaxNode
72
+ def value(node)
73
+ property = prop.value unless prop.empty?
74
+ list = ql.value(node) unless ql.empty?
75
+ av = aqv.value unless aqv.empty?
76
+ OpenEHR::AM::OpenEHRProfile::DataTypes::Quantity::CDvQuantity.new(
77
+ :path => node.path, :rm_type_name => 'DvQuantity',
78
+ :occurrences => OpenEHR::AssumedLibraryTypes::Interval.new(
79
+ :upper => 1, :lower => 1),
80
+ :property => property, :list => list, :assumed_value => av)
81
+ end
82
+ end
83
+
84
+ class AssumedValueItems < Treetop::Runtime::SyntaxNode
85
+ def value
86
+ magnitude, precision = nil
87
+ magnitude = mag.val.value unless mag.empty?
88
+ precision = prec.val.value unless prec.empty?
89
+ OpenEHR::RM::DataTypes::Quantity::DvQuantity.new(
90
+ :units => units.value,
91
+ :magnitude => magnitude,
92
+ :precision => precision)
93
+ end
94
+ end
95
+ end # of Parser
96
+ end # of openEHR
@@ -1,7 +1,7 @@
1
1
  $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
- require 'polyglot'
4
3
  require 'treetop'
4
+ require 'polyglot'
5
5
  include OpenEHR::Parser
6
6
  include OpenEHR::AM::Archetype
7
7
  include OpenEHR::RM::Support::Identification
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "openehr"
8
- s.version = "1.1.0"
8
+ s.version = "1.1.1"
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-05-04"
12
+ s.date = "2012-05-10"
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 = [
@@ -41,15 +41,10 @@ Gem::Specification.new do |s|
41
41
  "lib/openehr/am/openehr_profile/data_types/text.rb",
42
42
  "lib/openehr/assumed_library_types.rb",
43
43
  "lib/openehr/parser.rb",
44
- "lib/openehr/parser/adl.rb",
45
44
  "lib/openehr/parser/adl_grammar.tt",
45
+ "lib/openehr/parser/adl_helper.rb",
46
46
  "lib/openehr/parser/adl_parser.rb",
47
- "lib/openehr/parser/cadl_grammar.tt",
48
- "lib/openehr/parser/cadl_node.rb",
49
- "lib/openehr/parser/dadl.rb",
50
- "lib/openehr/parser/dadl_grammar.tt",
51
47
  "lib/openehr/parser/exception.rb",
52
- "lib/openehr/parser/shared_token_grammar.tt",
53
48
  "lib/openehr/parser/validator.rb",
54
49
  "lib/openehr/parser/xml_perser.rb",
55
50
  "lib/openehr/rm.rb",
@@ -273,6 +268,7 @@ Gem::Specification.new do |s|
273
268
  "spec/lib/openehr/parser/mixed_node_types_spec.rb",
274
269
  "spec/lib/openehr/parser/most_minimal_adl_spec.rb",
275
270
  "spec/lib/openehr/parser/multi_language_spec.rb",
271
+ "spec/lib/openehr/parser/openehr_apgar_spec.rb",
276
272
  "spec/lib/openehr/parser/parser_spec_helper.rb",
277
273
  "spec/lib/openehr/parser/path_based_terminology_binding_spec.rb",
278
274
  "spec/lib/openehr/parser/special_string_spec.rb",
@@ -1,545 +1,1216 @@
1
- archetype (adl_version=1.4)
2
- openEHR-EHR-OBSERVATION.apgar.v1
3
-
4
- concept
5
- [at0000] -- Apgar score
6
- language
7
- original_language = <[ISO_639-1::en]>
8
- translations = <
9
- ["de"] = <
10
- language = <[ISO_639-1::de]>
11
- author = <
12
- ["name"] = <"Jasmin Buck, Sebastian Garde">
13
- ["organisation"] = <"University of Heidelberg, Central Queensland University">
14
- >
15
- >
16
- ["en-us"] = <
17
- language = <[ISO_639-1::en-us]>
18
- author = <
19
- ["name"] = <"????">
20
- >
21
- >
22
- >
23
- description
24
- original_author = <
25
- ["name"] = <"Sam Heard">
26
- ["organisation"] = <"Ocean Informatics">
27
- ["date"] = <"18/05/2004">
28
- ["email"] = <"sam.heard@oceaninformatics.biz">
29
- >
30
- details = <
31
- ["en-us"] = <
32
- language = <[ISO_639-1::en-us]>
33
- purpose = <"Record Apgar index or assessment for newborn. The root time of the event series is always birth.">
34
- use = <"Allows recording of infant well-being at 1,2,5 and or 10 mintues after birth. The total may be recorded alone - if this is all that is available - but all five ordinal values should be completed in order that the total can be calculated. The total is the sum of the five ordinal values (min 0, max 10).">
35
- keywords = <"apgar", "index", "score", "newborn">
36
- misuse = <"Only partially completing the score and adding less than five values to give the total.">
37
- >
38
- ["en"] = <
39
- language = <[ISO_639-1::en]>
40
- purpose = <"Record Apgar index or assessment for newborn. The root time of the event series is always birth.">
41
- use = <"Allows recording of infant well-being at 1,2,5 and or 10 mintues after birth. The total may be recorded alone - if this is all that is available - but all five ordinal values should be completed in order that the total can be calculated. The total is the sum of the five ordinal values (min 0, max 10).">
42
- keywords = <"apgar", "newborn", "index", "score">
43
- misuse = <"Only partially completing the score and adding less than five values to give the total.">
44
- >
45
- ["de"] = <
46
- language = <[ISO_639-1::de]>
47
- purpose = <"Zur Dokumentation des Apgar Wertes oder Beurteilung f%G�%@r Neugeborene. Der zu Grunde liegende Zeitpunkt der Ereignisreihe ist immer die Geburt.">
48
- use = <"Erm%G�%@glicht die Dokumentation des Wohlergehens des S%G�%@uglings 1, 2, 5 und/ oder 10 Minuten nach der Geburt. Die Summe kann einzeln dokumentiert werden - falls nur diese verf%G�%@gbar ist - es sollten aber alle f%G�%@nf Zahlenwerte vervollst%G�%@ndigt werden, damit die Summe errechnet werden kann. Die Gesamtsumme ist die Summe der f%G�%@nf Zahlenwerte (minimal 0, maximal 10).">
49
- keywords = <"Apgar", "Neugeborenes", "Index", "Wert">
50
- misuse = <"Nur teilweise Vervollst%G�%@ndigung der Werte und Addieren von weniger als f%G�%@nf Werten zur Gesamtsumme.">
51
- >
52
- >
53
- lifecycle_state = <"AuthorDraft">
54
- other_contributors = <>
55
-
56
- definition
57
- OBSERVATION[at0000] matches { -- Apgar score
58
- data matches {
59
- HISTORY[at0002] matches { -- history
60
- events cardinality matches {1..*; unordered} matches {
61
- POINT_EVENT[at0003] occurrences matches {0..1} matches { -- 1 minute
62
- offset matches {
63
- DV_DURATION matches {
64
- value matches {|PT1M|}
65
- }
66
- }
67
- data matches {
68
- ITEM_LIST[at0001] matches { -- structure
69
- items cardinality matches {1..6; ordered} matches {
70
- ELEMENT[at0005] occurrences matches {0..1} matches { -- Heart rate
71
- value matches {
72
- 0|[local::at0006], -- No heart beat
73
- 1|[local::at0007], -- Less than 100 beats per minute
74
- 2|[local::at0008] -- Greater than or equal to 100 beats per minute
75
- }
76
- }
77
- ELEMENT[at0009] occurrences matches {0..1} matches { -- Breathing
78
- value matches {
79
- 0|[local::at0010], -- No effort
80
- 1|[local::at0011], -- Moderate effort
81
- 2|[local::at0012] -- Crying
82
- }
83
- }
84
- ELEMENT[at0013] occurrences matches {0..1} matches { -- Muscle tone
85
- value matches {
86
- 0|[local::at0014], -- Limp
87
- 1|[local::at0015], -- Some flexing of arms and legs
88
- 2|[local::at0016] -- Active motion
89
- }
90
- }
91
- ELEMENT[at0017] occurrences matches {0..1} matches { -- Reflex response
92
- value matches {
93
- 0|[local::at0018], -- No response to airways suction
94
- 1|[local::at0019], -- Grimace during airways suction
95
- 2|[local::at0020] -- Grimace and cough/sneeze during airways suction
96
- }
97
- }
98
- ELEMENT[at0021] occurrences matches {0..1} matches { -- Colour
99
- value matches {
100
- 0|[local::at0022], -- Whole body is blue or pale
101
- 1|[local::at0023], -- Good colour in body, hands or feet blue
102
- 2|[local::at0024] -- Completely pink or good colour
103
- }
104
- }
105
- ELEMENT[at0025] matches { -- Total
106
- value matches {
107
- DV_COUNT matches {
108
- magnitude matches {|0..10|}
109
- }
110
- }
111
- }
112
- }
113
- }
114
- }
115
- }
116
- POINT_EVENT[at0026] occurrences matches {0..1} matches { -- 2 minute
117
- offset matches {
118
- DV_DURATION matches {
119
- value matches {|PT2M|}
120
- }
121
- }
122
- data matches {
123
- use_node ITEM_LIST /data[at0002]/events[at0003]/data[at0001]
124
- }
125
- }
126
- POINT_EVENT[at0027] occurrences matches {0..1} matches { -- 5 minute
127
- offset matches {
128
- DV_DURATION matches {
129
- value matches {|PT5M|}
130
- }
131
- }
132
- data matches {
133
- use_node ITEM_LIST /data[at0002]/events[at0003]/data[at0001]
134
- }
135
- }
136
- POINT_EVENT[at0028] occurrences matches {0..1} matches { -- 10 minute
137
- offset matches {
138
- DV_DURATION matches {
139
- value matches {|PT10M|}
140
- }
141
- }
142
- data matches {
143
- use_node ITEM_LIST /data[at0002]/events[at0003]/data[at0001]
144
- }
145
- }
146
- }
147
- }
148
- }
149
- protocol matches {
150
- ITEM_LIST[at0029] matches { -- List
151
- items cardinality matches {0..*; unordered} matches {
152
- ELEMENT[at0030] occurrences matches {0..1} matches { -- Notes on measurement
153
- value matches {
154
- DV_TEXT matches {*}
155
- }
156
- }
157
- }
158
- }
159
- }
160
- }
161
-
162
- ontology
163
- terminologies_available = <"LNC205", ...>
164
- term_definitions = <
165
- ["en"] = <
166
- items = <
167
- ["at0000"] = <
168
- description = <"Clinical score derived from assessment of breathing, colour, muscle tone, heart rate and reflex response usually taken at 1, 5 and 10 minutes after birth">
169
- text = <"Apgar score">
170
- >
171
- ["at0001"] = <
172
- description = <"@ internal @">
173
- text = <"structure">
174
- >
175
- ["at0002"] = <
176
- description = <"@ internal @">
177
- text = <"history">
178
- >
179
- ["at0003"] = <
180
- description = <"Apgar score at one minute from birth">
181
- text = <"1 minute">
182
- >
183
- ["at0005"] = <
184
- description = <"Assessment of heart function in the new born">
185
- text = <"Heart rate">
186
- >
187
- ["at0006"] = <
188
- description = <"No heart beat is present (palpation at base of umbilical cord)">
189
- text = <"No heart beat">
190
- >
191
- ["at0007"] = <
192
- description = <"Heart rate of less than 100 beats per minute">
193
- text = <"Less than 100 beats per minute">
194
- >
195
- ["at0008"] = <
196
- description = <"Heart rate of greater than or equal to 100 beats per minute">
197
- text = <"Greater than or equal to 100 beats per minute">
198
- >
199
- ["at0009"] = <
200
- description = <"Assessment of the neonate's breathing effort">
201
- text = <"Breathing">
202
- >
203
- ["at0010"] = <
204
- description = <"No effort to breath">
205
- text = <"No effort">
206
- >
207
- ["at0011"] = <
208
- description = <"Some effort to breath, moving chest">
209
- text = <"Moderate effort">
210
- >
211
- ["at0012"] = <
212
- description = <"Crying or breathing normally">
213
- text = <"Crying">
214
- >
215
- ["at0013"] = <
216
- description = <"Assessment of the baby's muscle tone">
217
- text = <"Muscle tone">
218
- >
219
- ["at0014"] = <
220
- description = <"Limp or floppy and not moving spontaneously">
221
- text = <"Limp">
222
- >
223
- ["at0015"] = <
224
- description = <"Some movement and flexion of the arms or legs">
225
- text = <"Some flexing of arms and legs">
226
- >
227
- ["at0016"] = <
228
- description = <"Active and mobile">
229
- text = <"Active motion">
230
- >
231
- ["at0017"] = <
232
- description = <"Assessment of the response of the baby to suction from a nostril">
233
- text = <"Reflex response">
234
- >
235
- ["at0018"] = <
236
- description = <"No gag or response to suction of the airway">
237
- text = <"No response to airways suction">
238
- >
239
- ["at0019"] = <
240
- description = <"Grimace only as reaction to airways suction">
241
- text = <"Grimace during airways suction">
242
- >
243
- ["at0020"] = <
244
- description = <"Grimace and cough, sneeze or gag as response to airway suction">
245
- text = <"Grimace and cough/sneeze during airways suction">
246
- >
247
- ["at0021"] = <
248
- description = <"The colour of the skin on the body and trunk and limbs">
249
- text = <"Colour">
250
- >
251
- ["at0022"] = <
252
- description = <"The body is pale or blue in color">
253
- text = <"Whole body is blue or pale">
254
- >
255
- ["at0023"] = <
256
- description = <"The body is pink, hands and feet pale or blue">
257
- text = <"Good colour in body, hands or feet blue ">
258
- >
259
- ["at0024"] = <
260
- description = <"Pink or good color to whole body">
261
- text = <"Completely pink or good colour">
262
- >
263
- ["at0025"] = <
264
- description = <"The total of the ordinal scores for each parameter">
265
- text = <"Total">
266
- >
267
- ["at0026"] = <
268
- description = <"Apgar score 2 minutes after birth">
269
- text = <"2 minute">
270
- >
271
- ["at0027"] = <
272
- description = <"Apgar score 5 minutes after birth">
273
- text = <"5 minute">
274
- >
275
- ["at0028"] = <
276
- description = <"Apgar score 10 minutes after birth">
277
- text = <"10 minute">
278
- >
279
- ["at0029"] = <
280
- description = <"@ internal @">
281
- text = <"List">
282
- >
283
- ["at0030"] = <
284
- description = <"Notes on measurement of the apgar">
285
- text = <"Notes on measurement">
286
- >
287
- >
288
- >
289
- ["en-us"] = <
290
- items = <
291
- ["at0000"] = <
292
- description = <"Clinical score derived from assessment of breathing, colour, muscle tone, heart rate and reflex response usually taken at 1, 5 and 10 minutes after birth">
293
- text = <"Apgar score">
294
- >
295
- ["at0001"] = <
296
- description = <"@ internal @">
297
- text = <"structure">
298
- >
299
- ["at0002"] = <
300
- description = <"@ internal @">
301
- text = <"history">
302
- >
303
- ["at0003"] = <
304
- description = <"Apgar score at one minute from birth">
305
- text = <"1 minute">
306
- >
307
- ["at0005"] = <
308
- description = <"Assessment of heart function in the new born">
309
- text = <"Heart rate">
310
- >
311
- ["at0006"] = <
312
- description = <"No heart beat is present - palpation of the base of umbilical cord">
313
- text = <"No heart beat">
314
- >
315
- ["at0007"] = <
316
- description = <"Less than 100 beats per minute">
317
- text = <"Less than 100 beats per minute">
318
- >
319
- ["at0008"] = <
320
- description = <"Heart rate of greater than or equal to 100 beats per minute">
321
- text = <"Greater than or equal to 100 beats per minute">
322
- >
323
- ["at0009"] = <
324
- description = <"Assessment of the neonate's breathing effort">
325
- text = <"Breathing">
326
- >
327
- ["at0010"] = <
328
- description = <"No effort to breath">
329
- text = <"No effort">
330
- >
331
- ["at0011"] = <
332
- description = <"Some effort to breath">
333
- text = <"Moderate effort">
334
- >
335
- ["at0012"] = <
336
- description = <"Crying or breathing normally">
337
- text = <"Crying">
338
- >
339
- ["at0013"] = <
340
- description = <"Assessment of the baby's muscle tone">
341
- text = <"Muscle tone">
342
- >
343
- ["at0014"] = <
344
- description = <"Limp or floppy and not moving spontaneously">
345
- text = <"Limp">
346
- >
347
- ["at0015"] = <
348
- description = <"Some movement and flexion of the arms or legs">
349
- text = <"Some flexing of arms and legs">
350
- >
351
- ["at0016"] = <
352
- description = <"Active and mobile">
353
- text = <"Active motion">
354
- >
355
- ["at0017"] = <
356
- description = <"Assessment of the response of the baby to suction from a nostril">
357
- text = <"Reflex response">
358
- >
359
- ["at0018"] = <
360
- description = <"No gag or response to suction of the airway">
361
- text = <"No response to airways suction">
362
- >
363
- ["at0019"] = <
364
- description = <"Grimace only as reaction to airways suction">
365
- text = <"Grimace during airways suction">
366
- >
367
- ["at0020"] = <
368
- description = <"Grimace and cough, sneeze or gag as response to airway suction">
369
- text = <"Grimace and cough/sneeze during airways suction">
370
- >
371
- ["at0021"] = <
372
- description = <"The color of the skin on the body, trunk and limbs">
373
- text = <"Color">
374
- >
375
- ["at0022"] = <
376
- description = <"The body is gray or blue in color">
377
- text = <"Whole body is gray">
378
- >
379
- ["at0023"] = <
380
- description = <"The body is pink, hands and feet gray or blue">
381
- text = <"Good color in body, hands or feet blue">
382
- >
383
- ["at0024"] = <
384
- description = <"Pink or good color to whole body">
385
- text = <"Completely pink or good color">
386
- >
387
- ["at0025"] = <
388
- description = <"The total of the ordinal scores for each parameter">
389
- text = <"Score">
390
- >
391
- ["at0026"] = <
392
- description = <"Apgar score 2 minutes after birth">
393
- text = <"2 minute">
394
- >
395
- ["at0027"] = <
396
- description = <"Apgar score 5 minutes after birth">
397
- text = <"5 minute">
398
- >
399
- ["at0028"] = <
400
- description = <"Apgar score 10 minutes after birth">
401
- text = <"10 minute">
402
- >
403
- ["at0029"] = <
404
- description = <"@ internal @">
405
- text = <"List">
406
- >
407
- ["at0030"] = <
408
- description = <"Any notes on the measurement of the apgar">
409
- text = <"Notes on measurement">
410
- >
411
- >
412
- >
413
- ["de"] = <
414
- items = <
415
- ["at0000"] = <
416
- description = <"Klinischer Wert, abgeleitet von der Beurteilung der Atmung, der Hautfarbe, dem Muskeltonus, der Herzfrequenz und der Reaktion von Reflexen, %G�%@blicherweise 1, 5 und 10 Minuten nach der Geburt erhoben">
417
- text = <"Apgar Wert">
418
- >
419
- ["at0001"] = <
420
- description = <"@ internal @">
421
- text = <"Structure">
422
- >
423
- ["at0002"] = <
424
- description = <"@ internal @">
425
- text = <"History">
426
- >
427
- ["at0003"] = <
428
- description = <"Apgar Wert 1 Minute nach der Geburt">
429
- text = <"1 Minute">
430
- >
431
- ["at0005"] = <
432
- description = <"Beurteilung der Herzfunktion des Neubegorenen">
433
- text = <"Herzfrequenz">
434
- >
435
- ["at0006"] = <
436
- description = <"Kein Herzschlag vorhanden (Palpation am Ende der Nabelschnur)">
437
- text = <"Kein Herzschlag">
438
- >
439
- ["at0007"] = <
440
- description = <"Herzfrequenz von weniger als 100 Schl%G�%@gen pro Minute">
441
- text = <"Weniger als 100 Schl%G�%@ge pro Minute">
442
- >
443
- ["at0008"] = <
444
- description = <"Herzfrequenz von mehr als oder genau 100 Schl%G�%@gen pro Minute">
445
- text = <"Mehr als oder genau 100 Schl%G�%@ge pro Minute">
446
- >
447
- ["at0009"] = <
448
- description = <"Beurteilung des Atmungsbestreben des Neugeborenen">
449
- text = <"Atmung">
450
- >
451
- ["at0010"] = <
452
- description = <"Kein Bestreben zu atmen">
453
- text = <"Kein Bestreben">
454
- >
455
- ["at0011"] = <
456
- description = <"Etwas bestrebt zu atmen, bewegter Brustkorb">
457
- text = <"Geringes Bestreben">
458
- >
459
- ["at0012"] = <
460
- description = <"Normales Schreien oder normale Atmung">
461
- text = <"Schreien">
462
- >
463
- ["at0013"] = <
464
- description = <"Beurteilung des Muskeltonus des Neugeborenen">
465
- text = <"Muskeltonus">
466
- >
467
- ["at0014"] = <
468
- description = <"Schlaff oder schlapp und keine spontane Bewegung">
469
- text = <"Schlaff">
470
- >
471
- ["at0015"] = <
472
- description = <"Etwas Bewegung und Beugen der Arme oder der Beine">
473
- text = <"Beugen der Arme und Beine">
474
- >
475
- ["at0016"] = <
476
- description = <"Lebhaft und beweglich">
477
- text = <"Lebhafte Bewegung">
478
- >
479
- ["at0017"] = <
480
- description = <"Beurteilung der Reaktion des Neugeborenen auf die Absaugung der Nasenl%G�%@cher">
481
- text = <"Reflexantwort">
482
- >
483
- ["at0018"] = <
484
- description = <"kein W%G�%@rgen oder keine Reaktion auf das Absaugen der Atemwege">
485
- text = <"Keine Reaktion auf die Absaugung der Atemwege">
486
- >
487
- ["at0019"] = <
488
- description = <"Grimasse als einzige Reaktion auf das Absaugen der Atemwege">
489
- text = <"Grimasse w%G�%@hrend der Absaugung der Atemwege">
490
- >
491
- ["at0020"] = <
492
- description = <"Grimasse und husten, niesen oder w%G�%@rgen als Reaktion auf die Absaugung der Atemwege">
493
- text = <"Grimasse und Husten/Niesen w%G�%@hrend der Absaugung der Atemwege ">
494
- >
495
- ["at0021"] = <
496
- description = <"Die Farbe der Haut am K%G�%@rper, am Rumpf und an den Gliedern">
497
- text = <"Hautfarbe">
498
- >
499
- ["at0022"] = <
500
- description = <"Der K%G�%@rper ist blass oder blau gef%G�%@rbt">
501
- text = <"Gesamter K%G�%@rper ist blau oder blass">
502
- >
503
- ["at0023"] = <
504
- description = <"Der K%G�%@rper ist rosig, H%G�%@nde und F%G��%@e sind blass oder blau">
505
- text = <"Gesunde K%G�%@rperfarbe, blaue H%G�%@nde oder F%G��%@e">
506
- >
507
- ["at0024"] = <
508
- description = <"Rosige oder gesunde F%G�%@rbung des gesamten K%G�%@rpers">
509
- text = <"Vollst%G�%@ndig gesunde oder rosige Farbe">
510
- >
511
- ["at0025"] = <
512
- description = <"Die Summe der Zahlenwerte aller Parameter">
513
- text = <"Summe">
514
- >
515
- ["at0026"] = <
516
- description = <"Apgar Wert 2 Minuten nach der Geburt">
517
- text = <"2 Minuten">
518
- >
519
- ["at0027"] = <
520
- description = <"Apgar Wert 5 Minuten nach der Geburt">
521
- text = <"5 Minuten">
522
- >
523
- ["at0028"] = <
524
- description = <"Apgar Wert 10 Minuten nach der Geburt">
525
- text = <"10 Minuten">
526
- >
527
- ["at0029"] = <
528
- description = <"@ internal @">
529
- text = <"List">
530
- >
531
- ["at0030"] = <
532
- description = <"Anmerkungen zur Messung des Apgar Wertes">
533
- text = <"Anmerkungen zur Messung">
534
- >
535
- >
536
- >
537
- >
538
- term_binding = <
539
- ["LNC205"] = <
540
- items = <
541
- ["/data[at0002]/events[at0003]/data[at0001]/items[at0025]"] = <[LNC205::9272-6]>
542
- ["/data[at0002]/events[at0028]/data/items[at0025]"] = <[LNC205::9271-8]>
543
- >
544
- >
545
- >
1
+ archetype (adl_version=1.4)
2
+ openEHR-EHR-OBSERVATION.apgar.v1
3
+
4
+ concept
5
+ [at0000] -- Apgar score
6
+ language
7
+ original_language = <[ISO_639-1::en]>
8
+ translations = <
9
+ ["fa"] = <
10
+ language = <[ISO_639-1::fa]>
11
+ author = <
12
+ ["name"] = <"Shahla Foozonkhah">
13
+ ["organisation"] = <"Ocean Informatics">
14
+ ["email"] = <"Shahla.foozonkhah@oceanInformatics.com">
15
+ >
16
+ >
17
+ ["de"] = <
18
+ language = <[ISO_639-1::de]>
19
+ author = <
20
+ ["name"] = <"Jasmin Buck, Sebastian Garde, Thilo Schuler">
21
+ ["organisation"] = <"University of Heidelberg, Central Queensland University, Ocean Informatics">
22
+ >
23
+ >
24
+ ["nl"] = <
25
+ language = <[ISO_639-1::nl]>
26
+ author = <
27
+ ["name"] = <"Marja Buur">
28
+ ["organisation"] = <"Medisch Centrum Alkmaar">
29
+ ["email"] = <"m.buur-krom@mca.nl">
30
+ >
31
+ accreditation = <"Erna Vreeke">
32
+ >
33
+ ["ar-sy"] = <
34
+ language = <[ISO_639-1::ar-sy]>
35
+ author = <
36
+ ["name"] = <"Mona Saleh">
37
+ >
38
+ >
39
+ ["es-cl"] = <
40
+ language = <[ISO_639-1::es-cl]>
41
+ author = <
42
+ ["name"] = <"Sergio Carmona">
43
+ >
44
+ >
45
+ ["ru"] = <
46
+ language = <[ISO_639-1::ru]>
47
+ author = <
48
+ ["name"] = <"Igor Lizunov">
49
+ ["email"] = <"i.lizunov@infinnity.ru">
50
+ >
51
+ >
52
+ >
53
+ description
54
+ original_author = <
55
+ ["name"] = <"Sam Heard">
56
+ ["organisation"] = <"Ocean Informatics">
57
+ ["email"] = <"sam.heard@oceaninformatics.com">
58
+ ["date"] = <"18/05/2004">
59
+ >
60
+ details = <
61
+ ["es-cl"] = <
62
+ language = <[ISO_639-1::es-cl]>
63
+ purpose = <"Registrar el índice del Apgar o la valoración del recién nacido. El tiempo inicial de medida de la serie de eventos es siempre la hora de nacimiento.">
64
+ use = <"Permite registrar el bienestar del neonato al 1,2,5 y o 10 minutos después del nacimiento. Se puede registrar sólo el total - si es todo lo que está disponible - aúnque se deben completar los cinco valores númericos para que pueda ser calculado el total. El total es la suma de los cinco valores númericos (el mínimo 0, el máximo 10).">
65
+ keywords = <"score", "apgar", "index", "recién nacido">
66
+ misuse = <"Completar el score parcialmente y no sumar los 5 valores para dar el total.">
67
+ copyright = <"© openEHR Foundation">
68
+ >
69
+ ["de"] = <
70
+ language = <[ISO_639-1::de]>
71
+ purpose = <"Zur Dokumentation des Apgar Wertes als eine einfache, nachvollziehbare Methode zur Dokumentation des Status eines Neugeborenen direkt nach der Geburt. Der zu Grunde liegende Zeitpunkt der Ereignisreihe ist immer die Geburt.">
72
+ use = <"Ermöglicht die Dokumentation des Wohlergehens des Säuglings 1, 2, 3, 5 und/oder 10 Minuten nach der Geburt, sowie zu anderen Zeitpunkten bei Bedarf.
73
+ Normale Praxis ist es, den Apgar Wert 1 und 5 Minuten nach der Geburt zu dokumentieren, weitere Werte können je nach klinischer Indikation ergänzt werden. Mit diesem Archetype ist es möglich, den Apgar Wert zu jedem Zeitpunkt nach der Geburt zu dokumentieren.
74
+ Normale klinische Praxis ist es, alle 5 Parameter und den Gesamtwert zu dokumentieren, jedoch erlaubt dieser Archetyp die Dokumentation einer beliebigen Untermenge, wenn z.B. aus Altdaten nicht mehr verfügbar ist.
75
+ Wenn der Gesamtwert errechnet werden soll, müssen Werte für alle 5 Komponenten dokumentiert werden. Der Geamtwert ergibt sich dann aus der Summe der fünf Einzelwerte (minimal: 0, maximal: 10),
76
+
77
+ Häufig werden mnemonische Merkhilfen für APGAR gelehrt. Z.B. in Englisch: A für Appearance (Hautfarbe), P für Pulse (Herzfrequenz), G für Grimace (Reflexauslösbarkeit), A für Activity (Muskeltonus), und R für Respiration (Atmung). Da dies nicht generell in allen Sprachen anwendbar ist, wird empfohlen, dass solche Merkhilfen durch Umbenennung innerhalb von Templates erstellt werden können, wenn dies für ein bestimmtes klinisches Szenario erwünscht ist.">
78
+ keywords = <"Neugeborenes", "Index", "Score", "Geburt", "Säugling", "neonatal", "Beurteilung">
79
+ misuse = <"Completar el score parcialmente y no sumar los 5 valores para dar el total.">
80
+ copyright = <"© openEHR Foundation">
81
+ >
82
+ ["en"] = <
83
+ language = <[ISO_639-1::en]>
84
+ purpose = <"Records the Apgar score as a simple, repeatable method to document the state of the newborn infant immediately after birth.
85
+ The root time of the event series is always birth.">
86
+ use = <"Allows recording of an assessment of the state of a neonate explicitly as 1, 2, 3, 5 and/or 10 minute events after birth, plus additional events as required.
87
+ Usual practice is to document the Apgar score at 1 and 5 minutes; further scores can be recorded as clinically indicated. It is possible to record the Apgar score at any time after birth using this archetype.
88
+ Common clinical practice is to record all 5 parameters plus the total, however this archetype allows any partial information to be recorded, if that is all that is available eg from historical data.
89
+ If the total is to be calculated, it is necessary for all 5 ordinal values to be recorded. The total is the sum of the five ordinal values (min 0, max 10).
90
+
91
+ It is recognised that mnemonic learning aid for APGAR is commonly taught. For example, in English: A for Appearance (skin color), P for Pulse (heart rate), G for Grimace (reflex irritability), A for Activity (muscle tone), and R for Respiration. As this is not universally applicable for all languages, it is suggested that this mnemonic can be applied by renaming the data elements within templates if desired for a specific clinical scenario.">
92
+ keywords = <"newborn", "index", "score", "birth", "infant", "neonate", "assessment">
93
+ misuse = <"Completar el score parcialmente y no sumar los 5 valores para dar el total.">
94
+ copyright = <"© openEHR Foundation">
95
+ >
96
+ ["ru"] = <
97
+ language = <[ISO_639-1::ru]>
98
+ purpose = <"Запись оценки по шкале Апгар - простой, повторяемый метод оценки состояния новорожденного сразу после рождения.
99
+ Первая оценка производится сразу после рождения, далее может быть серия повторных.">
100
+ use = <"Позволяет записывать состояние новорожденного по шкале Апгар на 1, 2, 3, 4, 5 и / или 10 минуту после рождения, плюс дополнительно в более поздние сроки, если требуется
101
+ Обычно практикуется документирование состояния новорожденного по Апгар на 1 и 5 минуте, друге оценки могут быть записаны по клиническим показаниям.
102
+ Этот архетип позволяет записывать оценку по шкале Апгар в любое время после рождения.
103
+ В общеклинической практике записывают 5 параметров плюс общую оценку, однако этот архетип позволяет вносить информацию частичное, если требуется, для формирования истории данных.
104
+ Если общая оценка считается, то необходимо записать все 5 обычно используемых признаков. Общая оценка получается суммированием 5 обычных значений (мин 0, макс 10).">
105
+ keywords = <"новорожденный", "оценка", "балл", "младенец", "оценка состояния">
106
+ misuse = <"Completar el score parcialmente y no sumar los 5 valores para dar el total.">
107
+ copyright = <"© openEHR Foundation">
108
+ >
109
+ ["nl"] = <
110
+ language = <[ISO_639-1::nl]>
111
+ purpose = <"Registreren van de Apgar score; een eenvoudige, te herhalen score, om de toestand van de pasgeborene onmiddelijk na de geboorte te documenteren.">
112
+ use = <"Staat registratie toe van de beoordeling van de toestand van een pasgeborene, op 1, 2, 3, 5, en/of 10 minuten na de geboorte, plus toegevoegde gebeurtenissen, indien gewenst.
113
+ Gewoonlijk wordt de Apgar score na 1 en 5 minuten gedaan, meerdere scores kunnen geregistreerd worden als dat klinisch geïndiceerd is. Het is bij gebruik van dit archetype mogelijk de Apgar score op ieder gewenst moment na de geboorte te registreren.
114
+ Algemeen klinische praktijk is om alle 5 parameters plus het totaal te registreren, maar in dit archtype kan iedere gedeeltelijke informatie opgeslagen worden, dat beschikbaar is in b.v. historische data. Als het totaal berekend wordt, is het noodzakelijk dat alle 5 parameters als waarde geregistreerd worden. Het totaal is de som van de 5 waardes (min 0, max 10).
115
+ Erkend wordt dat er gewoonlijk een ezelsbruggetje word gebruikt bij het aanleren van de Apgar score. Bijvoorbeeld: Appearance (kleur), Pulse (hartslag), Grimace (reactie op prikkels), Activity (spiertonus) en Respiration (ademhaling). Dit is niet universeel bruikbaar voor alle talen, gesuggereerd wordt dat dit geheugensteuntje kan worden toegepast door het hernoemen van de data elementen binnen templates, indien gewenst voor een specifiek klinisch scenario.">
116
+ keywords = <"pasgeborene", "index", "score", "geboorte", "kind", "neonaat", "beoordeling", "baby">
117
+ misuse = <"Completar el score parcialmente y no sumar los 5 valores para dar el total.">
118
+ copyright = <"© openEHR Foundation">
119
+ >
120
+ ["ar-sy"] = <
121
+ language = <[ISO_639-1::ar-sy]>
122
+ purpose = <"تسجيل حرز أبغار كطريقة بسيطة متكررة لتوثيق حالة الرضيع حديث الولادة بعد الولادة/ الوضع مباشرة.
123
+ الوقت الجذري لهذه السلسة من الوقائع هي دائما الولادة/الوضع">
124
+ use = <"يسمح بتسجيل تقييم حالة حديث الولادة بشكل صريح عند وقائع زمنية بالتحديد هي 1, 2, 3, 5 و/أو 10 دقائق بعد الولادة/الوضع, بالإضافة إلى أي وقائع إضافية حسب الحاجة.
125
+
126
+ تتضمن الممارسة المعتادة تسجيل حرز أبغار عند 1 و 5 دقائق, و يمكن تسجيل أحراز أخرى حسب الحاجة السريرية. و من الممكن تسجيل حرز أبغار عند أي نقطة زمنية بعد الولادة باستخدام هذا النموذج.
127
+
128
+ تقتضي الممارسة السريرية المعتادة تسجيل الـ 5 معايير بالإضافة إلى الإجمالي, إلا أن هذا النموذج يسمح بتسجيل أي معلمات جزئية, إذا كان هذا هو المتاح, مثل التسجيل من بيانات تاريخية.
129
+
130
+ إذا كان لابد من حساب الإجمالي, فإنه من الضروري لجميع الـ 5 قيم أن يتم تسجيلها. الإجمالي هو مجموع القيم المنفردة الخمسة - الحد الأدنى هو 0 و الحد الأقصى هو 10
131
+
132
+ و من المعروف أن كلمة أبغار تضم الأحرف الأولى للمعايير التي يتم قياسها - باللغة الإنجليزية. و هي تكافئ المظهر (لون الجلد/البشرة), و النبض (معدل القلب), و التكشيرة (التوتر الانعكاسي) و النشاط (توتر العضلات) و التنفس.
133
+ و حيث إن ذلك ليس قابلا للتطبيق حرفيا على اللغات الأخرى, فينبغي تطبيق هذا الاختصار بإعادة تسمية العناصر في داخل القوالب إذا كان من المرغوب في سيناريو سريري مُعيَّن.
134
+ ">
135
+ keywords = <"حديث الولادة", "معامل", "الحرز", "الولادة/الوضع", "الرضيع", "حديث الولادة", "تقييم">
136
+ misuse = <"Completar el score parcialmente y no sumar los 5 valores para dar el total.">
137
+ copyright = <"© openEHR Foundation">
138
+ >
139
+ ["fa"] = <
140
+ language = <[ISO_639-1::fa]>
141
+ purpose = <"برای ثبت نمره آپگار به عنوان روشی ساده و قابل تکرار در اسناد حالت نوزاد بلافاصله بعد از تولد بکار می رود
142
+ زمان اصلی سری رویدادها همیشه زمان تولد است ">
143
+ use = <" ثبت ارزیابی حالت نوزاد را بطور آشکار در دقایق یک ، دو ، سه و پنج و یا ده بعد تولد بعلاوه رویدادهای بیشتر در صورت نیاز را امکان پذیر می کند
144
+ عملکرد معمول ثبت نمره آپگار در دقایق یک و پنج است ، نمرات بیشتر را می توان در صورت نیاز بالینی می توان ثبت نمود با این الگو ساز ثبت نمره آپگار در عر لحظه بعد از تولد امگان پذیر است
145
+ عملکرد مشترک بالینی ثبت کلیه پنج پارامتر به علاوه کل است اما در صورتی که همه اطلاعات در دسترس باشند، این الگو ساز امکان ثبت هر گونه اطلاعات جزیی را امکان پذیر می کند به عنوان مثال داد های بیمارستانی
146
+ در صورتی که کل نمره باید محاسبه شود باید کلیه ارزشها ی ترتیبی ثبت شوند . کل مجموع پنج ارزش ترتیبی حداقل صفرو حداکثر ده می باشد
147
+ مشحص شده است که یادگیری حافظه ای آپکار معمولا تدریس می شودبرای مثال در انگلیس حرف \"ا\" برای ظاهر (رنگ پوست)و حرف \"پ\" برای نبض (میزان قلبی) ، حرف \"جی \" برای شکلک(رفلکس تحریک پذیری) ، حرف \"ا\" برای فعالیت (تون عضلانی ) و حرف \"ر\" برای تنفس استفاده می شود.گرچه این مورد برای تمام زبانها و بطور کلی قابل کاربرد نیست ، پیشنهاد می شود که در صورت تمایل در سناریوهای بالینی خاص ،یادگیری حافظه ای می تواند با نامگذاری مجدد عناصر داده ای در داخل الگو بکار رود">
148
+ keywords = <"تازه بدنیا آمده", "شاخص", "نمره", "تولد", "شیر خوار", "نوزاد", "ارزیابی">
149
+ misuse = <"Completar el score parcialmente y no sumar los 5 valores para dar el total.">
150
+ copyright = <"© openEHR Foundation">
151
+ >
152
+ >
153
+ lifecycle_state = <"AuthorDraft">
154
+ other_contributors = <"Anneke Goossen, Netherlands", "Pieter Hummel, Netherlands", "Ian McNicoll, Ocean Informatics, Scotland", "Sebastian Garde, Ocean Informatics, Germany", "Heather Leslie, Ocean Informatics, Australia", "Paul Donaldson, Queensland Health, Australia", "Anne Harbison, Australia", "Andrew James, University of Toronto, Canada", "Omer Hotomaroglu, Turkey">
155
+ other_details = <
156
+ ["MD5-CAM-1.0.1"] = <"E41676AA4DF093268F7C4BADBAE6FBC9">
157
+ ["references"] = <"Apgar V. A proposal of a New Method of Evaluation of the Newborn Infant. Curr Res Anesth Analg. 1953 Jul-Aug;32(4):260-7.
158
+
159
+ Apgar V, Holaday DA, James LS, Weisbrod IM, and Berrien C. Evaluation of the newborn infant; second report. J Am Med Assoc. 1958 Dec 13;168(15):1985-8.
160
+
161
+ Apgar V. The newborn (Apgar) scoring system. Pediatr Clin North Am. 1966 Aug;13(3):645-50.
162
+
163
+ Whaley LF, Wong DL (1979). Nursing Care of Infants and Children. St. Louis, Toronto, London, The C.V. Mosby Company.
164
+
165
+ http://en.wikipedia.org/wiki/Apgar_score">
166
+ >
167
+
168
+ definition
169
+ OBSERVATION[at0000] matches { -- Шкала Апгар
170
+ data matches {
171
+ HISTORY[at0002] matches { -- *history(en)
172
+ events cardinality matches {1..*; unordered} matches {
173
+ POINT_EVENT[at0003] occurrences matches {0..1} matches { -- 1 минута
174
+ offset matches {
175
+ DV_DURATION matches {
176
+ value matches {|PT1M|}
177
+ }
178
+ }
179
+ data matches {
180
+ ITEM_LIST[at0001] matches { -- *structure(en)
181
+ items cardinality matches {1..6; ordered} matches {
182
+ ELEMENT[at0009] occurrences matches {0..1} matches { -- Дыхание
183
+ value matches {
184
+ 0|[local::at0010], -- Отсутствует
185
+ 1|[local::at0011], -- Слабое или нерегулярное
186
+ 2|[local::at0012] -- Нормальное.
187
+ }
188
+ }
189
+ ELEMENT[at0005] occurrences matches {0..1} matches { -- Сердцебиение
190
+ value matches {
191
+ 0|[local::at0006], -- Отсутствует
192
+ 1|[local::at0007], -- <100 ударов в минуту
193
+ 2|[local::at0008] -- 100 ударов в минуту
194
+ }
195
+ }
196
+ ELEMENT[at0013] occurrences matches {0..1} matches { -- Мышечный тонус
197
+ value matches {
198
+ 0|[local::at0014], -- Вялый
199
+ 1|[local::at0015], -- Тонус ослаблен
200
+ 2|[local::at0016] -- Нормальный тонус
201
+ }
202
+ }
203
+ ELEMENT[at0017] occurrences matches {0..1} matches { -- Рефлексы на раздражение
204
+ value matches {
205
+ 0|[local::at0018], -- Нет реакции
206
+ 1|[local::at0019], -- Реакция ослаблена
207
+ 2|[local::at0020] -- Нормальная реакция
208
+ }
209
+ }
210
+ ELEMENT[at0021] occurrences matches {0..1} matches { -- Цвет кожи
211
+ value matches {
212
+ 0|[local::at0022], -- Общий цианоз
213
+ 1|[local::at0023], -- Акрозианоз, цианоз конечностей
214
+ 2|[local::at0024] -- Цианоза нет
215
+ }
216
+ }
217
+ ELEMENT[at0025] occurrences matches {0..1} matches { -- Общая оценка
218
+ value matches {
219
+ DV_COUNT matches {
220
+ magnitude matches {|0..10|}
221
+ }
222
+ }
223
+ }
224
+ }
225
+ }
226
+ }
227
+ }
228
+ POINT_EVENT[at0026] occurrences matches {0..1} matches { -- 2 минута
229
+ offset matches {
230
+ DV_DURATION matches {
231
+ value matches {|PT2M|}
232
+ }
233
+ }
234
+ data matches {
235
+ use_node ITEM_LIST /data[at0002]/events[at0003]/data[at0001] -- /data[*history(en)]/events[1 минута]/data[*structure(en)]
236
+ }
237
+ }
238
+ POINT_EVENT[at0027] occurrences matches {0..1} matches { -- 3 минута
239
+ offset matches {
240
+ DV_DURATION matches {
241
+ value matches {|PT3M|}
242
+ }
243
+ }
244
+ data matches {
245
+ use_node ITEM_LIST /data[at0002]/events[at0003]/data[at0001] -- /data[*history(en)]/events[1 минута]/data[*structure(en)]
246
+ }
247
+ }
248
+ POINT_EVENT[at0028] occurrences matches {0..1} matches { -- 5 минута
249
+ offset matches {
250
+ DV_DURATION matches {
251
+ value matches {|PT5M|}
252
+ }
253
+ }
254
+ data matches {
255
+ use_node ITEM_LIST /data[at0002]/events[at0003]/data[at0001] -- /data[*history(en)]/events[1 минута]/data[*structure(en)]
256
+ }
257
+ }
258
+ POINT_EVENT[at0031] occurrences matches {0..1} matches { -- 10 минута
259
+ offset matches {
260
+ DV_DURATION matches {
261
+ value matches {|PT10M|}
262
+ }
263
+ }
264
+ data matches {
265
+ use_node ITEM_LIST /data[at0002]/events[at0003]/data[at0001] -- /data[*history(en)]/events[1 минута]/data[*structure(en)]
266
+ }
267
+ }
268
+ EVENT[at0037] occurrences matches {0..*} matches { -- Любое время
269
+ data matches {
270
+ use_node ITEM_LIST /data[at0002]/events[at0003]/data[at0001] -- /data[*history(en)]/events[1 минута]/data[*structure(en)]
271
+ }
272
+ }
273
+ }
274
+ }
275
+ }
276
+ protocol matches {
277
+ ITEM_LIST[at0029] matches { -- *List(en)
278
+ items cardinality matches {0..*; unordered} matches {
279
+ ELEMENT[at0030] occurrences matches {0..1} matches { -- Примечания по измерению
280
+ value matches {
281
+ DV_TEXT matches {*}
282
+ }
283
+ }
284
+ }
285
+ }
286
+ }
287
+ }
288
+
289
+
290
+ ontology
291
+ term_definitions = <
292
+ ["nl"] = <
293
+ items = <
294
+ ["at0000"] = <
295
+ text = <"Apgar score">
296
+ description = <"Score die bereikt wordt door beoordeling van ademhalingsinspanning, hartslag, reflexen, spiertonus en kleur.">
297
+ >
298
+ ["at0001"] = <
299
+ text = <"*structure(en)">
300
+ description = <"*@ internal @(en)">
301
+ >
302
+ ["at0002"] = <
303
+ text = <"*history(en)">
304
+ description = <"*@ internal @(en)">
305
+ >
306
+ ["at0003"] = <
307
+ text = <"1 minuut">
308
+ description = <"Apgar score 1 minuut na de geboorte.">
309
+ >
310
+ ["at0005"] = <
311
+ text = <"Hartslag">
312
+ description = <"Opnemen van de hartslag van het kind.">
313
+ >
314
+ ["at0006"] = <
315
+ text = <"Afwezig">
316
+ description = <"Er is geen hartslag te zien, voelen of horen.">
317
+ >
318
+ ["at0007"] = <
319
+ text = <"<100 slagen per minuut">
320
+ description = <"Hartfrequentie minder dan 100 slagen per minuut.">
321
+ >
322
+ ["at0008"] = <
323
+ text = <"≥100 slagen per minuut">
324
+ description = <"Hartslag hoger of gelijk aan 100 slagen per minuut.">
325
+ >
326
+ ["at0009"] = <
327
+ text = <"Ademhalingsinspanning">
328
+ description = <"Observatie van de ademhalingsinspanning van het kind.">
329
+ >
330
+ ["at0010"] = <
331
+ text = <"Afwezig">
332
+ description = <"Geen ademhalingsinspanning.">
333
+ >
334
+ ["at0011"] = <
335
+ text = <"Matig of onregelmatig">
336
+ description = <"Enige ademhalingsinspanning, beweging van de borst.">
337
+ >
338
+ ["at0012"] = <
339
+ text = <"Normaal">
340
+ description = <"Normale ademhaling of huilend.">
341
+ >
342
+ ["at0013"] = <
343
+ text = <"Spiertonus">
344
+ description = <"Observatie van de spiertonus van het kind.">
345
+ >
346
+ ["at0014"] = <
347
+ text = <"Slap">
348
+ description = <"Geen spontane bewegingen.">
349
+ >
350
+ ["at0015"] = <
351
+ text = <"Verminderde tonus">
352
+ description = <"Enige flexie van de ledematen.">
353
+ >
354
+ ["at0016"] = <
355
+ text = <"Normale tonus">
356
+ description = <"Normale, krachtige bewegingen.">
357
+ >
358
+ ["at0017"] = <
359
+ text = <"Reactie op prikkels">
360
+ description = <"Observatie van de reactie van het kind op een irritante prikkeling, bijvoorbeeld het uitzuigen van de keel en neus met een zachte rubberen katheter.">
361
+ >
362
+ ["at0018"] = <
363
+ text = <"Geen reactie">
364
+ description = <"Geen reactie op prikkeling.">
365
+ >
366
+ ["at0019"] = <
367
+ text = <"Verminderde reactie">
368
+ description = <"Grimas of zwak huilen bij prikkeling.">
369
+ >
370
+ ["at0020"] = <
371
+ text = <"Normale reactie">
372
+ description = <"Grimas en niezen, hoesten of terugtrekken bij prikkeling.">
373
+ >
374
+ ["at0021"] = <
375
+ text = <"Huidskleur">
376
+ description = <"Observatie van de huidskleur van het kind.">
377
+ >
378
+ ["at0022"] = <
379
+ text = <"Helemaal blauw">
380
+ description = <"Lichaam en extremiteiten zijn blauw.">
381
+ >
382
+ ["at0023"] = <
383
+ text = <"Lichaam is roze, extremiteiten blauw">
384
+ description = <"Het lichaam van het kind is roze, de extremiteiten zijn blauw.">
385
+ >
386
+ ["at0024"] = <
387
+ text = <"Helemaal roze">
388
+ description = <"Lichaam en eztremiteiten zijn roze, geen cyanose.">
389
+ >
390
+ ["at0025"] = <
391
+ text = <"Totaal">
392
+ description = <"De som van de 5 afzonderlijke scores van iedere observatie.">
393
+ >
394
+ ["at0026"] = <
395
+ text = <"2 minuten">
396
+ description = <"Apgar score 2 minuten na de geboorte.">
397
+ >
398
+ ["at0027"] = <
399
+ text = <"3 minuten">
400
+ description = <"Apgar score 3 minuten na de geboorte.">
401
+ >
402
+ ["at0028"] = <
403
+ text = <"5 minuten">
404
+ description = <"Apgar score 5 minuten na de geboorte.">
405
+ >
406
+ ["at0029"] = <
407
+ text = <"*List(en)">
408
+ description = <"*@ internal @(en)">
409
+ >
410
+ ["at0030"] = <
411
+ text = <"Opmerkingen over de meting">
412
+ description = <"Opmerkingen over de meting van de Apgar score.">
413
+ >
414
+ ["at0031"] = <
415
+ text = <"10 minuten">
416
+ description = <"Apgar score 10 minuten na de geboorte.">
417
+ >
418
+ ["at0037"] = <
419
+ text = <"Any event">
420
+ description = <"Apgar score op elk toe te voegen tijdstip, indien nodig">
421
+ >
422
+ >
423
+ >
424
+ ["en"] = <
425
+ items = <
426
+ ["at0000"] = <
427
+ text = <"Apgar score">
428
+ description = <"Clinical score derived from assessment of respiratory effort, heart rate, reflex irritability, muscle tone and skin colour.">
429
+ >
430
+ ["at0001"] = <
431
+ text = <"structure">
432
+ description = <"@ internal @">
433
+ >
434
+ ["at0002"] = <
435
+ text = <"history">
436
+ description = <"@ internal @">
437
+ >
438
+ ["at0003"] = <
439
+ text = <"1 minute">
440
+ description = <"Apgar score 1 minute after birth.">
441
+ >
442
+ ["at0005"] = <
443
+ text = <"Heart Rate">
444
+ description = <"Recording of the infant's heart rate.">
445
+ >
446
+ ["at0006"] = <
447
+ text = <"Absent">
448
+ description = <"No heart beat is seen, felt or heard.">
449
+ >
450
+ ["at0007"] = <
451
+ text = <"<100 beats per minute">
452
+ description = <"Heart rate less than 100 beats per minute.">
453
+ >
454
+ ["at0008"] = <
455
+ text = <"≥100 beats per minute">
456
+ description = <"Heart rate greater than or equal to 100 beats per minute.">
457
+ >
458
+ ["at0009"] = <
459
+ text = <"Respiratory effort">
460
+ description = <"Observation of the infant's respiratory effort.">
461
+ >
462
+ ["at0010"] = <
463
+ text = <"Absent">
464
+ description = <"No effort to breath.">
465
+ >
466
+ ["at0011"] = <
467
+ text = <"Weak or irregular">
468
+ description = <"Some effort to breath, moving chest.">
469
+ >
470
+ ["at0012"] = <
471
+ text = <"Normal">
472
+ description = <"Breathing normally or crying.">
473
+ >
474
+ ["at0013"] = <
475
+ text = <"Muscle tone">
476
+ description = <"Observation of the infant's muscle tone.">
477
+ >
478
+ ["at0014"] = <
479
+ text = <"Limp or flaccid">
480
+ description = <"No spontaneous movement.">
481
+ >
482
+ ["at0015"] = <
483
+ text = <"Reduced tone">
484
+ description = <"Some flexion of extremities.">
485
+ >
486
+ ["at0016"] = <
487
+ text = <"Normal tone">
488
+ description = <"Normal, vigorous movements.">
489
+ >
490
+ ["at0017"] = <
491
+ text = <"Reflex irritability">
492
+ description = <"Observation of the response of the infant to an irritant stimulation, for example, suctioning the oropharynx and nares with a soft rubber catheter.">
493
+ >
494
+ ["at0018"] = <
495
+ text = <"No response">
496
+ description = <"No response to stimulation.">
497
+ >
498
+ ["at0019"] = <
499
+ text = <"Reduced response">
500
+ description = <"Grimace or feeble cry when stimulated.">
501
+ >
502
+ ["at0020"] = <
503
+ text = <"Normal response">
504
+ description = <"Grimace, sneeze, cough or pulls away when stimulated.">
505
+ >
506
+ ["at0021"] = <
507
+ text = <"Skin colour">
508
+ description = <"Observation of the skin colour of the infant.">
509
+ >
510
+ ["at0022"] = <
511
+ text = <"Completely blue">
512
+ description = <"Body and extremities are blue.">
513
+ >
514
+ ["at0023"] = <
515
+ text = <"Body pink; extremities blue">
516
+ description = <"Body is pink; extremities are blue.">
517
+ >
518
+ ["at0024"] = <
519
+ text = <"Completely pink">
520
+ description = <"Body and extremities are pink; no cyanosis.">
521
+ >
522
+ ["at0025"] = <
523
+ text = <"Total">
524
+ description = <"The sum of the 5 ordinal scores for each component parameter.">
525
+ >
526
+ ["at0026"] = <
527
+ text = <"2 minute">
528
+ description = <"Apgar score 2 minutes after birth.">
529
+ >
530
+ ["at0027"] = <
531
+ text = <"3 minute">
532
+ description = <"Apgar score 3 minutes after birth.">
533
+ >
534
+ ["at0028"] = <
535
+ text = <"5 minute">
536
+ description = <"Apgar score 5 minutes after birth.">
537
+ >
538
+ ["at0029"] = <
539
+ text = <"List">
540
+ description = <"@ internal @">
541
+ >
542
+ ["at0030"] = <
543
+ text = <"Notes on measurement">
544
+ description = <"Notes on measurement of the Apgar score.">
545
+ >
546
+ ["at0031"] = <
547
+ text = <"10 minute">
548
+ description = <"Apgar score 10 minutes after birth.">
549
+ >
550
+ ["at0037"] = <
551
+ text = <"Any event">
552
+ description = <"Apgar score at any additional time, as required.">
553
+ >
554
+ >
555
+ >
556
+ ["de"] = <
557
+ items = <
558
+ ["at0000"] = <
559
+ text = <"Apgar-Score">
560
+ description = <"Klinischer Score, abgeleitet von der Beurteilung des Atemantriebs, Herzfrequenz, Reflexauslösbarkeit, Muskeltonus und Hautfarbe.">
561
+ >
562
+ ["at0001"] = <
563
+ text = <"Structure">
564
+ description = <"@ internal @">
565
+ >
566
+ ["at0002"] = <
567
+ text = <"History">
568
+ description = <"@ internal @">
569
+ >
570
+ ["at0003"] = <
571
+ text = <"1 Minute">
572
+ description = <"Apgar-Score 1 Minute nach Geburt.">
573
+ >
574
+ ["at0005"] = <
575
+ text = <"Herzfrequenz">
576
+ description = <"Beurteilung der Herzfrequenz des Neubegorenen.">
577
+ >
578
+ ["at0006"] = <
579
+ text = <"Kein Herzschlag">
580
+ description = <"Kein Herzschlag gesehen, gefühlt oder gehört.">
581
+ >
582
+ ["at0007"] = <
583
+ text = <"<100 Schläge pro Minute">
584
+ description = <"Herzfrequenz von weniger als 100 Schlägen pro Minute.">
585
+ >
586
+ ["at0008"] = <
587
+ text = <"≥100 Schläge pro Minute">
588
+ description = <"Herzfrequenz von mehr als oder genau 100 Schlägen pro Minute.">
589
+ >
590
+ ["at0009"] = <
591
+ text = <"Atemantrieb">
592
+ description = <"Beurteilung des Atemantriebs des Neugeborenen.">
593
+ >
594
+ ["at0010"] = <
595
+ text = <"Kein Bestreben">
596
+ description = <"Kein Bestreben zu atmen.">
597
+ >
598
+ ["at0011"] = <
599
+ text = <"Schwaches oder unregelmäßiges Bestreben">
600
+ description = <"Etwas bestrebt zu atmen, Brustkorb bewegt sich.">
601
+ >
602
+ ["at0012"] = <
603
+ text = <"Normal">
604
+ description = <"Normale Atmung oder Schreien.">
605
+ >
606
+ ["at0013"] = <
607
+ text = <"Muskeltonus">
608
+ description = <"Beobachtung des Musketonus des Neugeborenen.">
609
+ >
610
+ ["at0014"] = <
611
+ text = <"Schlaff">
612
+ description = <"Keine spontane Bewegung.">
613
+ >
614
+ ["at0015"] = <
615
+ text = <"Reduzierter Tonus">
616
+ description = <"Geringe Flexion der Extremitäten.">
617
+ >
618
+ ["at0016"] = <
619
+ text = <"Normaler Tonus">
620
+ description = <"Normale, kraftvolle Bewegung der Extremitäten.">
621
+ >
622
+ ["at0017"] = <
623
+ text = <"Reflexauslösbarkeit">
624
+ description = <"Beobachtung der Antwort des Neugeborens auf eine Reizstimulation, z.B. Absaugen des Oropharynxs und der Nasenlöcher mit einem weichem Gummikatheter.">
625
+ >
626
+ ["at0018"] = <
627
+ text = <"Keine Reaktion">
628
+ description = <"Keine Reaktion auf die Stimulation.">
629
+ >
630
+ ["at0019"] = <
631
+ text = <"Reduzierte Reaktion">
632
+ description = <"Grimassieren oder schwaches Schreien als Reaktion auf die Stimulation.">
633
+ >
634
+ ["at0020"] = <
635
+ text = <"Normale Reaktion">
636
+ description = <"Grimassieren, Niesen, Husten oder Wegziehen als Reaktion auf die Stimulation.">
637
+ >
638
+ ["at0021"] = <
639
+ text = <"Hautfarbe">
640
+ description = <"Beobachtung der Hautfarbe des Neugeborenen.">
641
+ >
642
+ ["at0022"] = <
643
+ text = <"Komplett blau">
644
+ description = <"Körper und Extremitäten sind blau.">
645
+ >
646
+ ["at0023"] = <
647
+ text = <"Akrozyanotisch">
648
+ description = <"Stamm ist rosig, Extremitäten sind blau.">
649
+ >
650
+ ["at0024"] = <
651
+ text = <"Komplett rosig">
652
+ description = <"Stamm und Extremitäten sind rosig; keine Zyanose.">
653
+ >
654
+ ["at0025"] = <
655
+ text = <"Gesamtwert">
656
+ description = <"Die Summe der Zahlenwerte aller 5 Komponenten.">
657
+ >
658
+ ["at0026"] = <
659
+ text = <"2 Minuten">
660
+ description = <"Apgar-Score 2 Minuten nach der Geburt.">
661
+ >
662
+ ["at0027"] = <
663
+ text = <"3 Minuten">
664
+ description = <"Apgar-Score 3 Minuten nach der Geburt.">
665
+ >
666
+ ["at0028"] = <
667
+ text = <"5 Minuten">
668
+ description = <"Apgar-Score 5 Minuten nach der Geburt.">
669
+ >
670
+ ["at0029"] = <
671
+ text = <"List">
672
+ description = <"@ internal @">
673
+ >
674
+ ["at0030"] = <
675
+ text = <"Anmerkungen zur Messung">
676
+ description = <"Anmerkungen zur Messung des Apgar-Scores.">
677
+ >
678
+ ["at0031"] = <
679
+ text = <"10 Minuten">
680
+ description = <"Apgar-Score 10 Minuten nach der Geburt">
681
+ >
682
+ ["at0037"] = <
683
+ text = <"Beliebiges Ereignis">
684
+ description = <"Apgar-Score zu beliebigen Zeitpunkten, je nach Bedarf.">
685
+ >
686
+ >
687
+ >
688
+ ["es-cl"] = <
689
+ items = <
690
+ ["at0000"] = <
691
+ text = <"*Apgar score(en)">
692
+ description = <"*Clinical score derived from assessment of respiratory effort, heart rate, reflex irritability, muscle tone and skin colour.(en)">
693
+ >
694
+ ["at0001"] = <
695
+ text = <"Estructura ">
696
+ description = <"*@ internal @">
697
+ >
698
+ ["at0002"] = <
699
+ text = <"Historia">
700
+ description = <"*@ internal @">
701
+ >
702
+ ["at0003"] = <
703
+ text = <"*1 minute(en)">
704
+ description = <"*Apgar score 1 minute after birth(en)">
705
+ >
706
+ ["at0005"] = <
707
+ text = <"Frecuencia cardíaca">
708
+ description = <"Valoración de la función cardíaca en el recién nacido.">
709
+ >
710
+ ["at0006"] = <
711
+ text = <"Sin latido cardíaco">
712
+ description = <"No presenta latidos cardíacos (palpación en la base del cordón umbilical).">
713
+ >
714
+ ["at0007"] = <
715
+ text = <"Menos de 100 latidos por minuto">
716
+ description = <"Frecuencia cardíaca menor a 100 latidos por minuto.">
717
+ >
718
+ ["at0008"] = <
719
+ text = <"Mayor o igual a 100 latidos por minutos">
720
+ description = <"Frecuencia cardíaca mayor o igual a 100 latidos por minuto.">
721
+ >
722
+ ["at0009"] = <
723
+ text = <"Respiración">
724
+ description = <"Valoración del esfuerzo respiratorio del neonato.">
725
+ >
726
+ ["at0010"] = <
727
+ text = <"Sin esfuerzo">
728
+ description = <"Sin esfuerzo respiratorio.">
729
+ >
730
+ ["at0011"] = <
731
+ text = <"Esfuerzo moderado">
732
+ description = <"Esfuerzo respiratorio debil e irregular.">
733
+ >
734
+ ["at0012"] = <
735
+ text = <"Llorando">
736
+ description = <"Llorando o respirando normalmente.">
737
+ >
738
+ ["at0013"] = <
739
+ text = <"*Muscle tone(en)">
740
+ description = <"*Observation of the infant's muscle tone(en)">
741
+ >
742
+ ["at0014"] = <
743
+ text = <"Flacido">
744
+ description = <"Flacido y sin movimientos espontáneos.">
745
+ >
746
+ ["at0015"] = <
747
+ text = <"*Reduced tone(en)">
748
+ description = <"*Some flexion of extremities(en)">
749
+ >
750
+ ["at0016"] = <
751
+ text = <"*Normal tone(en)">
752
+ description = <"*Normal, vigorous movements(en)">
753
+ >
754
+ ["at0017"] = <
755
+ text = <"*Reflex irritability(en)">
756
+ description = <"*Observation of the response of the infant to an irritant stimulation, for example, suctioning the oropharynx and nares with a soft rubber catheter.(en)">
757
+ >
758
+ ["at0018"] = <
759
+ text = <"Ninguna respuesta a la aspiración de la vía aérea ">
760
+ description = <"Ninguna mueca o respuesta a la aspiración de la vía aérea.">
761
+ >
762
+ ["at0019"] = <
763
+ text = <"Mueca durante aspiración de la vía aérea">
764
+ description = <"Sólo mueca como reacción a la aspiración de la vía aérea.">
765
+ >
766
+ ["at0020"] = <
767
+ text = <"Mueca y tos/estornudo durante la aspiración de la vía aérea">
768
+ description = <"Mueca y tos, estornudo o gag como respuesta a la aspiración de la vía aérea.">
769
+ >
770
+ ["at0021"] = <
771
+ text = <"*Skin colour(en)">
772
+ description = <"*Observation of the skin colour of the infant(en)">
773
+ >
774
+ ["at0022"] = <
775
+ text = <"*Completely blue(en)">
776
+ description = <"*Body and extremities are blue(en)">
777
+ >
778
+ ["at0023"] = <
779
+ text = <"*Body pink; extremities blue(en)">
780
+ description = <"*Body is pink; extremities are blue(en)">
781
+ >
782
+ ["at0024"] = <
783
+ text = <"*Completely pink(en)">
784
+ description = <"*Body and extremities are pink; no cyanosis(en)">
785
+ >
786
+ ["at0025"] = <
787
+ text = <"Total">
788
+ description = <"El total es la suma de los puntajes de cada parámetro.">
789
+ >
790
+ ["at0026"] = <
791
+ text = <"*2 minute(en)">
792
+ description = <"*Apgar score 2 minutes after birth(en)">
793
+ >
794
+ ["at0027"] = <
795
+ text = <"*3 minute(en)">
796
+ description = <"*Apgar score 3 minutes after birth(en)">
797
+ >
798
+ ["at0028"] = <
799
+ text = <"*5 minute(en)">
800
+ description = <"*Apgar score 5 minutes after birth(en)">
801
+ >
802
+ ["at0029"] = <
803
+ text = <"Lista">
804
+ description = <"*@ internal @">
805
+ >
806
+ ["at0030"] = <
807
+ text = <"Notas de medición ">
808
+ description = <"Notas sobre la medida del Apgar.">
809
+ >
810
+ ["at0031"] = <
811
+ text = <"*10 minute(en)">
812
+ description = <"*Apgar score 10 minutes after birth(en)">
813
+ >
814
+ ["at0037"] = <
815
+ text = <"*Any event(en)">
816
+ description = <"*Apgar score at any additional time, as required.(en)">
817
+ >
818
+ >
819
+ >
820
+ ["ru"] = <
821
+ items = <
822
+ ["at0000"] = <
823
+ text = <"Шкала Апгар">
824
+ description = <"Клиническая оценка полученная из оценки дыхания, частоты сердечных сокращений, рефлекторной возбудимости, мышечного тонуса и цвета кожи.">
825
+ >
826
+ ["at0001"] = <
827
+ text = <"*structure(en)">
828
+ description = <"*@ internal @(en)">
829
+ >
830
+ ["at0002"] = <
831
+ text = <"*history(en)">
832
+ description = <"*@ internal @(en)">
833
+ >
834
+ ["at0003"] = <
835
+ text = <"1 минута">
836
+ description = <"Оценка по Апгар в 1 минуту после рождения.">
837
+ >
838
+ ["at0005"] = <
839
+ text = <"Сердцебиение">
840
+ description = <"Запись о ЧСС младенца.">
841
+ >
842
+ ["at0006"] = <
843
+ text = <"Отсутствует">
844
+ description = <"Нет дыхательных движений.">
845
+ >
846
+ ["at0007"] = <
847
+ text = <"<100 ударов в минуту">
848
+ description = <"ЧСС меньше 100 ударов в минуту.">
849
+ >
850
+ ["at0008"] = <
851
+ text = <"≥100 ударов в минуту">
852
+ description = <"ЧСС более 100 ударов в минуту.">
853
+ >
854
+ ["at0009"] = <
855
+ text = <"Дыхание">
856
+ description = <"Наблюдается за дыханием.">
857
+ >
858
+ ["at0010"] = <
859
+ text = <"Отсутствует">
860
+ description = <"Сердцебиение не видно, не слышно и не ощутимо.">
861
+ >
862
+ ["at0011"] = <
863
+ text = <"Слабое или нерегулярное">
864
+ description = <"Некоторые дыхательные движения, движения грудной клетки.">
865
+ >
866
+ ["at0012"] = <
867
+ text = <"Нормальное.">
868
+ description = <"Дыхание нормальное или крик.">
869
+ >
870
+ ["at0013"] = <
871
+ text = <"Мышечный тонус">
872
+ description = <"Оценка мышечного тонуса младенца.">
873
+ >
874
+ ["at0014"] = <
875
+ text = <"Вялый">
876
+ description = <"Нет спонтанных движений.">
877
+ >
878
+ ["at0015"] = <
879
+ text = <"Тонус ослаблен">
880
+ description = <"Слабое сгибание конечностей.">
881
+ >
882
+ ["at0016"] = <
883
+ text = <"Нормальный тонус">
884
+ description = <"Нормальные, энергичные движения.">
885
+ >
886
+ ["at0017"] = <
887
+ text = <"Рефлексы на раздражение">
888
+ description = <"Наблюдение за реакцией ребенка на раздражающее стимуляции, например, очищения ротоглотки и носовых отверстий мягким резиновым катетером.">
889
+ >
890
+ ["at0018"] = <
891
+ text = <"Нет реакции">
892
+ description = <"Нет реакци на стимуляцию.">
893
+ >
894
+ ["at0019"] = <
895
+ text = <"Реакция ослаблена">
896
+ description = <"Гримаса или слабый крик при стимуляции.">
897
+ >
898
+ ["at0020"] = <
899
+ text = <"Нормальная реакция">
900
+ description = <"Гримаса, чихание, кашель или отстранение при стимуляции.">
901
+ >
902
+ ["at0021"] = <
903
+ text = <"Цвет кожи">
904
+ description = <"Оценка цвета кожи младенца.">
905
+ >
906
+ ["at0022"] = <
907
+ text = <"Общий цианоз">
908
+ description = <"Цианоз туловища и конечностей.">
909
+ >
910
+ ["at0023"] = <
911
+ text = <"Акрозианоз, цианоз конечностей">
912
+ description = <"Туловище розовое, цианоз конечностей.">
913
+ >
914
+ ["at0024"] = <
915
+ text = <"Цианоза нет">
916
+ description = <"Туловище и конечности розовые. Цианоза нет">
917
+ >
918
+ ["at0025"] = <
919
+ text = <"Общая оценка">
920
+ description = <"Сумма баллов по 5 параметрам.">
921
+ >
922
+ ["at0026"] = <
923
+ text = <"2 минута">
924
+ description = <"Оценка по Апгар во 2 минуту после рождения.">
925
+ >
926
+ ["at0027"] = <
927
+ text = <"3 минута">
928
+ description = <"Оценка по Апгар в 3 минуту после рождения.">
929
+ >
930
+ ["at0028"] = <
931
+ text = <"5 минута">
932
+ description = <"Оценка по Апгар на 5 минуту после рождения.">
933
+ >
934
+ ["at0029"] = <
935
+ text = <"*List(en)">
936
+ description = <"*@ internal @(en)">
937
+ >
938
+ ["at0030"] = <
939
+ text = <"Примечания по измерению">
940
+ description = <"Примечания по измерению по шкале Апгар.">
941
+ >
942
+ ["at0031"] = <
943
+ text = <"10 минута">
944
+ description = <"Оценка по Апгар в 10 минуту после рождения.">
945
+ >
946
+ ["at0037"] = <
947
+ text = <"Любое время">
948
+ description = <"Оценка по Апгар в дополнительное время, если требуется.">
949
+ >
950
+ >
951
+ >
952
+ ["ar-sy"] = <
953
+ items = <
954
+ ["at0000"] = <
955
+ text = <"حرز أبغار">
956
+ description = <"الحرز السريري المشتق من تقييم المجهود التنفسي, معدل القلب, التوتر المنعكس, توتر العضلة و لون الجلد">
957
+ >
958
+ ["at0001"] = <
959
+ text = <"*structure(en)">
960
+ description = <"*@ internal @(en)">
961
+ >
962
+ ["at0002"] = <
963
+ text = <"*history(en)">
964
+ description = <"*@ internal @(en)">
965
+ >
966
+ ["at0003"] = <
967
+ text = <"دقيقة واحدة">
968
+ description = <"حرز أبغار بعد دقيقة واحدة من الولادة/الوضع">
969
+ >
970
+ ["at0005"] = <
971
+ text = <"معدل القلب">
972
+ description = <"تسجيل معدل قلب الرضيع">
973
+ >
974
+ ["at0006"] = <
975
+ text = <"غائب">
976
+ description = <"لا يمكن سماع, رؤية أو الشعور بضربات القلب">
977
+ >
978
+ ["at0007"] = <
979
+ text = <"أقل من 100 ضربة في الدقيقة">
980
+ description = <"معدل القلب أقل من 100 ضربة في الدقيقة">
981
+ >
982
+ ["at0008"] = <
983
+ text = <"أكثر من أو يساوي 100 ضربة في الدقيقة">
984
+ description = <"معدل القلب أكبر من أو يساوي 100 ضربة في الدقيقة">
985
+ >
986
+ ["at0009"] = <
987
+ text = <"المجهود التنفسي">
988
+ description = <"ملاحظة المجهود التنفسي لدى الرضيع">
989
+ >
990
+ ["at0010"] = <
991
+ text = <"غائب">
992
+ description = <"لا يوجد بذل مجهود للتنفس">
993
+ >
994
+ ["at0011"] = <
995
+ text = <"ضعيف أو غير منتظم">
996
+ description = <"يوجد بعض المجهود للتنفس, الصدر يتحرك">
997
+ >
998
+ ["at0012"] = <
999
+ text = <"طبيعي">
1000
+ description = <"يتنفس بشكل طبيعي أو يبكي">
1001
+ >
1002
+ ["at0013"] = <
1003
+ text = <"توتر العضلة">
1004
+ description = <"ملاحظة توتر عضلات الرضيع">
1005
+ >
1006
+ ["at0014"] = <
1007
+ text = <"مرتخٍ/أعرج">
1008
+ description = <"لا يوجد حركة تلقائية">
1009
+ >
1010
+ ["at0015"] = <
1011
+ text = <"توتر منخفض">
1012
+ description = <"يوجد بعض الثني للأطراف">
1013
+ >
1014
+ ["at0016"] = <
1015
+ text = <"توتر طبيعي">
1016
+ description = <"حركات طبيعية قوية">
1017
+ >
1018
+ ["at0017"] = <
1019
+ text = <"التوتر الانعكاسي">
1020
+ description = <"ملاحظة استجابة الرضيع لتحفيز مُهَيَّج, مثلا, مص محتويات البلعوم الفمي و فتحات الأنف باستخدام قثطار مطاطي ناعم.">
1021
+ >
1022
+ ["at0018"] = <
1023
+ text = <"لا توجد استجابة">
1024
+ description = <"لا يوجد استجابة للتحفيز">
1025
+ >
1026
+ ["at0019"] = <
1027
+ text = <"استجابة منخفضة">
1028
+ description = <"تكشيرة أو بكاء ضعيف عند التحفيز">
1029
+ >
1030
+ ["at0020"] = <
1031
+ text = <"استجابة طبيعية">
1032
+ description = <"تكشيرة, عُطاس, سعال, أو يتعبد عند تحفيزه">
1033
+ >
1034
+ ["at0021"] = <
1035
+ text = <"لون الجلد/البشرة">
1036
+ description = <"ملاحظة لون بشرة/جلد الرضيع">
1037
+ >
1038
+ ["at0022"] = <
1039
+ text = <"أزرق تماما">
1040
+ description = <"الجسم و الأطراف زرقاء اللون">
1041
+ >
1042
+ ["at0023"] = <
1043
+ text = <"الجسم متورد و الأطراف زرقاء">
1044
+ description = <"الجسم متورد و الأطراف زرقاء">
1045
+ >
1046
+ ["at0024"] = <
1047
+ text = <"متورد تماما">
1048
+ description = <"الجسم و الأطراف متوردة, لا يوجد ازرقاق">
1049
+ >
1050
+ ["at0025"] = <
1051
+ text = <"الإجمالي">
1052
+ description = <"مجموع الأحراز الخمسة المنفردة ">
1053
+ >
1054
+ ["at0026"] = <
1055
+ text = <"عند دقيقتين">
1056
+ description = <"حرز أبغار عند دقيقتين من الولادة/الوضع">
1057
+ >
1058
+ ["at0027"] = <
1059
+ text = <"عند ثلاث دقائق">
1060
+ description = <"حرز أبغار بعد ثلاث دقائق من الولادة/الوضع">
1061
+ >
1062
+ ["at0028"] = <
1063
+ text = <"بعد خمس دقائق">
1064
+ description = <"حرز أبغار بعد 5 دقائق من الولادة/الوضع">
1065
+ >
1066
+ ["at0029"] = <
1067
+ text = <"*List(en)">
1068
+ description = <"*@ internal @(en)">
1069
+ >
1070
+ ["at0030"] = <
1071
+ text = <"ملاحظات حول القياس">
1072
+ description = <"ملاحظات حول قياس حرز أبغار">
1073
+ >
1074
+ ["at0031"] = <
1075
+ text = <"بعد 10 دقائق">
1076
+ description = <"حرز أبغار بعد 10 دقائق من الولادة/الوضع">
1077
+ >
1078
+ ["at0037"] = <
1079
+ text = <"إحدى الوقائع">
1080
+ description = <"حرز أبغار عند أي وقت إضافي, حسب الحاجة">
1081
+ >
1082
+ >
1083
+ >
1084
+ ["fa"] = <
1085
+ items = <
1086
+ ["at0000"] = <
1087
+ text = <"نمره آپگار">
1088
+ description = <"نمره بالینی استخراج شده از ارزیابی تلاش تنفسی ، ضربان قلب ، رفلکس تحریک پذیری ، تون عضلانی و رنگ پوست">
1089
+ >
1090
+ ["at0001"] = <
1091
+ text = <"*structure(en)">
1092
+ description = <"*@ internal @(en)">
1093
+ >
1094
+ ["at0002"] = <
1095
+ text = <"*history(en)">
1096
+ description = <"*@ internal @(en)">
1097
+ >
1098
+ ["at0003"] = <
1099
+ text = <"دقیقه اول">
1100
+ description = <"نمره آپگار یک دقیقه بعد از تولد">
1101
+ >
1102
+ ["at0005"] = <
1103
+ text = <"ضربان قلب">
1104
+ description = <"ثبت ضربان قلب نوزاد">
1105
+ >
1106
+ ["at0006"] = <
1107
+ text = <"عدم وجود">
1108
+ description = <"ضربان قلبی مشاهده ، احساس یا شنیده نمی شود">
1109
+ >
1110
+ ["at0007"] = <
1111
+ text = <"ضربان کمتر از 100 در هر دقیقه">
1112
+ description = <"ضربان قلب کمتر از 100 ضربه در هر دقیقه است">
1113
+ >
1114
+ ["at0008"] = <
1115
+ text = <"ضربان بیشتر یا مساوی 100 در هر دقیقه">
1116
+ description = <"ضربان قلب بیشتریا برابر 100 ضربه در هر دقیقه است">
1117
+ >
1118
+ ["at0009"] = <
1119
+ text = <"تلاش تنفسی">
1120
+ description = <"مشاهده تلاش تنفسی نوزاد">
1121
+ >
1122
+ ["at0010"] = <
1123
+ text = <"غیر موجود">
1124
+ description = <"برای تنفس تلاش نمی کند">
1125
+ >
1126
+ ["at0011"] = <
1127
+ text = <"ضعیف یا نا منظم">
1128
+ description = <" برای تنفس تلاش می کند ، سینه حرکت می کند">
1129
+ >
1130
+ ["at0012"] = <
1131
+ text = <"ظبیعی">
1132
+ description = <"تنفس طبیعی یا گریه کردن">
1133
+ >
1134
+ ["at0013"] = <
1135
+ text = <"تون عضلانی">
1136
+ description = <"مشاهده تلون عضلانی نوزاد">
1137
+ >
1138
+ ["at0014"] = <
1139
+ text = <"مشاهده تلون عضلانی نوزاد">
1140
+ description = <"حرکات خودبخودی وجود ندارد">
1141
+ >
1142
+ ["at0015"] = <
1143
+ text = <"تون کاهش یافته">
1144
+ description = <"برخی رفلکسها یا خمیدگی ها وجود دارد">
1145
+ >
1146
+ ["at0016"] = <
1147
+ text = <"تون طبیعی">
1148
+ description = <"طبیعی ، حرکات نیرومند">
1149
+ >
1150
+ ["at0017"] = <
1151
+ text = <"رفلکس تحریک پذیری">
1152
+ description = <"مشاهده پاسخ نوزاد به تحریکات محرک به عنوان مثال مکش دهانی حلقی و سوراخ بینی با کاتتر لاستیکی نرم ">
1153
+ >
1154
+ ["at0018"] = <
1155
+ text = <"پاسخ نمی دهد">
1156
+ description = <"عدم پاسخ به تحریکات">
1157
+ >
1158
+ ["at0019"] = <
1159
+ text = <"کاهش پاسخ">
1160
+ description = <"گریه شکلکی یا ضعیف در زمان تحریک">
1161
+ >
1162
+ ["at0020"] = <
1163
+ text = <"پاسخ طبیعی">
1164
+ description = <"شکلک ، عطسه ف سرفه یا عقب کشیدن در زمان تحریک">
1165
+ >
1166
+ ["at0021"] = <
1167
+ text = <"رنگ پوست">
1168
+ description = <"مشاهده رنگ پوست نوزاد">
1169
+ >
1170
+ ["at0022"] = <
1171
+ text = <"کاملا آبی">
1172
+ description = <"دن و دستها و پاها آبی هستند">
1173
+ >
1174
+ ["at0023"] = <
1175
+ text = <"بدن صورتی ، دستها و پاها آبی">
1176
+ description = <"بدن صورتی ، دستها و پاها آبی هستند">
1177
+ >
1178
+ ["at0024"] = <
1179
+ text = <"کاملا صورتی">
1180
+ description = <"دن و دستها و پاها کاملا صورتی هستند هیچ سیانوزی وجود ندارد">
1181
+ >
1182
+ ["at0025"] = <
1183
+ text = <"مجموع">
1184
+ description = <"مجموع پنج نمره ترتیبی برای هر پارامتر جز ">
1185
+ >
1186
+ ["at0026"] = <
1187
+ text = <"دقیقه دو">
1188
+ description = <"نمره آپگار دودقیقه بعد از تولد">
1189
+ >
1190
+ ["at0027"] = <
1191
+ text = <"دقیقه سه">
1192
+ description = <"نمره آپگار سه دقیقه بعد از تولد">
1193
+ >
1194
+ ["at0028"] = <
1195
+ text = <"دقیقه پنج">
1196
+ description = <"نمره آپگار پنج دقیقه بعد از تولد">
1197
+ >
1198
+ ["at0029"] = <
1199
+ text = <"*List(en)">
1200
+ description = <"*@ internal @(en)">
1201
+ >
1202
+ ["at0030"] = <
1203
+ text = <"یادداشتهایی در مورد اندازه گیری">
1204
+ description = <"یادداشتهایی در مورد اندازه گیری نمره آپگار">
1205
+ >
1206
+ ["at0031"] = <
1207
+ text = <"دقیقه ده">
1208
+ description = <"نمره آپگار ده دقیقه بعد از تولد">
1209
+ >
1210
+ ["at0037"] = <
1211
+ text = <"هر رویداد">
1212
+ description = <"نمره آپگار در هر زمان ممکن و در صورت نیاز">
1213
+ >
1214
+ >
1215
+ >
1216
+ >