-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeographicalLocation.xmi
1408 lines (1408 loc) · 90.8 KB
/
GeographicalLocation.xmi
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" standalone="no" ?>
<XMI xmi.version="1.1" xmlns:UML="omg.org/UML1.3" timestamp="2023-08-19 17:40:41">
<XMI.header>
<XMI.documentation>
<XMI.exporter>Enterprise Architect</XMI.exporter>
<XMI.exporterVersion>4.1RR</XMI.exporterVersion>
</XMI.documentation>
<XMI.metamodel XMI.name="UML" XMI.version="1.3"/>
</XMI.header>
<XMI.content>
<UML:Model name="EA Model" xmi.id="MX_EAID_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD">
<UML:Namespace.ownedElement>
<UML:Package name="GeographicalLocationProfile" xmi.id="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="false" visibility="public">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="This is the geographical location profile as in 61968-13."/>
</UML:ModelElement.taggedValue>
<UML:Namespace.ownedElement>
<UML:Class name="GeographicalLocation-EU_Ontology" xmi.id="EAID_109504BE_94CC_48ec_B90C_74070CFB97D1" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="true" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_C0CA0BF1_AE79_4aeb_8C39_EA4D1DE4780E"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="The class of ontologies."/>
</UML:ModelElement.taggedValue>
<UML:Classifier.feature>
<UML:Attribute name="backwardCompatibleWith" xmi.id="EAID_DC2E5E52_9670_4971_961C_EC1D678DCACE" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="n"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The annotation property that indicates that a given ontology is backward compatible with another ontology."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{14C541BA-24F2-4b40-83BC-F26702EC4C26}" xmi.id="EAID_5D65798D_8521_410a_89F0_D30CD386F75E"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="conformsTo" xmi.id="EAID_97F787C9_53FF_4e31_9C3F_1A9F1CA3EE88" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="n"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="urn:iso:std:iec:61970-600-2:ed-1|urn:iso:std:iec:61970-301:ed-7:amd1|file://iec61970cim17v40_iec61968cim13v13a_iec62325cim03v17a.eap|urn:iso:std:iec:61970-401:draft:ed-1|urn:iso:std:iec:61970-501:draft:ed-2"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid1"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="An established standard to which the described resource conforms."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{7053C681-F66D-4b79-9F2D-14B6AD0E1470}" xmi.id="EAID_E6B8353D_FC34_4d24_8AAB_AB2D88702F54"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="creator" xmi.id="EAID_A265C534_0507_4a44_8C13_DC065A2A0928" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="IEC TC57 WG13"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid2"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="An entity responsible for making the resource.
Recommended practice is to identify the creator with a URI. If this is not possible or feasible, a literal value that identifies the creator may be provided."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{ECBB9D07-6D2E-404b-8744-D4695F222BAA}" xmi.id="EAID_453D1A39_3DB5_4949_9E6D_EFD2FAAE79E1"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="description" xmi.id="EAID_CB52550A_9B1A_4c9a_969D_BDDE8A7BC549" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="This vocabulary is describing the geographical location profile from IEC 61970-600-2."/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid2"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="An account of the resource.
Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{F8EADEEC-8B20-4978-9B51-53B4AEF5E874}" xmi.id="EAID_E3DDC8DA_230A_40d4_8FFF_C23FA520A4FB"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="identifier" xmi.id="EAID_4EDA631D_5C96_4a1a_8AC6_F3311FAE180C" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="urn:uuid:862c1230-be19-4a01-bd6f-1a6c03d213ff"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid1"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="An unambiguous reference to the resource within a given context.
Recommended practice is to identify the resource by means of a string conforming to an identification system. Examples include International Standard Book Number (ISBN), Digital Object Identifier (DOI), and Uniform Resource Name (URN). Persistent identifiers should be provided as HTTP URIs."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{D3189AD5-9626-4e74-B4C8-C9098107B928}" xmi.id="EAID_B5D10B6A_51E3_4007_96A9_4D23D07E0DC6"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="incompatibleWith" xmi.id="EAID_E7DB0FE0_933C_4073_A676_6AC23654A4A0" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="n"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="http://entsoe.eu/2009/profile1#"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The annotation property that indicates that a given ontology is incompatible with another ontology."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{5A77D7A1-D006-4e46-903F-12D56756C12B}" xmi.id="EAID_40A30AFE_0959_49c8_A9B4_9CFBEE1891C7"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="issued" xmi.id="EAID_9BDAFA84_ADE0_4886_A00C_9F0E053C3DAD" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid3"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Date of formal issuance of the resource.
Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{72A7E5CA-E495-4502-A989-C344D8AA3AAA}" xmi.id="EAID_E51A5E93_9FB5_4a12_A477_E30CBC1B9412"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="keyword" xmi.id="EAID_00C5DFA6_E726_4758_AD4A_1E5F92396A19" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="GL"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid4"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="A keyword or tag describing a resource."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{2909FB8E-A0CA-43df-904C-259C2147E7D0}" xmi.id="EAID_6099BC76_E2AC_44dc_92BF_C09A37F3D4FA"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="landingPage" xmi.id="EAID_F0EE71CE_31D7_4f3d_B0E8_D796558785A2" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="n"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="https://webstore.iec.ch/"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid5"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="A Web page that can be navigated to in a Web browser to gain access to the catalog, a dataset, its distributions and/or additional information.

If the distribution(s) are accessible only through a landing page (i.e. direct download URLs are not known), then the landing page link should be duplicated as accessURL on a distribution."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{38988857-F824-4f78-A87D-108BE2CDDF2C}" xmi.id="EAID_43A58C10_50A1_4519_9375_A6E3E613418D"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="language" xmi.id="EAID_1ADCD242_45DC_49f3_B9E8_041887033466" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="en-GB"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid4"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="A language of the item. This refers to the natural language used for textual metadata (i.e. titles, descriptions, etc) of a cataloged resource (i.e. dataset or service) or the textual values of a dataset distribution.
Recommended practice is to use either a non-literal value representing a language from a controlled vocabulary such as ISO 639-2 or ISO 639-3, or a literal value consisting of an IETF Best Current Practice 47 [IETF-BCP47] language tag."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{89D2D947-9C25-4558-A7F2-EB6462EC855C}" xmi.id="EAID_23E6851A_2A31_4b41_99EB_B31CDC559548"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="license" xmi.id="EAID_060118FF_A6C9_402b_9DB3_C77C51C47BC4" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="https://creativecommons.org/licenses/by/4.0/"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid2"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="A legal document giving official permission to do something with the resource.
Recommended practice is to identify the license document with a URI. If this is not possible or feasible, a literal value that identifies the license may be provided."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{1C3B5575-1163-40d0-AF84-34847DD5346A}" xmi.id="EAID_0953C73B_A32A_4b09_BB4E_1759C5F1490F"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="modified" xmi.id="EAID_2C3412A0_AC6F_4b30_8D27_D3E6D2DF8B2B" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="2020-10-12"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid6"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Most recent date on which the item was changed, updated or modified.
Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{65B4A9BA-9079-491a-A021-45C2AC85C7F6}" xmi.id="EAID_650AEC6E_1F44_442b_B174_B6C7024E7837"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="priorVersion" xmi.id="EAID_930CD77E_BF63_4d31_AD93_FA6BE157CB0C" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="http://entsoe.eu/CIM/GeographicalLocation/2/1"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The annotation property that indicates the predecessor ontology of a given ontology."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{2DB7A6F3-2A51-4b7f-ADF9-E1FBCA003EB4}" xmi.id="EAID_255AD3AF_FA38_4f75_8CC6_905527777E48"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="publisher" xmi.id="EAID_3E1A8F4B_0BFA_4dc4_A809_F85578A7C3CB" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="IEC"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid2"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="An entity responsible for making the resource available."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{EE0BC1A0-8840-42cc-8CE0-AD42BEB7B3C0}" xmi.id="EAID_A3018A81_8E20_43c4_A611_5BCA1A2B4476"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="rights" xmi.id="EAID_372FE8B8_0CB7_4c34_90DB_002A84E12960" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="Copyright"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid2"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="A statement that concerns all rights not addressed with dct:license or dct:accessRights, such as copyright statements."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{24625853-26A3-44fe-8181-0F87CF1C65B1}" xmi.id="EAID_2FB0FB1C_A401_4cf6_8E3C_78A40E6683F5"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="rightsHolder" xmi.id="EAID_1E85DFF7_618E_4509_8C46_4DA8EB68CAB7" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="IEC"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid2"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Information about rights held in and over the resource.
Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. Recommended practice is to refer to a rights statement with a URI. If this is not possible or feasible, a literal value (name, label, or short text) may be provided."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{9AE99C5E-9F41-4cf5-BC4C-1AD60DDEE8C2}" xmi.id="EAID_1796DDAD_072F_451c_9561_16D8C9343E75"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="theme" xmi.id="EAID_720CA746_5282_445d_9D90_D5A4F5F6500D" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="n"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="vocabulary"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid2"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="A main category of the resource. A resource can have multiple themes."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{BA0F666F-074F-4309-9D2F-D20EC593B2B9}" xmi.id="EAID_9F4D41DD_91CE_4715_8F1F_37598597C08F"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="title" xmi.id="EAID_4D11DB80_51B7_42af_88CD_71CBDD16C611" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="Geographical Location Vocabulary"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid2"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="A name given to the resource."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{55680243-9EF7-4a6f-B259-A34207D8FCE3}" xmi.id="EAID_C947DD07_7666_4151_9B28_69B1FDE4328E"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="versionInfo" xmi.id="EAID_465900DB_97B4_4610_BE41_3DE859F9E4FF" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="3.0.0"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid2"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The annotation property that provides version information for an ontology or another OWL construct."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{93331D96-1E7A-4461-AEB2-852800CE9915}" xmi.id="EAID_A8D5D732_46E9_4f3b_BCC2_D06794EE4B88"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="versionIRI" xmi.id="EAID_7464DC2E_8304_478c_A2C5_FAFE6F88378E" changeable="frozen" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression body="http://iec.ch/TC57/ns/CIM/GeographicalLocation-EU/3.0"/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="eaxmiid0"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The property that identifies the version IRI of an ontology."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{DDCD6029-D417-4895-948E-04849E2560E2}" xmi.id="EAID_C6D10638_B41F_4f44_BE69_C54EEC9F2A0C"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
</UML:Classifier.feature>
</UML:Class>
<UML:Class name="Integer" xmi.id="EAID_26FB35DE_D312_41f2_A967_AE5D50FDCF5A" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="An integer number. The range is unspecified and not limited.
"/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="Location" xmi.id="EAID_290E271B_B1D9_45d6_AA53_01C4302822B8" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_0B2D9F22_8C0D_4576_B090_E9AFB2292C36"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="The place, scene, or point of something where someone or something has been, is, and/or will be at a given moment in time. It can be defined with one or more position points (coordinates) in a given coordinate system.
"/>
</UML:ModelElement.taggedValue>
<UML:Classifier.feature>
<UML:Attribute name="mainAddress" xmi.id="EAID_CE22DA10_9B5C_4c61_9DA4_16266DAF0350" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_7BCBC751_7F78_45b6_B2AF_A9B36A32279D"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Main address of the location."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{44CF2281-A210-4c5a-A26A-D802302AA58D}" xmi.id="EAID_8EF4EC71_41C4_4800_821E_0988FF680783"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
</UML:Classifier.feature>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_290E271B_B1D9_45d6_AA53_01C4302822B8" parent="EAID_48C46760_EC38_4c58_A10B_468A1DFD5A6E" xmi.id="EAID_0B2D9F22_8C0D_4576_B090_E9AFB2292C36" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_48422BBB_3B33_45f5_AFFA_487A7EFBBF33" parent="EAID_290E271B_B1D9_45d6_AA53_01C4302822B8" xmi.id="EAID_8EC8F435_F88E_429b_9B7B_3160B7824951" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Association xmi.id="EAID_3915E768_6DC5_4438_99FD_D7A52480F750" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{DBF35456-ABE1-4deb-A885-2E48B3D6F8F6}" xmi.id="EAID_6A9ABFEA_15D4_4b39_A3C5_7467EA6EB8A1"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_src15E768_6DC5_4438_99FD_D7A52480F750" visibility="public" multiplicity="1" name="Location" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_290E271B_B1D9_45d6_AA53_01C4302822B8">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Location described by this position point."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dst15E768_6DC5_4438_99FD_D7A52480F750" visibility="public" multiplicity="0..*" name="PositionPoints" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="false" type="EAID_EF85055A_B753_4eb9_9FD7_FE577C68685D">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Sequence of position points describing this location, expressed in coordinate system 'Location.CoordinateSystem'."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Association xmi.id="EAID_61A89810_B909_433b_B039_282C299F5241" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{9F4B30FA-0A66-4ce4-9A00-413B0DB058C7}" xmi.id="EAID_0276583F_7F79_452e_95FD_B62EB4ACC9E0"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_srcA89810_B909_433b_B039_282C299F5241" visibility="public" multiplicity="0..1" name="Location" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="false" type="EAID_290E271B_B1D9_45d6_AA53_01C4302822B8">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Location of this power system resource."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dstA89810_B909_433b_B039_282C299F5241" visibility="public" multiplicity="1" name="PowerSystemResources" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_C2DD674F_BE55_4260_B32A_A0B8A5CF0D13">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="All power system resources at this location."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Association xmi.id="EAID_BC5C575E_F435_450d_AD64_575CD67A5E98" visibility="public" isRoot="false" isLeaf="false" isAbstract="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="GUIDBasedOn" value="{D9DB79D8-27F1-4071-9C79-F0F1F62B4F18}" xmi.id="EAID_9799AD2F_4BAF_4381_BF07_5365EF793F04"/>
</UML:ModelElement.taggedValue>
<UML:Association.connection>
<UML:AssociationEnd xmi.id="EAID_src5C575E_F435_450d_AD64_575CD67A5E98" visibility="public" multiplicity="0..*" name="Locations" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="false" type="EAID_290E271B_B1D9_45d6_AA53_01C4302822B8">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="-1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="All locations described with position points in this coordinate system."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
<UML:AssociationEnd xmi.id="EAID_dst5C575E_F435_450d_AD64_575CD67A5E98" visibility="public" multiplicity="1" name="CoordinateSystem" aggregation="none" isOrdered="false" targetScope="instance" changeable="none" isNavigable="true" type="EAID_D3B6F87F_97CC_4cbf_A14E_C851C839A167">
<UML:AssociationEnd.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:AssociationEnd.multiplicity>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Coordinate system used to describe position points of this location."/>
</UML:ModelElement.taggedValue>
</UML:AssociationEnd>
</UML:Association.connection>
</UML:Association>
<UML:Class name="WorkLocation" xmi.id="EAID_48422BBB_3B33_45f5_AFFA_487A7EFBBF33" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="true" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_8EC8F435_F88E_429b_9B7B_3160B7824951"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="Information about a particular location for various forms of work."/>
</UML:ModelElement.taggedValue>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_55562AD1_33AE_4bf5_8912_06D643F0255C" parent="EAID_48422BBB_3B33_45f5_AFFA_487A7EFBBF33" xmi.id="EAID_03EA8CB5_378F_40ea_B06F_60E530FA7A69" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Class name="IdentifiedObject" xmi.id="EAID_48C46760_EC38_4c58_A10B_468A1DFD5A6E" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="true" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="This is a root class to provide common identification for all classes needing identification and naming attributes."/>
</UML:ModelElement.taggedValue>
<UML:Classifier.feature>
<UML:Attribute name="mRID" xmi.id="EAID_58327049_C02F_4d18_899B_9DAC37A13AF4" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="1" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Master resource identifier issued by a model authority. The mRID is unique within an exchange context. Global uniqueness is easily achieved by using a UUID, as specified in RFC 4122, for the mRID. The use of UUID is strongly recommended.
For CIMXML data files in RDF syntax conforming to IEC 61970-552, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{C775F80A-A23D-4f38-AB9D-49D1FA882337}" xmi.id="EAID_F827B5AE_D087_43d6_8D3E_A07CCC1D8181"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="name" xmi.id="EAID_1EDCF6A3_D648_4de6_9714_9FF15A15553F" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The name is any free human readable and possibly non unique text naming the object.
"/>
<UML:TaggedValue tag="GUIDBasedOn" value="{870F033B-EDA6-4a32-A5AD-47DCBBFE2997}" xmi.id="EAID_5A787184_EF6E_4a30_9F67_4112DC00EE2F"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
</UML:Classifier.feature>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_C2DD674F_BE55_4260_B32A_A0B8A5CF0D13" parent="EAID_48C46760_EC38_4c58_A10B_468A1DFD5A6E" xmi.id="EAID_B81D222F_1144_4f03_8383_88A28938D312" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
<UML:Namespace.ownedElement>
<UML:Generalization child="EAID_D3B6F87F_97CC_4cbf_A14E_C851C839A167" parent="EAID_48C46760_EC38_4c58_A10B_468A1DFD5A6E" xmi.id="EAID_F7A21E38_E801_47b7_986A_2D5CD15E6493" visibility="public">
<UML:ModelElement.taggedValue/>
</UML:Generalization>
</UML:Namespace.ownedElement>
</UML:Class>
<UML:Class name="Date" xmi.id="EAID_4CE4452B_3E72_4a44_855D_32CBAF11F22F" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="Date as "yyyy-mm-dd", which conforms with ISO 8601. UTC time zone is specified as "yyyy-mm-ddZ". A local timezone relative UTC is specified as "yyyy-mm-dd(+/-)hh:mm"."/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="ServiceLocation" xmi.id="EAID_55562AD1_33AE_4bf5_8912_06D643F0255C" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:GeneralizableElement.generalization>
<Foundation.Core.Generalization xmi.idref="EAID_03EA8CB5_378F_40ea_B06F_60E530FA7A69"/>
</UML:GeneralizableElement.generalization>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A real estate location, commonly referred to as premises."/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="String" xmi.id="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A string consisting of a sequence of characters. The character encoding is UTF-8. The string length is unspecified and unlimited."/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="DateTime" xmi.id="EAID_6892D377_71B0_4a3a_93AA_2CD864BE157A" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="Date and time as "yyyy-mm-ddThh:mm:ss.sss", which conforms with ISO 8601. UTC time zone is specified as "yyyy-mm-ddThh:mm:ss.sssZ". A local timezone relative UTC is specified as "yyyy-mm-ddThh:mm:ss.sss-hh:mm". The second component (shown here as "ss.sss") could have any number of digits in its fractional part to allow any kind of precision beyond seconds."/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="Boolean" xmi.id="EAID_72093C9F_8B0D_4268_A771_780FFC9FE17C" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="A type with the value space "true" and "false".
"/>
</UML:ModelElement.taggedValue>
</UML:Class>
<UML:Class name="StreetAddress" xmi.id="EAID_7BCBC751_7F78_45b6_B2AF_A9B36A32279D" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="General purpose street and postal address information."/>
</UML:ModelElement.taggedValue>
<UML:Classifier.feature>
<UML:Attribute name="language" xmi.id="EAID_F617B530_7A52_4e40_9F85_54BA4A6DA0BD" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The language in which the address is specified, using ISO 639-1 two digit language code."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{7BD40FC3-3D5F-4229-ADAF-7CFC1AC97F0B}" xmi.id="EAID_4B09A9CD_E0D2_49d8_878B_621B93631E2F"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="poBox" xmi.id="EAID_532AB68B_C904_42c0_A2D2_DC7DCF05B3FF" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Post office box."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{AE33800A-1AD9-45e6-8415-1B9FB3A789C8}" xmi.id="EAID_6F2A5368_BD0B_4480_9F85_1F5B8EC62DA4"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="postalCode" xmi.id="EAID_269C6D4D_A5DF_45d7_B9C5_9838F15D5723" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Postal code for the address."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{8F962EBC-8805-4e03-8051-45E7382F0649}" xmi.id="EAID_BAC355F7_4ECC_429b_A8DE_0584021686A9"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="status" xmi.id="EAID_6739BE34_57EF_4b10_98B2_4F4EF318CE26" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_D1882D47_BD6F_4ef3_A5E6_2E2E30D98D43"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Status of this address."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{32354147-6588-46c6-9B6F-C327E702BCAC}" xmi.id="EAID_89E711A8_5460_46cd_B01E_8A25D06BF5C9"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="streetDetail" xmi.id="EAID_111D15FC_D911_4c07_BD94_FFAE164C5BC8" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_8F00DFEC_EB66_415b_94E5_E084FE988056"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Street detail."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{080F12A9-718C-4a10-A2BE-878231C3927F}" xmi.id="EAID_4489EF35_1CB7_4c74_AF2C_85945786A427"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="townDetail" xmi.id="EAID_187CC125_B1BB_42d0_9109_DBF7155516F4" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_E6164797_EA5C_4280_ACA2_1B5F6A71C405"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Town detail."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{07E7BC8F-BAA8-4462-BDA1-BA35D58B129D}" xmi.id="EAID_41FC7354_1C4C_4822_9FF0_D16A0542B7B0"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
</UML:Classifier.feature>
</UML:Class>
<UML:Class name="StreetDetail" xmi.id="EAID_8F00DFEC_EB66_415b_94E5_E084FE988056" visibility="public" namespace="EAPK_B3B0BEBA_247A_42cf_8AF1_AE24E3F37EDD" isRoot="false" isLeaf="false" isAbstract="false" isActive="false">
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="documentation" value="Street details, in the context of address.
"/>
</UML:ModelElement.taggedValue>
<UML:Classifier.feature>
<UML:Attribute name="addressGeneral" xmi.id="EAID_5188477C_CCF4_417f_9322_1163F0B31FEA" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="First line of a free form address or some additional address information (for example a mail stop)."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{5CE3C56A-A8CB-4d17-8F13-B1D56813F9B0}" xmi.id="EAID_047473FA_88EC_436e_AC98_57C682BA924F"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="addressGeneral2" xmi.id="EAID_49739B47_8008_40b7_BB02_E4FE3B18D0BB" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="(if applicable) Second line of a free form address."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{DC974BBD-371B-400a-BECB-7D8F8A5C58E2}" xmi.id="EAID_85557425_ED00_47e3_AFB3_D53C208467D0"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="addressGeneral3" xmi.id="EAID_6530FD32_69EF_4e5b_938F_CC07DC01CE4D" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="(if applicable) Third line of a free form address."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{07C70D18-5538-4645-B13D-BBD72DE32C97}" xmi.id="EAID_0F5A649A_87AA_4d8d_825B_6A8335956A93"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="buildingName" xmi.id="EAID_E19655DB_8BFD_400e_955F_21DF2EADC421" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="(if applicable) In certain cases the physical location of the place of interest does not have a direct point of entry from the street, but may be located inside a larger structure such as a building, complex, office block, apartment, etc."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{7537B883-F71B-4189-B0C4-036277339DEF}" xmi.id="EAID_95C1B3AA_2C28_41f6_AC85_3B486CD92806"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="code" xmi.id="EAID_80BCB1DC_C69A_4a34_A0CF_86267E845D53" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="(if applicable) Utilities often make use of external reference systems, such as those of the town-planner's department or surveyor general's mapping system, that allocate global reference codes to streets."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{9C44FAD9-C465-4c6b-A403-E6F1E66D9BE1}" xmi.id="EAID_CFBD5EE9_C5BE_44e2_8E8B_71ADEB47C799"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="floorIdentification" xmi.id="EAID_38E0BDEB_C212_4f1f_9A6E_A3705713D7C3" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="The identification by name or number, expressed as text, of the floor in the building as part of this address."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{24B16BCA-4094-43e8-9867-BC2E9EDC5D04}" xmi.id="EAID_6F324435_E742_4006_83F4_2F5005DA8253"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="name" xmi.id="EAID_6CA2DF6A_138A_43d8_AAA3_7B31FAF757AA" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Name of the street."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{CFEA2CAE-B7AA-4efd-ADCA-844A71759BFD}" xmi.id="EAID_6072D491_7C18_4c2e_B85F_114461597472"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="number" xmi.id="EAID_E0CB4176_0B4A_483f_BF9F_526B1B43FB3B" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Designator of the specific location on the street."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{DF4B02A3-F827-403b-AF42-3EDF7C5AB26E}" xmi.id="EAID_02E6CC64_ABAC_44a3_907F_7384E061C82F"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="prefix" xmi.id="EAID_930BD7B7_39CC_49c9_91F6_57D2AEA69C1B" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Prefix to the street name. For example: North, South, East, West."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{C0D97DAC-BB35-430e-B7F4-8C9FFBBED05D}" xmi.id="EAID_295D7ECE_D3DD_473d_8EC4_4A74E47899FC"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="suffix" xmi.id="EAID_DBCD6B0D_2B34_4ea3_95D4_EE2DAC4AFFEA" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Suffix to the street name. For example: North, South, East, West."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{E00200CA-8258-41be-8D82-475C894ECD59}" xmi.id="EAID_CF21F629_F97F_4241_BB9B_64286CA88815"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="suiteNumber" xmi.id="EAID_319925D7_4055_4a89_931B_4635A7D9EA59" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Number of the apartment or suite."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{2292B0DB-9622-4f91-A86B-C8067BCB34DF}" xmi.id="EAID_44C50998_CC2B_43f0_918F_7A3F03571337"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="type" xmi.id="EAID_1FAFCEA4_0AC8_419e_912F_30046061BC3F" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>
</UML:Multiplicity>
</UML:StructuralFeature.multiplicity>
<UML:Attribute.initialValue>
<UML:Expression/>
</UML:Attribute.initialValue>
<UML:StructuralFeature.type>
<Foundation.Core.Classifier xmi.idref="EAID_5A94E4C0_4E34_4b2d_AE4D_B9CF0219328B"/>
</UML:StructuralFeature.type>
<UML:ModelElement.taggedValue>
<UML:TaggedValue tag="description" value="Type of street. Examples include: street, circle, boulevard, avenue, road, drive, etc."/>
<UML:TaggedValue tag="GUIDBasedOn" value="{C1813D47-8834-4076-8C7D-A2A86410A073}" xmi.id="EAID_056B17D3_C429_4e3a_B148_4E66950D085F"/>
</UML:ModelElement.taggedValue>
</UML:Attribute>
<UML:Attribute name="withinTownLimits" xmi.id="EAID_53B4B97B_66D7_4854_8993_0BD6AAAF2A1D" changeable="none" visibility="public" ownerScope="instance" targetScope="instance">
<UML:StructuralFeature.multiplicity>
<UML:Multiplicity>
<UML:Multiplicity.range>
<UML:MultiplicityRange lower="0" upper="1"/>
</UML:Multiplicity.range>