forked from cqframework/OneModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvMR_DAM_XMI.xml
More file actions
2715 lines (2715 loc) · 214 KB
/
vMR_DAM_XMI.xml
File metadata and controls
2715 lines (2715 loc) · 214 KB
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="windows-1252"?>
<xmi:XMI xmi:version="2.1" xmlns:uml="http://schema.omg.org/spec/UML/2.1" xmlns:xmi="http://schema.omg.org/spec/XMI/2.1">
<xmi:Documentation exporter="Enterprise Architect" exporterVersion="6.5"/>
<uml:Model xmi:type="uml:Model" name="EA_Model" visibility="public">
<packagedElement xmi:type="uml:Package" xmi:id="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" name="dataTypes" visibility="public">
<ownedComment xmi:type="uml:Comment" xmi:id="EAID_5B484FE5_3134_4f5b_9EC8_07B41C1AA6AF"/>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" name="iso-21090-datatypes-simplified-vmr" visibility="public">
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_5E72FFE9_A309_4a68_A3F1_0E94CC393AA0" name="AD" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_23A8FBB4_DDA2_4fc1_80F4_A6569D6249C8" name="part" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_D661B9A3_9D91_4714_8D1E_BCAEC1304E75"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000001_DDA2_4fc1_80F4_A6569D6249C8" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000002_DDA2_4fc1_80F4_A6569D6249C8" value="-1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_647D9743_BA59_4ea2_9B77_A12A69C03E55" name="use" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000003_BA59_4ea2_9B77_A12A69C03E55" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000004_BA59_4ea2_9B77_A12A69C03E55" value="-1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_CC7229AF_FCC8_4142_BC55_9A1954A0A1F1" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_D661B9A3_9D91_4714_8D1E_BCAEC1304E75" name="ADXP" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_93D2560B_2E75_4e01_98CA_987E73688CB8" name="type" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000005_2E75_4e01_98CA_987E73688CB8" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000006_2E75_4e01_98CA_987E73688CB8" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_9740C57C_2454_4227_9CAC_76DD1783A8DB" general="EAID_51B8AFD1_7B7B_4866_AB11_A04D29360134"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7" name="ANY" visibility="public" isAbstract="true"/>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_42B3AC61_A754_4ffa_9F7F_B56B467F5135" name="BL" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_BF54DF87_CF6C_4e0e_989C_22B9503515C1" name="value" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000007_CF6C_4e0e_989C_22B9503515C1" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000008_CF6C_4e0e_989C_22B9503515C1" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_EED82D66_AA8A_4914_99F9_EDA4B704454B" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_35FE5B29_50E0_4745_ADFE_86E41FABDF43" name="CD" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_B27E589D_D8C5_440c_9EF0_62B3F9697D35" name="code" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000009_D8C5_440c_9EF0_62B3F9697D35" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000010_D8C5_440c_9EF0_62B3F9697D35" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_A4197947_396A_4143_B2C6_3C9408046AB2" name="codeSystem" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000011_396A_4143_B2C6_3C9408046AB2" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000012_396A_4143_B2C6_3C9408046AB2" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_F337E165_016D_492e_ACF2_3C8FCE4DFE34" name="codeSystemName" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000013_016D_492e_ACF2_3C8FCE4DFE34" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000014_016D_492e_ACF2_3C8FCE4DFE34" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_7B3FDCB6_132F_45e8_9CEC_3E9356A1AF0E" name="displayName" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_2F9B12DB_35AE_4d95_A6C2_7A6922D4D494"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000015_132F_45e8_9CEC_3E9356A1AF0E" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000016_132F_45e8_9CEC_3E9356A1AF0E" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_4A4C64D3_B795_41c3_AC17_756D9C1EC53B" name="originalText" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000017_B795_41c3_AC17_756D9C1EC53B" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000018_B795_41c3_AC17_756D9C1EC53B" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_B281C110_B42C_4361_B44F_1B57A5C11CC9" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_ED6839C0_B39E_48f4_8E96_1298FCB8B02D" name="CO" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_C5066F1A_56A8_44fa_ACE2_2367B41837C4" name="value" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000019_56A8_44fa_ACE2_2367B41837C4" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000020_56A8_44fa_ACE2_2367B41837C4" value="1"/>
<type xmi:idref="EAJava_decimal"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_BF44D4A4_04AF_426e_92D3_06ED114D5D69" name="code" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000021_04AF_426e_92D3_06ED114D5D69" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000022_04AF_426e_92D3_06ED114D5D69" value="1"/>
<type xmi:idref="EAJava_CD"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_25C819F5_3E5D_4d58_9861_5F67193F5980" general="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB" name="CS" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_DF046F77_9939_48aa_8CF3_E7ADB1CE65D8" name="code" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000023_9939_48aa_8CF3_E7ADB1CE65D8" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000024_9939_48aa_8CF3_E7ADB1CE65D8" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_4D99B911_2A5C_4fc8_9075_7698468AFAED" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_55552FA4_6B0E_4190_913A_BA96BADD6478" name="ED" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_2E74497D_B12F_4437_927F_A71F5F38B376" name="value" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000025_B12F_4437_927F_A71F5F38B376" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000026_B12F_4437_927F_A71F5F38B376" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_8F6CC260_0E56_4c51_9ADF_F4752E010743" name="data" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000027_0E56_4c51_9ADF_F4752E010743" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000028_0E56_4c51_9ADF_F4752E010743" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_88C3F59A_3FFE_4d39_A884_463F3892C92F" name="mediaType" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000029_3FFE_4d39_A884_463F3892C92F" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000030_3FFE_4d39_A884_463F3892C92F" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_19513C93_C892_4c17_A2F2_13736B8D0DA9" name="charset" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000031_C892_4c17_A2F2_13736B8D0DA9" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000032_C892_4c17_A2F2_13736B8D0DA9" value="1"/>
<type xmi:idref="EAJava_CD"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_2CE43E9C_9FE6_4387_B5A0_5D6BB13AEF8E" name="language" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000033_9FE6_4387_B5A0_5D6BB13AEF8E" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000034_9FE6_4387_B5A0_5D6BB13AEF8E" value="1"/>
<type xmi:idref="EAJava_CD"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_1879CF76_BB02_45b3_A4AE_54A7078676DF" name="xml" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000035_BB02_45b3_A4AE_54A7078676DF" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000036_BB02_45b3_A4AE_54A7078676DF" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_BB90B3B6_7C4E_42b9_891D_B2C3C0399111" name="reference" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_773F6D0E_370F_4df1_A77D_E578A19568C0"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000037_7C4E_42b9_891D_B2C3C0399111" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000038_7C4E_42b9_891D_B2C3C0399111" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_5ED9447A_CE1E_4378_9910_5645DD95FA6A" name="integrityCheck" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000039_CE1E_4378_9910_5645DD95FA6A" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000040_CE1E_4378_9910_5645DD95FA6A" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_7F6C8816_CB43_4c6c_9AFA_6EAA2EA90BB2" name="integrityCheckAlgorithm" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000041_CB43_4c6c_9AFA_6EAA2EA90BB2" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000042_CB43_4c6c_9AFA_6EAA2EA90BB2" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_4CDD971C_5E83_47ad_8937_B8701CEF2746" name="description" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000043_5E83_47ad_8937_B8701CEF2746" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000044_5E83_47ad_8937_B8701CEF2746" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_E730C3DD_036D_49a5_B863_E941F707C0BF" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_4C931F73_3FBE_41cb_8313_481A639FE66A" name="EN" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_B662F486_A1B7_4ace_82B1_6D7D6903016E" name="part" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_F431C09E_19D5_4207_A4F0_0CE4F0EE6F50"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000045_A1B7_4ace_82B1_6D7D6903016E" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000046_A1B7_4ace_82B1_6D7D6903016E" value="-1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_CAFD2EC0_9904_4e79_A631_70EF61931ACE" name="use" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000047_9904_4e79_A631_70EF61931ACE" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000048_9904_4e79_A631_70EF61931ACE" value="-1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_3E4800D9_40DD_4639_85C3_707F58D0DB4F" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_F431C09E_19D5_4207_A4F0_0CE4F0EE6F50" name="ENXP" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_789975AE_78C2_4629_93D5_60FF92EBAC82" name="type" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000049_78C2_4629_93D5_60FF92EBAC82" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000050_78C2_4629_93D5_60FF92EBAC82" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_30A7DDDB_1BFC_4f09_956C_3A7BE1809AF4" name="qualifier" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000051_1BFC_4f09_956C_3A7BE1809AF4" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000052_1BFC_4f09_956C_3A7BE1809AF4" value="-1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_3872A37D_6C2B_4b65_BC46_A8FF89A472C2" general="EAID_51B8AFD1_7B7B_4866_AB11_A04D29360134"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_E6D0FE1E_EB17_4311_80D8_B438D6102C6D" name="II" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_325A4EE3_44C3_4892_B19E_5EB465F40103" name="root" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000053_44C3_4892_B19E_5EB465F40103" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000054_44C3_4892_B19E_5EB465F40103" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_374ED6E0_D1C6_4b34_82F7_3743CC0BAC88" name="extension" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000055_D1C6_4b34_82F7_3743CC0BAC88" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000056_D1C6_4b34_82F7_3743CC0BAC88" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_FAB01696_2DD2_4e73_8BA0_91247B5FB330" name="identifierName" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000057_2DD2_4e73_8BA0_91247B5FB330" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000058_2DD2_4e73_8BA0_91247B5FB330" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_1272EB86_CE52_4d75_B646_91BEB23D26D9" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_26F16ABC_BEDB_4a7b_A8B8_F99398E633E5" name="INT" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_62A33717_4B4B_4a73_BF09_03F9E1330CFF" name="value" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Integer"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000059_4B4B_4a73_BF09_03F9E1330CFF" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000060_4B4B_4a73_BF09_03F9E1330CFF" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_6B88715C_C390_40d4_8E3D_9DAFEBF8E454" general="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_FEE51CE5_D7C2_440d_9FCA_387B4F9B7E29" name="IVL_INT" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_B7E58F61_3044_4d4e_B157_590B3E96D918" name="low" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_26F16ABC_BEDB_4a7b_A8B8_F99398E633E5"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000061_3044_4d4e_B157_590B3E96D918" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000062_3044_4d4e_B157_590B3E96D918" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_0B8AE140_2B04_469a_BC6F_9734F9BE82EA" name="high" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_26F16ABC_BEDB_4a7b_A8B8_F99398E633E5"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000063_2B04_469a_BC6F_9734F9BE82EA" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000064_2B04_469a_BC6F_9734F9BE82EA" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_E8A23327_2DAC_46e8_B2A7_9EDA53A84328" name="lowIsInclusive" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000065_2DAC_46e8_B2A7_9EDA53A84328" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000066_2DAC_46e8_B2A7_9EDA53A84328" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_49AE94BD_1768_4fa7_A2F5_0D9099575319" name="highIsInclusive" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000067_1768_4fa7_A2F5_0D9099575319" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000068_1768_4fa7_A2F5_0D9099575319" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_9640AAEE_8A69_435e_AF46_6847C46AA2CA" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_B17CEB60_E8AB_4f3e_80BC_3FF36E6DEC67" name="IVL_PQ" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_C3E3E99A_B0F7_4072_A7C9_EC59BF868FF6" name="low" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_C3AA820F_AC9B_4a08_A740_D89BA24D0429"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000069_B0F7_4072_A7C9_EC59BF868FF6" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000070_B0F7_4072_A7C9_EC59BF868FF6" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_F96711ED_3310_4eae_9338_93CB09026DAA" name="high" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_C3AA820F_AC9B_4a08_A740_D89BA24D0429"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000071_3310_4eae_9338_93CB09026DAA" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000072_3310_4eae_9338_93CB09026DAA" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_EABBCC6F_A696_4582_B13C_1C12A1494532" name="lowIsInclusive" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000073_A696_4582_B13C_1C12A1494532" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000074_A696_4582_B13C_1C12A1494532" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_43C7C60F_C4BF_4823_A9D4_4FEC89E2E430" name="highIsInclusive" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000075_C4BF_4823_A9D4_4FEC89E2E430" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000076_C4BF_4823_A9D4_4FEC89E2E430" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_4A801233_FBF4_4b56_9F3D_70DF7907307E" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_FB2EE8B4_F189_4390_A167_1BDB34CBEFC7" name="IVL_REAL" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_13E6F36B_B4D5_4951_A257_60E0D07D9C3E" name="low" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_EF41D07F_B04F_4533_8F9A_EE62415565C7"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000077_B4D5_4951_A257_60E0D07D9C3E" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000078_B4D5_4951_A257_60E0D07D9C3E" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_C27F5B76_8D1B_4a56_83FA_FE3250704C83" name="high" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_EF41D07F_B04F_4533_8F9A_EE62415565C7"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000079_8D1B_4a56_83FA_FE3250704C83" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000080_8D1B_4a56_83FA_FE3250704C83" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_A7F15ED1_07EA_49a7_A236_0107B579CF4D" name="lowIsInclusive" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000081_07EA_49a7_A236_0107B579CF4D" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000082_07EA_49a7_A236_0107B579CF4D" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_142268D2_2ECC_4825_9D3F_4392A76578F5" name="highIsInclusive" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000083_2ECC_4825_9D3F_4392A76578F5" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000084_2ECC_4825_9D3F_4392A76578F5" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_1CC2B5F2_AD0E_4c07_9D3C_A5B0DE47EB31" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_B9DB7B40_5336_42a1_B5ED_3C02AB91B118" name="IVL_RTO" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_7E535CF7_5EDE_4fff_9A69_21E723C6A47F" name="low" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_0276B06B_AD33_47ff_8ED0_75CA52989F23"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000085_5EDE_4fff_9A69_21E723C6A47F" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000086_5EDE_4fff_9A69_21E723C6A47F" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_4E8990BC_6C15_44ae_AA30_9A16E17525F7" name="high" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_0276B06B_AD33_47ff_8ED0_75CA52989F23"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000087_6C15_44ae_AA30_9A16E17525F7" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000088_6C15_44ae_AA30_9A16E17525F7" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_52624037_CBBD_44f2_9195_342E1F5ECFA4" name="lowIsInclusive" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000089_CBBD_44f2_9195_342E1F5ECFA4" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000090_CBBD_44f2_9195_342E1F5ECFA4" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_2195F9DA_C6DF_417f_B187_CDCDE1A2F7FA" name="highIsInclusive" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000091_C6DF_417f_B187_CDCDE1A2F7FA" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000092_C6DF_417f_B187_CDCDE1A2F7FA" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_75127622_65F4_4df5_B209_7FF5127CDB69" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_A32018D5_8F53_45cd_A707_5352400C5E41" name="IVL_TS" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_145719A7_A32D_4627_BFC0_FB0A1DE2B65E" name="low" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_4D308EB5_6124_4cc9_942E_FF9E64D02F42"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000093_A32D_4627_BFC0_FB0A1DE2B65E" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000094_A32D_4627_BFC0_FB0A1DE2B65E" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_D09B17C7_917D_47cc_8835_305F960B169E" name="high" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_4D308EB5_6124_4cc9_942E_FF9E64D02F42"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000095_917D_47cc_8835_305F960B169E" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000096_917D_47cc_8835_305F960B169E" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_ABA1A99C_7D65_41aa_B8D2_634C81538635" name="lowIsInclusive" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000097_7D65_41aa_B8D2_634C81538635" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000098_7D65_41aa_B8D2_634C81538635" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_AAB6CC39_9407_4b56_885A_FFAF8391D9DB" name="highIsInclusive" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#Boolean"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000099_9407_4b56_885A_FFAF8391D9DB" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000100_9407_4b56_885A_FFAF8391D9DB" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_EFF853AD_0415_4950_ADE9_7ABF9E3B3CAF" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_C3AA820F_AC9B_4a08_A740_D89BA24D0429" name="PQ" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_167F1747_5BBE_4ac2_8A22_B0B25E15F6B8" name="unit" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000101_5BBE_4ac2_8A22_B0B25E15F6B8" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000102_5BBE_4ac2_8A22_B0B25E15F6B8" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_9DC1EAF2_8C39_4fbc_93FC_1447994795F9" name="value" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#UnlimitedNatural"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000103_8C39_4fbc_93FC_1447994795F9" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000104_8C39_4fbc_93FC_1447994795F9" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_FAD32FDF_5C1C_4b77_991B_E9885D9313B9" general="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25" name="QTY" visibility="public" isAbstract="true">
<generalization xmi:type="uml:Generalization" xmi:id="EAID_6340D9D6_AA97_443c_A003_FA43565DAE30" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_EF41D07F_B04F_4533_8F9A_EE62415565C7" name="REAL" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_88B1B351_60A8_4633_B1D4_CE2FFD3A81EA" name="value" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#UnlimitedNatural"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000105_60A8_4633_B1D4_CE2FFD3A81EA" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000106_60A8_4633_B1D4_CE2FFD3A81EA" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_40CB2DD7_847D_42c0_8171_A0D118138110" general="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_0276B06B_AD33_47ff_8ED0_75CA52989F23" name="RTO" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_140951D5_28A0_4df3_9E51_50F2102B2D32" name="numerator" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000107_28A0_4df3_9E51_50F2102B2D32" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000108_28A0_4df3_9E51_50F2102B2D32" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_057254E3_5046_4c18_A385_E2B967E62750" name="denominator" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000109_5046_4c18_A385_E2B967E62750" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000110_5046_4c18_A385_E2B967E62750" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_E899D7F6_0F94_443c_8413_53C6769D2D1C" general="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_2F9B12DB_35AE_4d95_A6C2_7A6922D4D494" name="ST" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_6FB944A0_0536_4505_A425_177FDEC789F9" name="value" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000111_0536_4505_A425_177FDEC789F9" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000112_0536_4505_A425_177FDEC789F9" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_8D1AFABD_FC32_40fa_B380_DAB7BEF37CEE" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_773F6D0E_370F_4df1_A77D_E578A19568C0" name="TEL" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_01F9D06D_6229_4723_AACA_0D190BFD3F4C" name="capabilities" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000113_6229_4723_AACA_0D190BFD3F4C" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000114_6229_4723_AACA_0D190BFD3F4C" value="-1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_C8BD3E73_BBFF_4857_9949_8BEA35D6108A" name="use" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000115_BBFF_4857_9949_8BEA35D6108A" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000116_BBFF_4857_9949_8BEA35D6108A" value="-1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_0732E7DF_55D6_46bb_9CEC_04F042F64D9F" name="useablePeriodOriginalText" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000117_55D6_46bb_9CEC_04F042F64D9F" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000118_55D6_46bb_9CEC_04F042F64D9F" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_D677A63C_D6B2_4571_887C_C3759BC63BD5" name="value" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000119_D6B2_4571_887C_C3759BC63BD5" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000120_D6B2_4571_887C_C3759BC63BD5" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_E32FBD7C_D411_41f7_8E3D_8244EB391A02" general="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_4D308EB5_6124_4cc9_942E_FF9E64D02F42" name="TS" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_C6870B25_D9E9_4943_A46B_3F21493A6B7B" name="value" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000121_D9E9_4943_A46B_3F21493A6B7B" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000122_D9E9_4943_A46B_3F21493A6B7B" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_A62828A0_7455_4fda_88B9_8F4553C9F3F9" general="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25"/>
</nestedClassifier>
<nestedClassifier xmi:type="uml:Class" xmi:id="EAID_51B8AFD1_7B7B_4866_AB11_A04D29360134" name="XP" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_F8683CB9_8CD6_434f_BB83_C93A67679805" name="value" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:type="uml:PrimitiveType" href="http://schema.omg.org/spec/UML/2.1/uml.xml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000123_8CD6_434f_BB83_C93A67679805" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000124_8CD6_434f_BB83_C93A67679805" value="1"/>
</ownedAttribute>
</nestedClassifier>
</packagedElement>
<packagedElement xmi:type="uml:Association" xmi:id="EAID_80C6795E_91DE_47a2_964E_CA04D2469F54" visibility="public">
<memberEnd xmi:idref="EAID_dstC6795E_91DE_47a2_964E_CA04D2469F54"/>
<memberEnd xmi:idref="EAID_srcC6795E_91DE_47a2_964E_CA04D2469F54"/>
<ownedEnd xmi:type="uml:Property" xmi:id="EAID_srcC6795E_91DE_47a2_964E_CA04D2469F54" visibility="public" association="EAID_80C6795E_91DE_47a2_964E_CA04D2469F54" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_F33C69E9_7777_4470_B065_933A349DA538"/>
</ownedEnd>
</packagedElement>
</packagedElement>
</uml:Model>
<xmi:Extension extender="Enterprise Architect" extenderID="6.5">
<elements>
<element xmi:idref="EAPK_61138951_AFE2_4710_8F11_92E690FFD17E" xmi:type="uml:Package" name="dataTypes" scope="public">
<model package2="EAID_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" package="EAPK_419F86AE_3D4A_418b_AC0E_D6E280137931" tpos="5" ea_localid="6" ea_eleType="package"/>
<properties documentation="Specifies data types used. The data types are a simplified/constrained version of ISO 21090 data types, which is an implementable specification based on the abstract HL7 version 3 data types specification, release 2." isSpecification="false" sType="Package" nType="0" scope="public"/>
<project version="1.0" phase="1.0" created="2010-12-02 10:36:36" modified="2011-07-15 18:00:03" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="modelParent"/>
<packageproperties version="1.0" tpos="5"/>
<paths/>
<times created="2010-12-02 00:00:00" modified="2010-12-02 00:00:00"/>
<flags iscontrolled="FALSE" isprotected="FALSE" usedtd="FALSE" logxml="FALSE"/>
</element>
<element xmi:idref="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" xmi:type="uml:Class" name="iso-21090-datatypes-simplified-vmr" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" tpos="0" ea_localid="208" ea_eleType="element"/>
<properties isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project version="1.0" phase="1.0" created="2011-06-28 14:41:12" modified="2011-07-15 15:59:44" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={858730F7-BEF6-4570-A766-B78DFE1F95D1}$XID;$NAM=CustomProperties$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isActive@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={B025FEB9-1BFB-4e4a-B8A5-24E45158005C}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="dataTypes"/>
</element>
<element xmi:idref="EAID_5E72FFE9_A309_4a68_A3F1_0E94CC393AA0" xmi:type="uml:Class" name="AD" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="254" ea_eleType="element"/>
<properties documentation="Mailing and home or office addresses. 

AD is primarily used to communicate data that will allow printing mail labels, or that will allow a person to physically visit that address. The postal address datatype is not supposed to be a container for additional information that might be useful for finding geographic locations (e.g., GPS coordinates) or for performing epidemiological studies. Such additional information should be captured by other, more appropriate data structures.

Addresses are essentially sequences of address parts, but add a "use" code and a valid time range for information about if and when the address can be used for a given purpose." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project version="1.0" phase="1.0" created="2011-06-28 14:41:13" modified="2011-07-28 14:38:54" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={B25F9AB2-3D92-4531-9076-227AF8EABCE9}$XID;$NAM=CustomProperties$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isActive@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={5E72FFE9-A309-4a68-A3F1-0E94CC393AA0}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="dataTypes" ea_attsclassified="{33DC6C94-36CD-4302-A03A-0F916C423326},{E6FB988F-73C5-4ffe-95C3-EFF6AFEAF6EC},{E69C2121-A9F3-489e-81B9-469E1ED207EA}"/>
<attributes>
<attribute xmi:idref="EAID_23A8FBB4_DDA2_4fc1_80F4_A6569D6249C8" name="part" scope="Public">
<initial/>
<documentation value="A sequence of address parts, such as street or post office Box, city, postal code, country, etc."/>
<model ea_localid="483" ea_guid="{23A8FBB4-DDA2-4fc1-80F4-A6569D6249C8}"/>
<properties type="ADXP" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="0"/>
<stereotype/>
<bounds lower="1" upper="*"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_647D9743_BA59_4ea2_9B77_A12A69C03E55" name="use" scope="Public">
<initial/>
<documentation value="A set of codes advising a system or user which address in a set of like addresses to select for a given purpose. 
An address without specific use code might be a default address useful for any purpose, but an address with a specific use code would be preferred for that respective purpose.
If populated, the values contained in this attribute SHALL be taken from the HL7 PostalAddressUse code system."/>
<model ea_localid="482" ea_guid="{647D9743-BA59-4ea2-9B77-A12A69C03E55}"/>
<properties type="CS" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="1"/>
<stereotype/>
<bounds lower="0" upper="*"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_CC7229AF_FCC8_4142_BC55_9A1954A0A1F1" start="EAID_5E72FFE9_A309_4a68_A3F1_0E94CC393AA0" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</links>
</element>
<element xmi:idref="EAID_D661B9A3_9D91_4714_8D1E_BCAEC1304E75" xmi:type="uml:Class" name="ADXP" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="258" ea_eleType="element"/>
<properties documentation="A part with a type-tag signifying its role in the address. Typical parts that exist in about every address are street, house number, or post box, postal code, city, country but other roles may be defined regionally, nationally, or on an enterprise level (e.g. in military addresses). " isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project version="1.0" phase="1.0" created="2011-06-28 14:41:14" modified="2011-07-22 15:41:31" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={7FC237FB-2B37-463f-A67D-310BF643A6FC}$XID;$NAM=CustomProperties$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isActive@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={D661B9A3-9D91-4714-8D1E-BCAEC1304E75}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="dataTypes" ea_attsclassified="{23A8FBB4-DDA2-4fc1-80F4-A6569D6249C8}"/>
<attributes>
<attribute xmi:idref="EAID_93D2560B_2E75_4e01_98CA_987E73688CB8" name="type" scope="Public">
<initial/>
<documentation value="Whether an address part names the street, city, country, postal code, post box, address line 1, etc.
The value of this attribute SHALL be taken from the HL7 AddressPartType code system."/>
<model ea_localid="487" ea_guid="{93D2560B-2E75-4e01-98CA-987E73688CB8}"/>
<properties type="CS" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_9740C57C_2454_4227_9CAC_76DD1783A8DB" start="EAID_D661B9A3_9D91_4714_8D1E_BCAEC1304E75" end="EAID_51B8AFD1_7B7B_4866_AB11_A04D29360134"/>
</links>
</element>
<element xmi:idref="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7" xmi:type="uml:Class" name="ANY" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="222" ea_eleType="element"/>
<properties documentation="Defines the basic properties of every data value. This is conceptually an abstract type, meaning that no proper value can be just a data value without belonging to any concrete type. Every public concrete type is a specialization of this general abstract DataValue type.

This class is maintained despite the lack of attributes to maintain compatibility with the ISO 21090 data structure." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="true" isActive="false"/>
<project version="1.0" phase="1.0" created="2011-06-28 14:41:13" modified="2011-07-15 16:03:57" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={9EDB1005-53A6-4cf3-B117-E94BABF9FF37}$XID;$NAM=CustomProperties$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isActive@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={D72FD77F-1019-4392-9094-BF423D0B52D7}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="dataTypes" ea_attsclassified="{084C3F6F-6B4A-4686-B4D2-224B1FC830BC},{0FB8CF95-AC7D-4fe2-B183-FFDCDBB53122}"/>
<links>
<Generalization xmi:id="EAID_1272EB86_CE52_4d75_B646_91BEB23D26D9" start="EAID_E6D0FE1E_EB17_4311_80D8_B438D6102C6D" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_1CC2B5F2_AD0E_4c07_9D3C_A5B0DE47EB31" start="EAID_FB2EE8B4_F189_4390_A167_1BDB34CBEFC7" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_3E4800D9_40DD_4639_85C3_707F58D0DB4F" start="EAID_4C931F73_3FBE_41cb_8313_481A639FE66A" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_4A801233_FBF4_4b56_9F3D_70DF7907307E" start="EAID_B17CEB60_E8AB_4f3e_80BC_3FF36E6DEC67" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_4D99B911_2A5C_4fc8_9075_7698468AFAED" start="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_6340D9D6_AA97_443c_A003_FA43565DAE30" start="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_75127622_65F4_4df5_B209_7FF5127CDB69" start="EAID_B9DB7B40_5336_42a1_B5ED_3C02AB91B118" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Association xmi:id="EAID_80C6795E_91DE_47a2_964E_CA04D2469F54" start="EAID_F33C69E9_7777_4470_B065_933A349DA538" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_8D1AFABD_FC32_40fa_B380_DAB7BEF37CEE" start="EAID_2F9B12DB_35AE_4d95_A6C2_7A6922D4D494" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_9640AAEE_8A69_435e_AF46_6847C46AA2CA" start="EAID_FEE51CE5_D7C2_440d_9FCA_387B4F9B7E29" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_B281C110_B42C_4361_B44F_1B57A5C11CC9" start="EAID_35FE5B29_50E0_4745_ADFE_86E41FABDF43" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_CC7229AF_FCC8_4142_BC55_9A1954A0A1F1" start="EAID_5E72FFE9_A309_4a68_A3F1_0E94CC393AA0" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_E32FBD7C_D411_41f7_8E3D_8244EB391A02" start="EAID_773F6D0E_370F_4df1_A77D_E578A19568C0" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_E730C3DD_036D_49a5_B863_E941F707C0BF" start="EAID_55552FA4_6B0E_4190_913A_BA96BADD6478" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_EED82D66_AA8A_4914_99F9_EDA4B704454B" start="EAID_42B3AC61_A754_4ffa_9F7F_B56B467F5135" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
<Generalization xmi:id="EAID_EFF853AD_0415_4950_ADE9_7ABF9E3B3CAF" start="EAID_A32018D5_8F53_45cd_A707_5352400C5E41" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</links>
</element>
<element xmi:idref="EAID_42B3AC61_A754_4ffa_9F7F_B56B467F5135" xmi:type="uml:Class" name="BL" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="232" ea_eleType="element"/>
<properties documentation="BL stands for the values of two-valued logic. A BL value can be either true or false." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project version="1.0" phase="1.0" created="2011-06-28 14:41:13" modified="2011-07-22 16:25:37" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={8AD0E166-CA66-4e59-BD0B-819782EFF4FE}$XID;$NAM=CustomProperties$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isActive@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={42B3AC61-A754-4ffa-9F7F-B56B467F5135}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="dataTypes" ea_attsclassified="{519E6912-3267-48c1-9F0B-F7A00974F266},{C83EFB83-6472-4442-8963-04F96ABC403F},{9FB3B4EE-D023-4476-9A1D-CBBEAA3446F5},{74EF5D83-6BE9-4cf4-B214-71864AE08B04}"/>
<attributes>
<attribute xmi:idref="EAID_BF54DF87_CF6C_4e0e_989C_22B9503515C1" name="value" scope="Public">
<initial/>
<documentation value="The value of the BL."/>
<model ea_localid="420" ea_guid="{BF54DF87-CF6C-4e0e-989C-22B9503515C1}"/>
<properties type="boolean" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_EED82D66_AA8A_4914_99F9_EDA4B704454B" start="EAID_42B3AC61_A754_4ffa_9F7F_B56B467F5135" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</links>
</element>
<element xmi:idref="EAID_35FE5B29_50E0_4745_ADFE_86E41FABDF43" xmi:type="uml:Class" name="CD" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="237" ea_eleType="element"/>
<properties documentation="A CD is a reference to a concept defined in an external code system, terminology, or ontology.

A CD may also contain an original text or phrase that served as the basis of the coding." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project version="1.0" phase="1.0" created="2011-06-28 14:41:13" modified="2013-03-19 13:23:01" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={CF860397-F7D7-45ff-8EBD-D96BC7FE44C8}$XID;$NAM=CustomProperties$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isActive@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={35FE5B29-50E0-4745-ADFE-86E41FABDF43}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="dataTypes" ea_attsclassified="{4DC4C969-E0F9-4a9e-9144-434E3C63124A},{C2D25B56-168C-4ce0-8FA4-42EB482FB769},{0C3A9EDB-61B4-4ba7-BC26-83EBA12CEBE8},{E7BE0F11-4D9A-4c02-819D-C1D9C9F95A0D},{A89CC50C-5152-4f8d-B10C-12E304833919},{ABAB68D5-27B5-4ad5-B8D0-6D23A4FF4E2A},{63D9B40B-30A8-4cd4-82EB-ECA74795EC58},{0E9293FC-0D76-4e81-9E60-6ECF9F6F8E75},{539A2716-2C12-43ca-AF80-8D51CE030C6C},{F8F7C515-34E2-4ca5-8D39-3AA1B15896D7},{8E647808-B39B-4207-86CE-3837B38C77FA},{D12BE00D-E087-44ed-97C4-9E3B0E7B71F0},{12FB1C08-2342-4b60-BC2B-BD07F3286290},{995A7ABF-4EA9-4ea3-8E3A-CC030096A83D},{A2B3BB92-0893-491f-B0F7-319048377837},{AFA42800-864E-4261-B9A7-FECAFB0E5CEE},{9A39E9F2-DAE5-429a-8FC8-E0E8285B6BE7},{DDB0039C-6DB2-4dba-8D14-FBED3579FFF5},{64550E7C-9A55-4a82-A75C-9FCCC1860E9F},{440FFF10-A28A-47a7-B2AF-C9BBE4DFC9F4},{B2090435-28BC-426a-B0A7-EDEB48B6F218},{257B3EE4-C8D9-4558-8C8D-224833E8CD08},{126C1DFD-2A3E-4e45-9582-BD57B076D816},{0001BB2F-011B-452a-B60D-B4542BC0113A},{3EB215D7-3B57-4917-8FA7-AA03F53CEDEE},{03D8B695-6487-4e03-A5A8-54204B08E0BC},{C5DE88E1-B162-4a14-9AD1-010051175E9A},{D8BE03EC-3222-45ab-BD91-96BE4FCD00FB},{44F8AEB9-7FC7-4343-983A-AD4652DAA21B},{7A733308-3FC4-4622-A3B6-97278A8BAFA7},{552BAB4A-C706-4d5f-B0CF-88583317676B},{039913C9-EDC9-4adb-8FC6-4BD836B22122},{94F0E9E5-4D64-4d00-AB23-37548A2FD671},{ED0FB339-E8CA-44e8-8EE9-6D2ECBAF0710},{4637BE47-DB43-4f86-B9F2-BF949881C33C},{A75BF61A-D74D-4c6a-BD53-6D4DBDF94C76},{38CC7D78-9F91-4f55-8C16-7B0BCFAE28F7},{94271C88-2C2F-4f64-BE7F-8B4C915712ED},{E9BDD1D9-AEB1-4ef6-B7DD-CE8A5478BC4B},{FFC51BBC-621A-416f-9B83-149A68124BC8},{1CB4255E-82A1-4743-AE91-E1CE3ECD82F0},{E4E0F436-821B-4428-AD47-C9C95D202FAA},{41C80015-C739-4b74-80BA-F047A8BA0795},{5084CA66-AA5F-48c1-9C33-C5CA34926B9B},{C37547D3-BF79-45a3-9190-2D19CB9C8023},{BE2D2133-416D-41a0-B073-F8380656E735},{DE69A721-2208-44ad-9C20-9B3192D2C832},{1C68D136-D60D-45ab-ABF4-574A2E81D0BB},{5CA7501C-CD1D-4954-A2E4-DD3B9420FC27},{C731A2E6-64B9-4719-92E2-2721301CA75D},{12A24785-D34B-4374-93CA-6E884CE418C5},{1BF99111-476D-40b1-8072-D8313E250F4C},{5A153C0A-8CE8-4ddf-9F6C-5C400CE69D07},{19D2C267-8FC3-459e-A9C0-742257FB4F45},{9B962416-ECA1-40c1-85F2-4C8ADDAC2B3F},{E0DA143D-6DB8-4075-897B-B2E777E2ECB9},{56C8A50A-D94B-4b15-8655-0A6C1FD92882},{EC02BB89-9005-4c10-BD70-7ABBEE40D59A},{1F35C936-1DE0-4294-B512-E9254A516B80},{C1C4BBA8-2F03-4ad3-8C40-42B9DFEE3EB5},{FA40C44C-AF7F-40e4-81E1-E9096DCC9C6B},{A99A35E7-EF4D-4e2f-A7A9-42B2185FD9AD},{035C360B-A7A6-459b-8BE8-3E6515CAD2F2},{A1311831-EEB2-4506-9C34-EB27492E94E6},{ADE4A758-F402-477e-AD3F-8534515E7C1D}"/>
<attributes>
<attribute xmi:idref="EAID_B27E589D_D8C5_440c_9EF0_62B3F9697D35" name="code" scope="Public">
<initial/>
<documentation value="The plain code symbol defined by the code system, or an expression in a syntax defined by the code system which describes the concept. 
Code SHALL be an exact match to a plain code symbol or expression defined by the code system. If the code system defines a code or expression that includes whitespace, the code SHALL include the whitespace. An expression can only be used where the codeSystem either defines an expression syntax, or there is a generally accepted syntax for the codeSystem. A code system may be defined that only defines an expression syntax with bindings to other code Systems for the elements of the expression. 
It is at the discretion of the interpreting system whether to check for an expression instead of a simple code and evaluate the expression instead of treating the expression as a code. In some cases, it may be unclear or ambiguous whether the code represents a single symbol or an expression. This usually arises where the code system defines an expression language and then defines pre-coordinated concepts with symbols which match their expression, e.g. UCUM. In other cases, it is safe to treat the expression as a symbol. There is no guarantee that this is always safe: the definitions of the codeSystem should always be consulted to determine how to handle potential expressions."/>
<model ea_localid="439" ea_guid="{B27E589D-D8C5-440c-9EF0-62B3F9697D35}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_A4197947_396A_4143_B2C6_3C9408046AB2" name="codeSystem" scope="Public">
<initial/>
<documentation value="The code system that defines the code, or if no code was found, the codeSystem in which no code was found. 
Code systems SHALL be referred to by a UID, which allows unambiguous reference to standard code systems and other local codesystems. Where either ISO or HL7 have assigned UID to code Systems, then these UIDs SHALL be used. Otherwise implementations SHALL use an appropriate ISO Object Identifier (OID) or UUID to construct a globally unique local coding system identifier."/>
<model ea_localid="440" ea_guid="{A4197947-396A-4143-B2C6-3C9408046AB2}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="1"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_F337E165_016D_492e_ACF2_3C8FCE4DFE34" name="codeSystemName" scope="Public">
<initial/>
<documentation value="The common name of the coding system. 

The code system name has no computational value. codeSystemName can never modify the meaning of codeSystem and cannot exist without codeSystem.

Information Processing Entities claiming direct or indirect conformance SHALL NOT functionally rely on codeSystemName. In addition, they MAY choose not to implement codeSystemName; but SHALL NOT reject instances because codeSystemName is present.

Note: The purpose of a code system name is to assist an unaided human interpreter of a code value to interpret codeSystem."/>
<model ea_localid="841" ea_guid="{F337E165-016D-492e-ACF2-3C8FCE4DFE34}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="2"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_7B3FDCB6_132F_45e8_9CEC_3E9356A1AF0E" name="displayName" scope="Public">
<initial/>
<documentation value="A name, title, or representation for the code or expression as it exists in the code system.
If populated, the displayName SHALL be a valid human readable representation of the concept as defined by the code system at the time of data entry. The displayName SHALL conform to any rules defined by the codingSystem; if the codeSystem does not define a human representation for the code or expression, then none can be provided. displayName is included both as a courtesy to an unaided human interpreter of a code value and as a documentation of the name used to display the concept to the user. The display name has no functional meaning; it SHALL never exist without a code; and it SHALL never modify the meaning of the code. A display name may not be present if the code is an expression for which no display name has been assigned or can be derived. Information Processing Entities claiming direct or indirect conformance MAY choose not to implement displayName but SHALL NOT reject instances because displayName is present.
Display names SHALL not alter the meaning of the code value. Therefore, display names SHOULD NOT be presented to the user on a receiving application system without ascertaining that the display name adequately represents the concept referred to by the code value. Communication SHALL NOT simply rely on the display name. The display name&#39;s main purpose is to support implementation debugging."/>
<model ea_localid="441" ea_guid="{7B3FDCB6-132F-45e8-9CEC-3E9356A1AF0E}"/>
<properties type="ST" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="3"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_4A4C64D3_B795_41c3_AC17_756D9C1EC53B" name="originalText" scope="Public">
<initial/>
<documentation value="The text as seen and/or selected by the user who entered the data which represents the intended meaning of the user. This attribute is equivalent to originalText.value in the ISO 21090 model.

Note: Local implementations may influence what is required to represent that original text.

Original text can be used in a structured user interface to capture what the user saw as a representation of the code on the data input screen, or in a situation where the user dictates or directly enters text, it is the text entered or uttered by the user. 

It is valid to use the CD datatype to store only the text that the user entered or uttered. In this situation, original text will exist without a code. In a situation where the code is assigned sometime after the text was entered, originalText is the text or phrase used as the basis for assigning the code. 

The original text SHALL be an excerpt of the relevant information in the original sources, rather than a pointer or exact reproduction. Thus the original text SHALL be represented in plain text form. In specific circumstances, when clearly descirbed the context of use, the originalText may be a reference to some other text artefact for which the resolution scope is clearly described.

Values of type CD MAY have a original text despite not having a code. Any CD value with no code signifies a coding exception. In this case, originalText is a name or description of the concept that was not coded. "/>
<model ea_localid="842" ea_guid="{4A4C64D3-B795-41c3-AC17-756D9C1EC53B}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="4"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_B281C110_B42C_4361_B44F_1B57A5C11CC9" start="EAID_35FE5B29_50E0_4745_ADFE_86E41FABDF43" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</links>
</element>
<element xmi:idref="EAID_ED6839C0_B39E_48f4_8E96_1298FCB8B02D" xmi:type="uml:Class" name="CO" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="541" ea_eleType="element"/>
<properties documentation="Represents data where coded values are associated with a specific order. 

Note: CO may be used for things that model rankings and scores, e.g. likert scales, pain, Apgar values, etc, where there is a) implied ordering, b) no implication that the distance between each value is constant, and c) the total number of values is finite. CO may also be used in the context of an ordered code system. In this case, it may not be appropriate or even possible to use the value attribute, but CO may still be used so that models that make use of such code systems may introduce model elements that involve statements about the order of the terms in a domain.

The relative order of values in a code system need not be independently obvious in the literal representation of the CO. It these circumstances, is expected that an application will look up the ordering of these values from some definition of the code system. 

Some of the code systems will directly assign numerical value to the concepts that are suitable for some mathemetical operations.

Though it would generally make sense, applications SHOULD not assume that the translations of the code, if provided, will have the same ordering as the CO. Translations SHALL not be considered when the ordering of the code system is determined." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="NanjoCl01" version="1.0" phase="1.0" created="2013-03-20 09:12:39" modified="2013-03-20 18:19:17" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="dataTypes"/>
<attributes>
<attribute xmi:idref="EAID_C5066F1A_56A8_44fa_ACE2_2367B41837C4" name="value" scope="Public">
<initial/>
<documentation value="A numerical value associated with the coded ordinal value.
The value may be constrained to an integer in some contexts of use. If code is nonNull, value SHALL only be nonNull if the code system explicitly assigns a value to the concept."/>
<model ea_localid="1056" ea_guid="{C5066F1A-56A8-44fa-ACE2-2367B41837C4}"/>
<properties type="decimal" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={23A3B866-39F8-47e2-8680-A2C5605FCCA2}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={C5066F1A-56A8-44fa-ACE2-2367B41837C4}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_BF44D4A4_04AF_426e_92D3_06ED114D5D69" name="code" scope="Public">
<initial/>
<documentation value="A code representing the definition of the ordinal item"/>
<model ea_localid="1057" ea_guid="{BF44D4A4-04AF-426e-92D3-06ED114D5D69}"/>
<properties type="CD" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="1"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={F52D6498-1E02-4794-9FE5-1053C249521C}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={BF44D4A4-04AF-426e-92D3-06ED114D5D69}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_25C819F5_3E5D_4d58_9861_5F67193F5980" start="EAID_ED6839C0_B39E_48f4_8E96_1298FCB8B02D" end="EAID_5C179D3F_B1CF_4470_A8DE_31347D6E1D25"/>
</links>
</element>
<element xmi:idref="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB" xmi:type="uml:Class" name="CS" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="250" ea_eleType="element"/>
<properties documentation="Coded data in its simplest form, where only the code is not predetermined. 

The code system and code system version are implied and fixed by the context in which the CS value occurs. 

Due to its highly restricted functionality, CS SHALL only be used for simple structural attributes with highly controlled and stable terminologies where:
- all codes come from a single code system
- codes are not reused if their concept is deprecated
- the publication and extensibility properties of the code system are well described and understood" isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project version="1.0" phase="1.0" created="2011-06-28 14:41:13" modified="2011-07-22 16:25:37" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={9F7EC587-F762-425f-932A-D9C35098A274}$XID;$NAM=CustomProperties$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isActive@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={8CF087A1-72E8-463b-B50B-C84E398C33CB}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="dataTypes" ea_attsclassified="{9D3AA040-A63E-4e4a-A7D2-0A279980DBD8},{468C14BC-003C-41b5-BAC2-7F7E6195B25F},{93D2560B-2E75-4e01-98CA-987E73688CB8},{647D9743-BA59-4ea2-9B77-A12A69C03E55},{CD9B4F6E-2C7F-4040-8537-F9DC2C5C2579},{CAFD2EC0-9904-4e79-A631-70EF61931ACE},{789975AE-78C2-4629-93D5-60FF92EBAC82},{30A7DDDB-1BFC-4f09-956C-3A7BE1809AF4},{C8BD3E73-BBFF-4857-9949-8BEA35D6108A},{ADAF4185-88C9-4219-981B-1ED57E7C41CB},{84F1D77C-AA74-4c59-B3E5-D740A1E969DC},{C647E596-206A-4434-9E58-0D6443EC832E},{01F9D06D-6229-4723-AACA-0D190BFD3F4C}"/>
<attributes>
<attribute xmi:idref="EAID_DF046F77_9939_48aa_8CF3_E7ADB1CE65D8" name="code" scope="Public">
<initial/>
<documentation value="The plain code symbol defined by the code system. If the code value is empty or null, then there is no code in the code system that represents the concept.
Code SHALL only contain characters that are either a letter, a digit, or one of '.', '-', '_' or ':'. Code systems that are used with CS SHALL NOT define code symbols or expression syntaxes that contain whitespace or any other characters not in this list."/>
<model ea_localid="463" ea_guid="{DF046F77-9939-48aa-8CF3-E7ADB1CE65D8}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_4D99B911_2A5C_4fc8_9075_7698468AFAED" start="EAID_8CF087A1_72E8_463b_B50B_C84E398C33CB" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</links>
</element>
<element xmi:idref="EAID_55552FA4_6B0E_4190_913A_BA96BADD6478" xmi:type="uml:Class" name="ED" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="532" ea_eleType="element"/>
<properties isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="NanjoCl01" version="1.0" phase="1.0" created="2013-03-07 08:35:10" modified="2013-03-09 10:35:22" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="dataTypes"/>
<attributes>
<attribute xmi:idref="EAID_2E74497D_B12F_4437_927F_A71F5F38B376" name="value" scope="Public">
<initial/>
<documentation value="A simple sequence of characters that contains the content. 

If value is used, the mediatype is fixed to text/plain and the charset must be consistent with the String Character Set. Refer to section 6.7.5 for more details"/>
<model ea_localid="1013" ea_guid="{2E74497D-B12F-4437-927F-A71F5F38B376}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={CBE32F83-7461-435a-8128-EED2A3606CCD}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={2E74497D-B12F-4437-927F-A71F5F38B376}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_8F6CC260_0E56_4c51_9ADF_F4752E010743" name="data" scope="Public">
<initial/>
<documentation value="A simple sequence of byte values that contains the content. (Base64 Encoded String)."/>
<model ea_localid="1018" ea_guid="{8F6CC260-0E56-4c51-9ADF-F4752E010743}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="1"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={A26FDE9E-1393-4ef5-B01F-F388520D42CF}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={8F6CC260-0E56-4c51-9ADF-F4752E010743}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_88C3F59A_3FFE_4d39_A884_463F3892C92F" name="mediaType" scope="Public">
<initial/>
<documentation value="Identifies the type of the encapsulated data and can be used to determine a method to interpret or render the content. 

The IANA defined domain of media types is established by the IETF RFCs 2045 and 2046. mediaType has a default value of text/plain and cannot be null. If the media type is different to text/plain, the &amp;#60;i&amp;#62;mediaType&amp;#60;/i&amp;#62; attribute SHALL be populated.

If the content is compressed using a specified compression algorithm, the mediaType SHALL refer the mediaType of the uncompressed data, whether the data is accessed by reference or not. "/>
<model ea_localid="1014" ea_guid="{88C3F59A-3FFE-4d39-A884-463F3892C92F}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="2"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={E7AA6085-AF01-439a-AD3E-CAFA01A5AEB6}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={88C3F59A-3FFE-4d39-A884-463F3892C92F}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_19513C93_C892_4c17_A2F2_13736B8D0DA9" name="charset" scope="Public">
<initial/>
<documentation value="An Internet Assigned Numbers Authority (IANA) Charset Registered character set and character encoding for character-based encoding types&amp;#60;b&amp;#62;. &amp;#60;/b&amp;#62;

Whenever the content of the ED is character type data in any form, the charset property needs to be known. If the content is provided directly in the value attribute, then the charset SHALL be a known character set consistent with the String Character Set. Refer to section 6.7.5 for more details. If the content is provided as a reference, and the access method does not provide the charset for the content (such as by a mime header), then the charset SHALL be conveyed as part of the ED"/>
<model ea_localid="1015" ea_guid="{19513C93-C892-4c17-A2F2-13736B8D0DA9}"/>
<properties type="CD" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="3"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={E4C2AF3B-F0F6-428e-AD95-2FF5CB6FBBFF}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={19513C93-C892-4c17-A2F2-13736B8D0DA9}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_2CE43E9C_9FE6_4387_B5A0_5D6BB13AEF8E" name="language" scope="Public">
<initial/>
<documentation value="The human language of the content. Valid codes are taken from the IETF RFC 3066. If this attribute is null, the language may be inferred from elsewhere, either from the context or from unicode language tags, for example.

Conformance profiles SHOULD define defaulting rules for language for a given usage environment of this specification.

Note: While language attribute usually alters the interpretation of the text, the language attribute does not alter the meaning of the characters in the text."/>
<model ea_localid="1016" ea_guid="{2CE43E9C-9FE6-4387-B5A0-5D6BB13AEF8E}"/>
<properties type="CD" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="4"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={3597D2ED-8115-496d-9581-A8C7C0D0DC41}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={2CE43E9C-9FE6-4387-B5A0-5D6BB13AEF8E}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_1879CF76_BB02_45b3_A4AE_54A7078676DF" name="xml" scope="Public">
<initial/>
<documentation value="The content represented in plain XML form.

A direct representation is provided for XML. This is because this specification includes an XML serialization of the data, and this xml attribute is handled specially in the serialisation form. The xml data is not different in any semantic sense to the same data if represented in the value or data attributes."/>
<model ea_localid="1019" ea_guid="{1879CF76-BB02-45b3-A4AE-54A7078676DF}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="5"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={C5B5B0E9-4B05-4d3e-A7BE-6B69DAD230BE}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={1879CF76-BB02-45b3-A4AE-54A7078676DF}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_BB90B3B6_7C4E_42b9_891D_B2C3C0399111" name="reference" scope="Public">
<initial/>
<documentation value="A URL the target of which provides the binary content.

The semantic value of an encapsulated data value is the same, regardless whether the content is present as inline content or just by reference. However, an encapsulated data value without inline content behaves differently, since any attempt to examine the content requires the data to be downloaded from the reference. An encapsulated data value may have both inline content and a reference.

If data is provded in the value, data or xml attributes, the reference SHALL point to the same data. It is an error if the data resolved through the reference does not match either the integrity check, data as provided, or data that had earlier been retrieved through the reference and then cached. The mediatype of the ED SHALL match the type returned by accessing the reference. 

The reference may contain a usablePeriod to indicate that the data may only be available for a limited period of time. Whether the reference is limited by a usablePeriod or not, the content of the reference SHALL be fixed for all time. Any application using the reference SHALL always receive the same data, or an error. The reference cannot be reused to send a different version of the same data, or different data"/>
<model ea_localid="1020" ea_guid="{BB90B3B6-7C4E-42b9-891D-B2C3C0399111}"/>
<properties type="TEL" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="6"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={080BD694-FDBD-44c1-B991-0870EA78F6C8}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={BB90B3B6-7C4E-42b9-891D-B2C3C0399111}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_5ED9447A_CE1E_4378_9910_5645DD95FA6A" name="integrityCheck" scope="Public">
<initial/>
<documentation value="A checksum calculated over the binary data

The purpose of this property, when communicated with a reference is for anyone to validate later whether the reference still resolved to the same content that the reference resolved to when the encapsulated data value with reference was created. If the attribute is null, there is no integrityCheck.
It is an error if the data resolved through the reference does not match the integrity check. 
The integrity check is calculated according to the integrityCheckAlgorithm. By default, the Secure Hash Algorithm-1 (SHA-1) shall be used. The integrity check is binary encoded according to the rules of the integrity check algorithm. 
The integrity check is calculated over the raw binary data that is contained in the data component, or that is accessible through the reference. No transformations are made before the integrity check is calculated. If the data is compressed, the Integrity Check is calculated over the compressed data. "/>
<model ea_localid="1023" ea_guid="{5ED9447A-CE1E-4378-9910-5645DD95FA6A}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="7"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={8C3CF65A-BA85-4311-B6C9-547D2AC9F5EE}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={5ED9447A-CE1E-4378-9910-5645DD95FA6A}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_7F6C8816_CB43_4c6c_9AFA_6EAA2EA90BB2" name="integrityCheckAlgorithm" scope="Public">
<initial/>
<documentation value="The algorithm used to compute the integrityCheck value.
If populated, the value of this attribute SHALL be taken from the HL7 IntegrityCheckAlgorithm code system."/>
<model ea_localid="1026" ea_guid="{7F6C8816-CB43-4c6c-9AFA-6EAA2EA90BB2}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="8"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={958881A1-8948-42ca-BD2D-04B39CD32305}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={7F6C8816-CB43-4c6c-9AFA-6EAA2EA90BB2}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_4CDD971C_5E83_47ad_8937_B8701CEF2746" name="description" scope="Public">
<initial/>
<documentation value="An alternative description of the media where the media is not able to be rendered. 

E.g. Short text description of an image or sound clip, etc. This attribute is not intended to be a complete substitute for the original. For complete substitutes, use the &amp;#34;translation&amp;#34; property.

The intent of this property is to allow compliance with disability requirements such as those expressed in American&amp;#39;s with Disability Act (also known as &amp;#34;Section 508&amp;#34;), where there is a requirement to provide a short text description of included media in some form that can be read by a screen reader. This is similar to a very short thumbnail with mediaType = text/plain."/>
<model ea_localid="1021" ea_guid="{4CDD971C-5E83-47ad-8937-B8701CEF2746}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="9"/>
<stereotype/>
<bounds lower="0" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={D1F2ED86-DA63-494c-A5E9-5BE00CC9123A}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={4CDD971C-5E83-47ad-8937-B8701CEF2746}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_E730C3DD_036D_49a5_B863_E941F707C0BF" start="EAID_55552FA4_6B0E_4190_913A_BA96BADD6478" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</links>
</element>
<element xmi:idref="EAID_4C931F73_3FBE_41cb_8313_481A639FE66A" xmi:type="uml:Class" name="EN" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="228" ea_eleType="element"/>
<properties documentation="A name for a person, organization, place or thing. 

Examples: Jim Bob Walton, Jr., Health Level Seven, Inc., Lake Tahoe, etc. An entity name may be as simple as a character string or may consist of several entity name parts, such as, Jim, Bob, Walton, and Jr., Health Level Seven, and Inc.

Entity names are essentially sequences of entity name parts, but add a "use" code." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project version="1.0" phase="1.0" created="2011-06-28 14:41:13" modified="2011-07-22 16:25:37" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={1B8EEF78-ACDF-469f-AF37-210FCC636D98}$XID;$NAM=CustomProperties$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isActive@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={4C931F73-3FBE-41cb-8313-481A639FE66A}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="dataTypes" ea_attsclassified="{7000F7FF-6E96-4064-BD9D-C7611AF08801},{23F14B8D-6198-48d7-911C-C8A2CE6D7B70},{6AB2A9E0-A863-40d1-9081-E57EEAA642A2}"/>
<attributes>
<attribute xmi:idref="EAID_B662F486_A1B7_4ace_82B1_6D7D6903016E" name="part" scope="Public">
<initial/>
<documentation value="A sequence of name parts, such as given name or family name, prefix, suffix, etc."/>
<model ea_localid="417" ea_guid="{B662F486-A1B7-4ace-82B1-6D7D6903016E}"/>
<properties type="ENXP" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="1"/>
<stereotype/>
<bounds lower="1" upper="*"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_CAFD2EC0_9904_4e79_A631_70EF61931ACE" name="use" scope="Public">
<initial/>
<documentation value="A set of codes advising a system or user which name in a set of names to select for a given purpose. 
A name without specific use code might be a default name useful for any purpose, but a name with a specific use code would be preferred for that respective purpose. Names SHOULD not be collected without at least one use code, but names MAY exist without use code, particularly for legacy data.
If populated, the values contained in this attribute SHALL be taken from the HL7 EntityNameUse2 code system."/>
<model ea_localid="416" ea_guid="{CAFD2EC0-9904-4e79-A631-70EF61931ACE}"/>
<properties type="CS" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="2"/>
<stereotype/>
<bounds lower="0" upper="*"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_3E4800D9_40DD_4639_85C3_707F58D0DB4F" start="EAID_4C931F73_3FBE_41cb_8313_481A639FE66A" end="EAID_D72FD77F_1019_4392_9094_BF423D0B52D7"/>
</links>
</element>
<element xmi:idref="EAID_F431C09E_19D5_4207_A4F0_0CE4F0EE6F50" xmi:type="uml:Class" name="ENXP" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="231" ea_eleType="element"/>
<properties documentation="A part with a type code signifying the role of the part in the whole entity name, and qualifier codes for more detail about the name part type. (Typical name parts for person names are given names, and family names, titles, etc.). " isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project version="1.0" phase="1.0" created="2011-06-28 14:41:13" modified="2011-09-26 13:02:11" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={DA7703E5-3118-41a1-982D-6C3CB2D32327}$XID;$NAM=CustomProperties$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isActive@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={F431C09E-19D5-4207-A4F0-0CE4F0EE6F50}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="dataTypes" ea_attsclassified="{B662F486-A1B7-4ace-82B1-6D7D6903016E}"/>
<attributes>
<attribute xmi:idref="EAID_789975AE_78C2_4629_93D5_60FF92EBAC82" name="type" scope="Public">
<initial/>
<documentation value="Indicates whether the name part is a given name, family name, prefix, suffix, etc. 
The value of this attribute SHALL be taken from the HL7 EntityNamePartType2 code system."/>
<model ea_localid="418" ea_guid="{789975AE-78C2-4629-93D5-60FF92EBAC82}"/>
<properties type="CS" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_30A7DDDB_1BFC_4f09_956C_3A7BE1809AF4" name="qualifier" scope="Public">
<initial/>
<documentation value="The qualifier is a set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type.
For example, a given name may be flagged as a nickname (CL), a family name may be a name acquired by marriage (SP) or a name from birth (BR).
If populated, the values contained in this attribute SHALL be taken from the HL7 EntityNamePartQualifier2 code system."/>
<model ea_localid="419" ea_guid="{30A7DDDB-1BFC-4f09-956C-3A7BE1809AF4}"/>
<properties type="CS" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="1"/>
<stereotype/>
<bounds lower="0" upper="*"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_3872A37D_6C2B_4b65_BC46_A8FF89A472C2" start="EAID_F431C09E_19D5_4207_A4F0_0CE4F0EE6F50" end="EAID_51B8AFD1_7B7B_4866_AB11_A04D29360134"/>
</links>
</element>
<element xmi:idref="EAID_E6D0FE1E_EB17_4311_80D8_B438D6102C6D" xmi:type="uml:Class" name="II" scope="public">
<model package="EAPK_6E646EC9_3CC5_4ada_AAC6_3124F1E04EC9" owner="EAID_B025FEB9_1BFB_4e4a_B8A5_24E45158005C" tpos="0" ea_localid="233" ea_eleType="element"/>
<properties documentation="An identifier that uniquely identifies a thing or object. 

Examples are object identifier for HL7 RIM objects, medical record number, order id, service catalog item id, Vehicle Identification Number (VIN), etc. Instance identifiers are usually defined based on ISO object identifiers.

An identifier allows someone to select one record, object or thing from a set of candidates. Usually an identifier alone without any context is not usable. Identifiers are distinguished from concept descriptors as concept descriptors never identify an individual thing, although there may sometimes be an individual record or object that represents the concept.

Information Processing Entities claiming direct or indirect conformance SHALL never assume that receiving applications can infer the identity of issuing authority or the type of the identifier from the identifier or components thereof." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project version="1.0" phase="1.0" created="2011-06-28 14:41:13" modified="2013-03-04 13:54:21" complexity="1" status="Proposed"/>
<code gentype="<none>"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={F9830CE3-DF8C-492b-9F9E-CC2214C3CE6E}$XID;$NAM=CustomProperties$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isActive@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={E6D0FE1E-EB17-4311-80D8-B438D6102C6D}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="dataTypes" ea_attsclassified="{F2850153-7D63-42b2-85D4-F04116FF787F},{DA3EB822-E5CA-48ae-B1ED-AFEC38E59E7E},{F92F092A-4DB2-4e7f-A947-53803FA343D6},{2794AB84-BE08-4766-8E4C-8FAA62CF9F6B},{4AF0BC91-5D2B-4f41-AEAD-6EB99DDDA833},{A7A590E7-93D1-4190-A031-61FA1AD04D26},{181B5B54-CE07-49b6-A5AB-34A8FF03A4E7}"/>