-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBotulin Medication.opt
1685 lines (1685 loc) · 146 KB
/
Botulin Medication.opt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:template xmlns:ns2="http://schemas.openehr.org/v1">
<ns2:language>
<ns2:terminology_id>
<ns2:value>ISO_639-1</ns2:value>
</ns2:terminology_id>
<ns2:code_string>en</ns2:code_string>
</ns2:language>
<ns2:description>
<ns2:original_author id="name">Sidharth R</ns2:original_author>
<ns2:original_author id="organisation">Medblocks</ns2:original_author>
<ns2:original_author id="email">tornadoalert@gmail.com</ns2:original_author>
<ns2:original_author id="date">2021-04-10</ns2:original_author>
<ns2:lifecycle_state>unmanaged</ns2:lifecycle_state>
<ns2:other_details id="licence"></ns2:other_details>
<ns2:other_details id="custodian_organisation"></ns2:other_details>
<ns2:other_details id="original_namespace"></ns2:other_details>
<ns2:other_details id="original_publisher"></ns2:other_details>
<ns2:other_details id="custodian_namespace"></ns2:other_details>
<ns2:other_details id="sem_ver">2.0.0</ns2:other_details>
<ns2:other_details id="MD5-CAM-1.0.1">c834d9b671e1c37db7a71b12bba23660</ns2:other_details>
<ns2:other_details id="PARENT:MD5-CAM-1.0.1">44D94C2952391723BB72523E4132FF1C</ns2:other_details>
<ns2:other_details id="build_uid"></ns2:other_details>
<ns2:other_details id="Generated By">Archetype Designer v1.20.0, user=tornadoalert@gmail.com@google, repositoryId=medblocks</ns2:other_details>
<ns2:details>
<ns2:language>
<ns2:terminology_id>
<ns2:value>ISO_639-1</ns2:value>
</ns2:terminology_id>
<ns2:code_string>en</ns2:code_string>
</ns2:language>
<ns2:purpose>Not Specified</ns2:purpose>
</ns2:details>
</ns2:description>
<ns2:uid>
<ns2:value>c774f99f-0793-4193-a2df-0d69673203fc</ns2:value>
</ns2:uid>
<ns2:template_id>
<ns2:value>Boutolin medication</ns2:value>
</ns2:template_id>
<ns2:concept>Boutolin medication</ns2:concept>
<ns2:definition>
<ns2:rm_type_name>COMPOSITION</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0000</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ns2:rm_attribute_name>category</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>DV_CODED_TEXT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id></ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE">
<ns2:rm_attribute_name>defining_code</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_CODE_PHRASE">
<ns2:rm_type_name>CODE_PHRASE</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id></ns2:node_id>
<ns2:terminology_id>
<ns2:value>openehr</ns2:value>
</ns2:terminology_id>
<ns2:code_list>433</ns2:code_list>
</ns2:children>
</ns2:attributes>
</ns2:children>
</ns2:attributes>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ns2:rm_attribute_name>context</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>EVENT_CONTEXT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id></ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE">
<ns2:rm_attribute_name>other_context</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>ITEM_TREE</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0001</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_MULTIPLE_ATTRIBUTE">
<ns2:rm_attribute_name>items</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:ARCHETYPE_SLOT">
<ns2:rm_type_name>CLUSTER</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>false</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>true</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
</ns2:occurrences>
<ns2:node_id>at0002</ns2:node_id>
<ns2:includes>
<ns2:string_expression>archetype_id/value matches {/.*/}</ns2:string_expression>
<ns2:expression xsi:type="ns2:EXPR_BINARY_OPERATOR">
<ns2:type>Boolean</ns2:type>
<ns2:operator>2007</ns2:operator>
<ns2:precedence_overridden>false</ns2:precedence_overridden>
<ns2:left_operand xsi:type="ns2:EXPR_LEAF">
<ns2:type>String</ns2:type>
<ns2:item xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">archetype_id/value</ns2:item>
<ns2:reference_type>attribute</ns2:reference_type>
</ns2:left_operand>
<ns2:right_operand xsi:type="ns2:EXPR_LEAF">
<ns2:type>String</ns2:type>
<ns2:item xsi:type="ns2:C_STRING">
<ns2:pattern>.*</ns2:pattern>
</ns2:item>
<ns2:reference_type>constraint</ns2:reference_type>
</ns2:right_operand>
</ns2:expression>
</ns2:includes>
</ns2:children>
<ns2:cardinality>
<ns2:is_ordered>false</ns2:is_ordered>
<ns2:is_unique>false</ns2:is_unique>
<ns2:interval>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>false</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>true</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
</ns2:interval>
</ns2:cardinality>
</ns2:attributes>
</ns2:children>
</ns2:attributes>
</ns2:children>
</ns2:attributes>
<ns2:attributes xsi:type="ns2:C_MULTIPLE_ATTRIBUTE" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ns2:rm_attribute_name>content</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_ARCHETYPE_ROOT">
<ns2:rm_type_name>INSTRUCTION</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0000</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_MULTIPLE_ATTRIBUTE">
<ns2:rm_attribute_name>activities</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>ACTIVITY</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>false</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>true</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
</ns2:occurrences>
<ns2:node_id>at0001</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE">
<ns2:rm_attribute_name>description</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>ITEM_TREE</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0002</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_MULTIPLE_ATTRIBUTE">
<ns2:rm_attribute_name>items</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>ELEMENT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0070</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE">
<ns2:rm_attribute_name>value</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>DV_TEXT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id></ns2:node_id>
</ns2:children>
</ns2:attributes>
</ns2:children>
<ns2:children xsi:type="ns2:ARCHETYPE_SLOT">
<ns2:rm_type_name>CLUSTER</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0143</ns2:node_id>
<ns2:includes>
<ns2:string_expression>archetype_id/value matches {/openEHR-EHR-CLUSTER\.medication(-[a-zA-Z0-9_]+)*\.v1/}</ns2:string_expression>
<ns2:expression xsi:type="ns2:EXPR_BINARY_OPERATOR">
<ns2:type>Boolean</ns2:type>
<ns2:operator>2007</ns2:operator>
<ns2:precedence_overridden>false</ns2:precedence_overridden>
<ns2:left_operand xsi:type="ns2:EXPR_LEAF">
<ns2:type>String</ns2:type>
<ns2:item xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">archetype_id/value</ns2:item>
<ns2:reference_type>attribute</ns2:reference_type>
</ns2:left_operand>
<ns2:right_operand xsi:type="ns2:EXPR_LEAF">
<ns2:type>String</ns2:type>
<ns2:item xsi:type="ns2:C_STRING">
<ns2:pattern>openEHR-EHR-CLUSTER\.medication(-[a-zA-Z0-9_]+)*\.v1</ns2:pattern>
</ns2:item>
<ns2:reference_type>constraint</ns2:reference_type>
</ns2:right_operand>
</ns2:expression>
</ns2:includes>
</ns2:children>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>ELEMENT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>false</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>true</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
</ns2:occurrences>
<ns2:node_id>at0091</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE">
<ns2:rm_attribute_name>value</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>DV_TEXT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id></ns2:node_id>
</ns2:children>
</ns2:attributes>
</ns2:children>
<ns2:children xsi:type="ns2:C_ARCHETYPE_ROOT">
<ns2:rm_type_name>CLUSTER</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0000</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_MULTIPLE_ATTRIBUTE">
<ns2:rm_attribute_name>items</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>ELEMENT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0001</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE">
<ns2:rm_attribute_name>value</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>DV_TEXT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id></ns2:node_id>
</ns2:children>
</ns2:attributes>
</ns2:children>
<ns2:children xsi:type="ns2:C_ARCHETYPE_ROOT">
<ns2:rm_type_name>CLUSTER</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0000</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_MULTIPLE_ATTRIBUTE">
<ns2:rm_attribute_name>items</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>ELEMENT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0002</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE">
<ns2:rm_attribute_name>value</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_DV_QUANTITY">
<ns2:rm_type_name>DV_QUANTITY</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id></ns2:node_id>
<ns2:property>
<ns2:terminology_id>
<ns2:value>openehr</ns2:value>
</ns2:terminology_id>
<ns2:code_string>507</ns2:code_string>
</ns2:property>
<ns2:list>
<ns2:units>1</ns2:units>
</ns2:list>
</ns2:children>
</ns2:attributes>
</ns2:children>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>ELEMENT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0003</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE">
<ns2:rm_attribute_name>value</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_DV_QUANTITY">
<ns2:rm_type_name>DV_QUANTITY</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id></ns2:node_id>
<ns2:property>
<ns2:terminology_id>
<ns2:value>openehr</ns2:value>
</ns2:terminology_id>
<ns2:code_string>507</ns2:code_string>
</ns2:property>
<ns2:list>
<ns2:units>1</ns2:units>
</ns2:list>
</ns2:children>
</ns2:attributes>
</ns2:children>
<ns2:cardinality>
<ns2:is_ordered>false</ns2:is_ordered>
<ns2:is_unique>false</ns2:is_unique>
<ns2:interval>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>false</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>true</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
</ns2:interval>
</ns2:cardinality>
</ns2:attributes>
<ns2:archetype_id>
<ns2:value>openEHR-EHR-CLUSTER.anatomical_location_precise.v0</ns2:value>
</ns2:archetype_id>
<ns2:term_definitions code="at0000">
<ns2:items id="text">Precise anatomical location</ns2:items>
<ns2:items id="description">Record details about precise anatomical location of a specimen or body part, including coordinates.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0001">
<ns2:items id="text">Position frame of reference</ns2:items>
<ns2:items id="description">Description of coordinate system and origin reference point used for localizing the object.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0002">
<ns2:items id="text">X offset</ns2:items>
<ns2:items id="description">Location of object (nominal center) relative to the Position Frame Reference. Distance can be given in SI units or pixels. of ({pixel}, UCUM, “Pixels”).</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0003">
<ns2:items id="text">Y offset</ns2:items>
<ns2:items id="description">Location of object (nominal center) relative to the Position Frame Reference. Distance can be given in SI units or pixels. of ({pixel}, UCUM, “Pixels”).</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0004">
<ns2:items id="text">Z offset</ns2:items>
<ns2:items id="description">Location of object (nominal center) relative to the Position Frame Reference. Distance can be given in SI units or pixels. of ({pixel}, UCUM, “Pixels”).</ns2:items>
</ns2:term_definitions>
</ns2:children>
<ns2:children xsi:type="ns2:ARCHETYPE_SLOT">
<ns2:rm_type_name>CLUSTER</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>false</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>true</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
</ns2:occurrences>
<ns2:node_id>at0054</ns2:node_id>
<ns2:includes>
<ns2:string_expression>archetype_id/value matches {/openEHR-EHR-CLUSTER\.multimedia(-[a-zA-Z0-9_]+)*\.v1/}</ns2:string_expression>
<ns2:expression xsi:type="ns2:EXPR_BINARY_OPERATOR">
<ns2:type>Boolean</ns2:type>
<ns2:operator>2007</ns2:operator>
<ns2:precedence_overridden>false</ns2:precedence_overridden>
<ns2:left_operand xsi:type="ns2:EXPR_LEAF">
<ns2:type>String</ns2:type>
<ns2:item xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">archetype_id/value</ns2:item>
<ns2:reference_type>attribute</ns2:reference_type>
</ns2:left_operand>
<ns2:right_operand xsi:type="ns2:EXPR_LEAF">
<ns2:type>String</ns2:type>
<ns2:item xsi:type="ns2:C_STRING">
<ns2:pattern>openEHR-EHR-CLUSTER\.multimedia(-[a-zA-Z0-9_]+)*\.v1</ns2:pattern>
</ns2:item>
<ns2:reference_type>constraint</ns2:reference_type>
</ns2:right_operand>
</ns2:expression>
</ns2:includes>
</ns2:children>
<ns2:cardinality>
<ns2:is_ordered>false</ns2:is_ordered>
<ns2:is_unique>false</ns2:is_unique>
<ns2:interval>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>false</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>true</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
</ns2:interval>
</ns2:cardinality>
</ns2:attributes>
<ns2:archetype_id>
<ns2:value>openEHR-EHR-CLUSTER.anatomical_location.v1</ns2:value>
</ns2:archetype_id>
<ns2:term_definitions code="at0000">
<ns2:items id="text">Anatomical location</ns2:items>
<ns2:items id="description">A physical site on or within the human body.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0001">
<ns2:items id="text">Body site name</ns2:items>
<ns2:items id="description">Identification of a single physical site either on, or within, the human body.</ns2:items>
<ns2:items id="comment">This data element is the only mandated data point in this archetype and should be used as the primary data point to record an anatomical location with a commonly used name. It is strongly recommended that 'Body site name' be recorded as specifically as is anatomically possible. For example: record 'upper eyelid' rather than recording 'eyelid' with 'upper' as a qualifier; 'fifth rib' rather than 'rib' with a numeric qualifier. Use the other data elements for laterality, aspect, region and anatomical line to provide more detail.
This data element should be coded with a terminology capable of triggering decision support, where possible - an appropriate termset for use here could comprise individual concepts or a list of precoordinated terms. Free text should be used only if there is no appropriate terminology available.
If body site name is already identified in the parent archetype, then this data element may be redundant. Alternatively, a use case has been identified where the value may be duplicated into this element to support semantic querying using this archetype, rather than the data element within the parent.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0002">
<ns2:items id="text">Laterality</ns2:items>
<ns2:items id="description">The side of the body on which the identified body site is located.</ns2:items>
<ns2:items id="comment">If the identified body site has no laterality, this data element should not have a value.
If the 'Body site name' data element uses pre-coordinated terms that include laterality, then this data element is redundant.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0003">
<ns2:items id="text">Left</ns2:items>
<ns2:items id="description">Left side of the body.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0004">
<ns2:items id="text">Right</ns2:items>
<ns2:items id="description">Right side of the body.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0023">
<ns2:items id="text">Description</ns2:items>
<ns2:items id="description">Narrative description that can be used to further refine and support the 'Body site name'.</ns2:items>
<ns2:items id="comment">For example: adjacent to the vermilion border; a tattoo covers the bottom half of this area.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0053">
<ns2:items id="text">Alternative structure</ns2:items>
<ns2:items id="description">Additional detail about the anatomical site using alternative approaches to describe the same body site.</ns2:items>
<ns2:items id="comment">For example, relative location or precise locations using coordinates. </ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0054">
<ns2:items id="text">Multimedia representation</ns2:items>
<ns2:items id="description">Image or other media used to support identification of the body site.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0055">
<ns2:items id="text">Anatomical Line</ns2:items>
<ns2:items id="description">Additional detail using theoretical lines drawn through anatomical structures used to provide a consistent reference point on the human body.</ns2:items>
<ns2:items id="comment">Common anatomical lines have been included as a value set, which can be extended over time, plus a free text option. The additional use of this data element allows for recording of the typical position of the heart's apex beat at 5th intercostal space, left side, and mid-clavicular line. If the 'Body site name' data element uses pre-coordinated terms that include anatomical line, then this data element is redundant.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0056">
<ns2:items id="text">Midaxillary line</ns2:items>
<ns2:items id="description">Line running vertically down the surface of the body, passing through the apex of the axilla.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0057">
<ns2:items id="text">Anterior axillary line</ns2:items>
<ns2:items id="description">Line running vertically down the surface of the body, passing through the anterior axillary skinfold.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0058">
<ns2:items id="text">Posterior axillary line</ns2:items>
<ns2:items id="description">Line running vertically down the surface of the body, passing through the posterior axillary skinfold.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0059">
<ns2:items id="text">Mid-clavicular line</ns2:items>
<ns2:items id="description">Line running vertically down the surface of the body, parallel to the midline and passing through the midpoint of the clavicle.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0060">
<ns2:items id="text">Mid-pupillary line</ns2:items>
<ns2:items id="description">Line running vertically down the face through the midpoint of the pupil when looking directly forward.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0062">
<ns2:items id="text">Midline</ns2:items>
<ns2:items id="description">Line running vertically which divides the body into left and right portions, passing through the head, spinal cord, and umbilicus. Alternatively it can refer to a line dividing a body part into two equal portions, for example a digit.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0063">
<ns2:items id="text">Mid-scapular line</ns2:items>
<ns2:items id="description">Line running vertically down the posterior surface of the body, parallel to the midline and passing through the inferior point of the scapula.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0064">
<ns2:items id="text">Aspect</ns2:items>
<ns2:items id="description">Qualifying detail about the specific aspect of the identified body site.</ns2:items>
<ns2:items id="comment">Use to increase precision of identification of the body site, if required. Common aspects have been included as a value set, which can be extended over time, plus a free text option. Assumes that the body is being described while in the anatomical position. For example: proximal urethra; plantar aspect of the left thumb. Multiple aspects can also be described, if required, by allowing for 0..2 occurrences. For example: a lesion may be on the left anterior/lateral (ie anterolateral) chest wall. If the 'Body site name' data element uses pre-coordinated terms that include the aspect, then this data element is redundant.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0065">
<ns2:items id="text">Specific site</ns2:items>
<ns2:items id="description">Additional detail using a specific region or a point on, or within, the identified body site.</ns2:items>
<ns2:items id="comment">Use to increase precision of identification of the body site, if required. For example, the upper right quadrant or McBurney's point on the abdominal wall or interphalangeal joint of the great toe. If the 'Body site name' data element uses pre-coordinated terms that include the specific site, then this data element is redundant.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0067">
<ns2:items id="text">Medial</ns2:items>
<ns2:items id="description">Towards the midline of the body site.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0068">
<ns2:items id="text">Lateral</ns2:items>
<ns2:items id="description">Towards the side, or edge, of the body site.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0069">
<ns2:items id="text">Superior</ns2:items>
<ns2:items id="description">Above the body site, often meaning towards the head.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0070">
<ns2:items id="text">Inferior</ns2:items>
<ns2:items id="description">Below the body site, often meaning towards the feet.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0071">
<ns2:items id="text">Anterior</ns2:items>
<ns2:items id="description">Towards the front, or ventral surface, of the body site.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0072">
<ns2:items id="text">Posterior</ns2:items>
<ns2:items id="description">Towards the back, or dorsal surface, of the body site.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0073">
<ns2:items id="text">Proximal</ns2:items>
<ns2:items id="description">More central or closer to the point of attachment, and usually describing part of a limb, digit or appendage.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0074">
<ns2:items id="text">Distal</ns2:items>
<ns2:items id="description">More peripheral, or further from the point of attachment, and usually describing part of a limb, digit or appendage.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0075">
<ns2:items id="text">Palmar</ns2:items>
<ns2:items id="description">Towards the palm of the hand.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0076">
<ns2:items id="text">Plantar</ns2:items>
<ns2:items id="description">Towards the sole of the foot.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0077">
<ns2:items id="text">Mid</ns2:items>
<ns2:items id="description">In the middle of the body site.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0078">
<ns2:items id="text">Oral</ns2:items>
<ns2:items id="description">Towards the mouth. Usually used to describe locations within the digestive system.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0079">
<ns2:items id="text">Anal</ns2:items>
<ns2:items id="description">Towards the anus. Usually used to describe locations within the digestive system.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0080">
<ns2:items id="text">Deep</ns2:items>
<ns2:items id="description">Away from the surface of the body site.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0081">
<ns2:items id="text">Superficial</ns2:items>
<ns2:items id="description">Towards the surface of the body site.</ns2:items>
</ns2:term_definitions>
<ns2:term_definitions code="at0082">
<ns2:items id="text">Dorsal</ns2:items>
<ns2:items id="description">Towards the back of the hand or top of the foot. To be used as opposites of palmar or plantar, not as a synonym of posterior.</ns2:items>
</ns2:term_definitions>
<ns2:term_bindings terminology="SNOMED-CT">
<ns2:items code="at0002">
<ns2:value>
<ns2:terminology_id>
<ns2:value>SNOMED-CT</ns2:value>
</ns2:terminology_id>
<ns2:code_string>[SNOMED-CT::272741003]</ns2:code_string>
</ns2:value>
</ns2:items>
<ns2:items code="at0003">
<ns2:value>
<ns2:terminology_id>
<ns2:value>SNOMED-CT</ns2:value>
</ns2:terminology_id>
<ns2:code_string>[SNOMED-CT::7771000]</ns2:code_string>
</ns2:value>
</ns2:items>
<ns2:items code="at0004">
<ns2:value>
<ns2:terminology_id>
<ns2:value>SNOMED-CT</ns2:value>
</ns2:terminology_id>
<ns2:code_string>[SNOMED-CT::24028007]</ns2:code_string>
</ns2:value>
</ns2:items>
</ns2:term_bindings>
</ns2:children>
<ns2:children xsi:type="ns2:ARCHETYPE_SLOT">
<ns2:rm_type_name>CLUSTER</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>false</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>true</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
</ns2:occurrences>
<ns2:node_id>at0095</ns2:node_id>
<ns2:includes>
<ns2:string_expression>archetype_id/value matches {/openEHR-EHR-CLUSTER\.device(-[a-zA-Z0-9_]+)*\.v1/}</ns2:string_expression>
<ns2:expression xsi:type="ns2:EXPR_BINARY_OPERATOR">
<ns2:type>Boolean</ns2:type>
<ns2:operator>2007</ns2:operator>
<ns2:precedence_overridden>false</ns2:precedence_overridden>
<ns2:left_operand xsi:type="ns2:EXPR_LEAF">
<ns2:type>String</ns2:type>
<ns2:item xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">archetype_id/value</ns2:item>
<ns2:reference_type>attribute</ns2:reference_type>
</ns2:left_operand>
<ns2:right_operand xsi:type="ns2:EXPR_LEAF">
<ns2:type>String</ns2:type>
<ns2:item xsi:type="ns2:C_STRING">
<ns2:pattern>openEHR-EHR-CLUSTER\.device(-[a-zA-Z0-9_]+)*\.v1</ns2:pattern>
</ns2:item>
<ns2:reference_type>constraint</ns2:reference_type>
</ns2:right_operand>
</ns2:expression>
</ns2:includes>
</ns2:children>
<ns2:children xsi:type="ns2:C_ARCHETYPE_ROOT">
<ns2:rm_type_name>CLUSTER</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0000</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_MULTIPLE_ATTRIBUTE">
<ns2:rm_attribute_name>items</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_ARCHETYPE_ROOT">
<ns2:rm_type_name>CLUSTER</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0000</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_MULTIPLE_ATTRIBUTE">
<ns2:rm_attribute_name>items</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>ELEMENT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0144</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE">
<ns2:rm_attribute_name>value</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_DV_QUANTITY">
<ns2:rm_type_name>DV_QUANTITY</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id></ns2:node_id>
<ns2:property>
<ns2:terminology_id>
<ns2:value>openehr</ns2:value>
</ns2:terminology_id>
<ns2:code_string>380</ns2:code_string>
</ns2:property>
<ns2:list>
<ns2:magnitude>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>false</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>true</ns2:upper_unbounded>
<ns2:lower>0.0</ns2:lower>
</ns2:magnitude>
<ns2:precision>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>3</ns2:lower>
<ns2:upper>3</ns2:upper>
</ns2:precision>
<ns2:units>1</ns2:units>
</ns2:list>
</ns2:children>
</ns2:attributes>
</ns2:children>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>ELEMENT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id>at0145</ns2:node_id>
<ns2:attributes xsi:type="ns2:C_SINGLE_ATTRIBUTE">
<ns2:rm_attribute_name>value</ns2:rm_attribute_name>
<ns2:existence>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:existence>
<ns2:match_negated>false</ns2:match_negated>
<ns2:children xsi:type="ns2:C_COMPLEX_OBJECT">
<ns2:rm_type_name>DV_CODED_TEXT</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>true</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>false</ns2:upper_unbounded>
<ns2:lower>1</ns2:lower>
<ns2:upper>1</ns2:upper>
</ns2:occurrences>
<ns2:node_id></ns2:node_id>
</ns2:children>
</ns2:attributes>
</ns2:children>
<ns2:children xsi:type="ns2:ARCHETYPE_SLOT">
<ns2:rm_type_name>CLUSTER</ns2:rm_type_name>
<ns2:occurrences>
<ns2:lower_included>true</ns2:lower_included>
<ns2:upper_included>false</ns2:upper_included>
<ns2:lower_unbounded>false</ns2:lower_unbounded>
<ns2:upper_unbounded>true</ns2:upper_unbounded>
<ns2:lower>0</ns2:lower>
</ns2:occurrences>
<ns2:node_id>at0037</ns2:node_id>
<ns2:includes>
<ns2:string_expression>archetype_id/value matches {/openEHR-EHR-CLUSTER\.timing_daily(-[a-zA-Z0-9_]+)*\.v1/}</ns2:string_expression>
<ns2:expression xsi:type="ns2:EXPR_BINARY_OPERATOR">
<ns2:type>Boolean</ns2:type>
<ns2:operator>2007</ns2:operator>
<ns2:precedence_overridden>false</ns2:precedence_overridden>
<ns2:left_operand xsi:type="ns2:EXPR_LEAF">