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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
|
<?xml version="1.0" encoding="UTF-8"?>
<xmi:XMI xmi:version="20131001" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:OpenModel_Profile="http:///schemas/OpenModel_Profile/_zWCisKVxEeikF6xsfT18UA/26" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML" xsi:schemaLocation="http:///schemas/OpenModel_Profile/_zWCisKVxEeikF6xsfT18UA/26 OpenModel_Profile.profile.uml#_zWYg8KVxEeikF6xsfT18UA">
<uml:Package xmi:id="_L6FF4DOHEei5Af8DcjrhIQ" name="Common">
<packagedElement xmi:type="uml:Package" xmi:id="_OFje8DOHEei5Af8DcjrhIQ" name="ObjectClasses">
<packagedElement xmi:type="uml:Class" xmi:id="_Tw79sD2pEeiu6I5JfRTxxQ" name="VirtualLinkDesc" isAbstract="true">
<ownedComment xmi:type="uml:Comment" xmi:id="_Tw79sT2pEeiu6I5JfRTxxQ" annotatedElement="_Tw79sD2pEeiu6I5JfRTxxQ">
<body>Common part of the various VLDs.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Tw79sj2pEeiu6I5JfRTxxQ" name="virtualLinkDescId" type="_AuYtcDkBEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Tw79sz2pEeiu6I5JfRTxxQ" annotatedElement="_Tw79sj2pEeiu6I5JfRTxxQ">
<body>Uniquely identifies a VLD in the parent descriptor.
For VnfVirtualLinkDesc, the parent descriptor is the VNFD.
For NsVirtualLinkDesc, the parent descriptor is the NSD.
Note: the description of this class are different in ETSI GS NFV IFA 011 and ETSI GS NFV IFA 014. The present definition merges the 2 definitions.</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Tw79tD2pEeiu6I5JfRTxxQ" name="connectivityType" type="_ImxsgDeBEeiIfPeSAqyGdQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_Tw79tT2pEeiu6I5JfRTxxQ" annotatedElement="_Tw79tD2pEeiu6I5JfRTxxQ">
<body>Specifies the protocol exposed by a VL and the flow pattern supported by the VL.</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Tw79uj2pEeiu6I5JfRTxxQ" name="description">
<ownedComment xmi:type="uml:Comment" xmi:id="_Tw79uz2pEeiu6I5JfRTxxQ" annotatedElement="_Tw79uj2pEeiu6I5JfRTxxQ">
<body>Provides human-readable information on the purpose of the VL (e.g. control plane traffic).</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Tw79vD2pEeiu6I5JfRTxxQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Tw79vT2pEeiu6I5JfRTxxQ" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="_VtzSoESyEeiVGPeZpaYNtQ" name="NetworkFunction" isAbstract="true">
<ownedComment xmi:type="uml:Comment" xmi:id="_VtzSoUSyEeiVGPeZpaYNtQ" annotatedElement="_VtzSoESyEeiVGPeZpaYNtQ">
<body>A functional block within a network infrastructure that has well-defined external interfaces and well-defined functional behaviour. NOTE: In practical terms, a Network Function is today often a network node or physical appliance</body>
</ownedComment>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="_Tw5PIES0EeiVGPeZpaYNtQ" name="VirtualLink" isAbstract="true">
<ownedComment xmi:type="uml:Comment" xmi:id="_ZmFg4ES0EeiVGPeZpaYNtQ" annotatedElement="_Tw5PIES0EeiVGPeZpaYNtQ">
<body>A set of connection points along with the connectivity relationship between them and any associated target performance metrics (e.g. bandwidth, latency, QoS). NOTE: The Virtual Link can interconnect two or more entities (VNF components, VNFs, or PNFs) and it is supported by a Virtual Network (VN) of the NFVI.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_vV1x4kS0EeiVGPeZpaYNtQ" name="_linkPort" type="_il0cAES0EeiVGPeZpaYNtQ" aggregation="composite" association="_vV0jwES0EeiVGPeZpaYNtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_ijfEQES1EeiVGPeZpaYNtQ" annotatedElement="_vV1x4kS0EeiVGPeZpaYNtQ">
<body>Link ports of this VL.</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_vWIFwES0EeiVGPeZpaYNtQ" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_vWRPsES0EeiVGPeZpaYNtQ" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_CISkgIOQEeivtfz_CvwDeA" name="vlInstanceId" type="_AuYtcDkBEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_BUWeUJBCEeiKQK-pyZkERg" annotatedElement="_CISkgIOQEeivtfz_CvwDeA">
<body>Identifier of the virtual link instance.</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_DYK4AIOQEeivtfz_CvwDeA" name="vlName">
<ownedComment xmi:type="uml:Comment" xmi:id="_KZ9X8JBCEeiKQK-pyZkERg" annotatedElement="_DYK4AIOQEeivtfz_CvwDeA">
<body>An intelligent or human readable name of the virtual link instance.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ECr0oIOQEeivtfz_CvwDeA" name="vlNameAlt">
<ownedComment xmi:type="uml:Comment" xmi:id="_VXKFUJBCEeiKQK-pyZkERg" annotatedElement="_ECr0oIOQEeivtfz_CvwDeA">
<body>Additional intelligent or human readable name of the virtual link instance.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Fpc-IIOQEeivtfz_CvwDeA" name="vlType">
<ownedComment xmi:type="uml:Comment" xmi:id="_HJ2jkJWcEeiBQt0DCQoFTw" annotatedElement="_Fpc-IIOQEeivtfz_CvwDeA">
<body>Generic description of the type of Virtual Link</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_KS51gIOQEeivtfz_CvwDeA" name="vlRole">
<ownedComment xmi:type="uml:Comment" xmi:id="_LTVhcJWcEeiBQt0DCQoFTw" annotatedElement="_KS51gIOQEeivtfz_CvwDeA">
<body>Role in the network this virtual link will be providing</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_LMkBYIOQEeivtfz_CvwDeA" name="vlFunction">
<ownedComment xmi:type="uml:Comment" xmi:id="_RAClkJWcEeiBQt0DCQoFTw" annotatedElement="_LMkBYIOQEeivtfz_CvwDeA">
<body>English description of the function this specific virtual link will be providing</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_LuAhkIOQEeivtfz_CvwDeA" name="vlBandwidth">
<ownedComment xmi:type="uml:Comment" xmi:id="_WGhXMJWcEeiBQt0DCQoFTw" annotatedElement="_LuAhkIOQEeivtfz_CvwDeA">
<body>virtual link assigned (actual) bandwidth</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_NRP18IOQEeivtfz_CvwDeA" name="provStatus">
<ownedComment xmi:type="uml:Comment" xmi:id="_r2dj8JBCEeiKQK-pyZkERg" annotatedElement="_NRP18IOQEeivtfz_CvwDeA">
<body>provisioning status, used as a trigger for operational monitoring of this resource by service assurance systems valid value example: PROVISIONED, PREPROVISIONED, CAPPED</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_OGn-wIOQEeivtfz_CvwDeA" name="adminStatus">
<ownedComment xmi:type="uml:Comment" xmi:id="_wxryQJWcEeiBQt0DCQoFTw" annotatedElement="_OGn-wIOQEeivtfz_CvwDeA">
<body>Administrative status of the virtual link</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_fvq58IUNEeiRGZJrXkgR0w" name="minBitRateRequirements" type="_LsX6UDgXEeiOYfGHew0BGg">
<ownedComment xmi:type="uml:Comment" xmi:id="_Jw1XcJWdEeiBQt0DCQoFTw" annotatedElement="_fvq58IUNEeiRGZJrXkgR0w">
<body>Specifies the minimum bitrate requirements for the virtual link</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_lXNxQIUNEeiRGZJrXkgR0w" name="maxBitRateRequirements" type="_LsX6UDgXEeiOYfGHew0BGg">
<ownedComment xmi:type="uml:Comment" xmi:id="_MYlc0JWdEeiBQt0DCQoFTw" annotatedElement="_lXNxQIUNEeiRGZJrXkgR0w">
<body>Specifies the maximum bitrate requirements for the virtual link</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_mgbcEIUNEeiRGZJrXkgR0w" name="dhcpEnabled">
<ownedComment xmi:type="uml:Comment" xmi:id="_PU6EAJWdEeiBQt0DCQoFTw" annotatedElement="_mgbcEIUNEeiRGZJrXkgR0w">
<body>Indicates whether DHCP is enabled</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_H6dtcIUPEeiRGZJrXkgR0w" name="vlanTransparent">
<ownedComment xmi:type="uml:Comment" xmi:id="_SVm04JWdEeiBQt0DCQoFTw" annotatedElement="_H6dtcIUPEeiRGZJrXkgR0w">
<body>Indicates whether VLAn transparent mode is supported</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_IZdWkIUPEeiRGZJrXkgR0w" name="vlTrunkModeEnabled">
<ownedComment xmi:type="uml:Comment" xmi:id="_UihYYJWdEeiBQt0DCQoFTw" annotatedElement="_IZdWkIUPEeiRGZJrXkgR0w">
<body>Indicates whether Trunk Mode is enabled</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_I4c_sIUPEeiRGZJrXkgR0w" name="vlanIdOuter">
<ownedComment xmi:type="uml:Comment" xmi:id="_SSWHsJWsEeiBQt0DCQoFTw" annotatedElement="_I4c_sIUPEeiRGZJrXkgR0w">
<body>Outer vlan tag
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_JZPYkIUPEeiRGZJrXkgR0w" name="vlanIdInner">
<ownedComment xmi:type="uml:Comment" xmi:id="_T6rXcJWsEeiBQt0DCQoFTw" annotatedElement="_JZPYkIUPEeiRGZJrXkgR0w">
<body>Inner vlan tag</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_PV-2kJdUEei-sOl6ywWHlg" name="connectivityType" type="_ImxsgDeBEeiIfPeSAqyGdQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_iixM0JdaEei-sOl6ywWHlg" annotatedElement="_PV-2kJdUEei-sOl6ywWHlg">
<body>Identified the layerProtocol and flowPattern used by the virtual link</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="_il0cAES0EeiVGPeZpaYNtQ" name="LinkPort" isAbstract="true">
<ownedComment xmi:type="uml:Comment" xmi:id="_nXXfcES0EeiVGPeZpaYNtQ" annotatedElement="_il0cAES0EeiVGPeZpaYNtQ">
<body>Represents the port of the link.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_H85nMkS1EeiVGPeZpaYNtQ" name="_cp" type="_8naVoES0EeiVGPeZpaYNtQ" association="_H8vPIES1EeiVGPeZpaYNtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_pHN3AES1EeiVGPeZpaYNtQ" annotatedElement="_H85nMkS1EeiVGPeZpaYNtQ">
<body>CP to be connected to this link port.</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_H8_t0ES1EeiVGPeZpaYNtQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_H9AU4ES1EeiVGPeZpaYNtQ" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="_8naVoES0EeiVGPeZpaYNtQ" name="Cp">
<ownedComment xmi:type="uml:Comment" xmi:id="_Bp-3oES1EeiVGPeZpaYNtQ" annotatedElement="_8naVoES0EeiVGPeZpaYNtQ">
<body>Parent for all connection point classes.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_gQaSsIUREeiRGZJrXkgR0w" name="cpId" type="_AuYtcDkBEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_KcrfUJBDEeiKQK-pyZkERg" annotatedElement="_gQaSsIUREeiRGZJrXkgR0w">
<body>Identifier of the connection point instance.</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_g3C04IUREeiRGZJrXkgR0w" name="cpName">
<ownedComment xmi:type="uml:Comment" xmi:id="_NGPikJBDEeiKQK-pyZkERg" annotatedElement="_g3C04IUREeiRGZJrXkgR0w">
<body>Name of the Cp instance.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_haSE0IUREeiRGZJrXkgR0w" name="cpNameAlt">
<ownedComment xmi:type="uml:Comment" xmi:id="_P5gUYJBDEeiKQK-pyZkERg" annotatedElement="_haSE0IUREeiRGZJrXkgR0w">
<body>alternative name of the Cp instance.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_h5ESkIUREeiRGZJrXkgR0w" name="cpType">
<ownedComment xmi:type="uml:Comment" xmi:id="_8dp44JWWEeiBQt0DCQoFTw" annotatedElement="_h5ESkIUREeiRGZJrXkgR0w">
<body>Generic description of the type of Cp</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_idmjAIUREeiRGZJrXkgR0w" name="cpRole">
<ownedComment xmi:type="uml:Comment" xmi:id="_-6o4sJWWEeiBQt0DCQoFTw" annotatedElement="_idmjAIUREeiRGZJrXkgR0w">
<body>Role in the network this Cp will be providing</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_i5kGQIUREeiRGZJrXkgR0w" name="cpFunction">
<ownedComment xmi:type="uml:Comment" xmi:id="_ChV5oJWXEeiBQt0DCQoFTw" annotatedElement="_i5kGQIUREeiRGZJrXkgR0w">
<body>English description of the function this specific Cp will be providing</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_jazyIIUREeiRGZJrXkgR0w" name="cpDescription">
<ownedComment xmi:type="uml:Comment" xmi:id="_FfiwIJWXEeiBQt0DCQoFTw" annotatedElement="_jazyIIUREeiRGZJrXkgR0w">
<body>Cp description</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_j7onQIUREeiRGZJrXkgR0w" name="cpBandwidth">
<ownedComment xmi:type="uml:Comment" xmi:id="_Nx62AJWXEeiBQt0DCQoFTw">
<body>Cp (max? assigned?) bandwidth</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_vLv2oJdGEei-sOl6ywWHlg" annotatedElement="_j7onQIUREeiRGZJrXkgR0w">
<body>Cp assigned (actual) bandwidth</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ljD4EIUREeiRGZJrXkgR0w" name="provStatus">
<ownedComment xmi:type="uml:Comment" xmi:id="_VBTUoJBDEeiKQK-pyZkERg" annotatedElement="_ljD4EIUREeiRGZJrXkgR0w">
<body>provisioning status, used as a trigger for operational monitoring of this resource by service assurance systems valid value example: PROVISIONED, PREPROVISIONED, CAPPED</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_l-B80IUREeiRGZJrXkgR0w" name="adminsStatus">
<ownedComment xmi:type="uml:Comment" xmi:id="_Ve03UJWXEeiBQt0DCQoFTw" annotatedElement="_l-B80IUREeiRGZJrXkgR0w">
<body>Administrative status of the connection point.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_mYlK0IUREeiRGZJrXkgR0w" name="protocol">
<ownedComment xmi:type="uml:Comment" xmi:id="_XjEnAJWXEeiBQt0DCQoFTw" annotatedElement="_mYlK0IUREeiRGZJrXkgR0w">
<body>Protocol used by the Cp</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_mw0rsIUREeiRGZJrXkgR0w" name="trunkMode">
<ownedComment xmi:type="uml:Comment" xmi:id="_wLdVMJWbEeiBQt0DCQoFTw" annotatedElement="_mw0rsIUREeiRGZJrXkgR0w">
<body>Indicator whether the Cp is in trunk mode</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_nJ1BkIUREeiRGZJrXkgR0w" name="addressType">
<ownedComment xmi:type="uml:Comment" xmi:id="_yukyMJWbEeiBQt0DCQoFTw" annotatedElement="_nJ1BkIUREeiRGZJrXkgR0w">
<body>Type of address: MAC address or IP address</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_n41coIUREeiRGZJrXkgR0w" name="L2addressData" type="_X9TdUDdPEeiIfPeSAqyGdQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_1RqaAJWbEeiBQt0DCQoFTw" annotatedElement="_n41coIUREeiRGZJrXkgR0w">
<body>Only present when addressType is MAC address</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_E8BDAJddEei-sOl6ywWHlg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_E8Jl4JddEei-sOl6ywWHlg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_fFI88IUSEeiRGZJrXkgR0w" name="L3addressData" type="_4oResDdPEeiIfPeSAqyGdQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_5QoxAJWbEeiBQt0DCQoFTw" annotatedElement="_fFI88IUSEeiRGZJrXkgR0w">
<body>Only present when addressType is IP address</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GNTrwJddEei-sOl6ywWHlg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GNeq4JddEei-sOl6ywWHlg" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="_7pUNEDa7EeivvI-m1BaAbA" name="Cpd " isAbstract="true">
<ownedComment xmi:type="uml:Comment" xmi:id="_R0MsAEbwEei7eo5RdnNiBQ" annotatedElement="_7pUNEDa7EeivvI-m1BaAbA">
<body>A Cpd information element describes network connectivity to a compute resource or a VL. This is an abstract class used
as parent for the various Cpd classes.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_knSmcDa8EeivvI-m1BaAbA" name="cpdId" type="_AuYtcDkBEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_XFxTUEbwEei7eo5RdnNiBQ" annotatedElement="_knSmcDa8EeivvI-m1BaAbA">
<body>Identifier of this Cpd information element.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_lRLQ8Da8EeivvI-m1BaAbA" name="cpRole">
<ownedComment xmi:type="uml:Comment" xmi:id="_Zs7i0EbwEei7eo5RdnNiBQ" annotatedElement="_lRLQ8Da8EeivvI-m1BaAbA">
<body>Identifies the role of the port in the context of the traffic flow patterns in the VNF or parent NS.

For example a VNF with a tree flow pattern within the VNF will have legal cpRoles of ROOT and LEAF.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9HlFYDa8EeivvI-m1BaAbA"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9HrMADa8EeivvI-m1BaAbA" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_luvWsDa8EeivvI-m1BaAbA" name="description">
<ownedComment xmi:type="uml:Comment" xmi:id="_cEl9wEbwEei7eo5RdnNiBQ" annotatedElement="_luvWsDa8EeivvI-m1BaAbA">
<body>Provides human-readable information on the purpose of the CP (e.g. CP for control plane traffic).
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_-jjUIDa8EeivvI-m1BaAbA"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-jozsDa8EeivvI-m1BaAbA" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_oWHBkDa8EeivvI-m1BaAbA" name="cpProtocol" type="_PjIasDa9EeivvI-m1BaAbA">
<ownedComment xmi:type="uml:Comment" xmi:id="_eZqXsEbwEei7eo5RdnNiBQ" annotatedElement="_oWHBkDa8EeivvI-m1BaAbA">
<body>Identifies the protocol layering information the CP uses for connectivity purposes and associated information. There shall be one cpProtocol for each layer protocol as indicated by the attribute layerProtocol.

Editor's note: the attribute "layerProtocol" still needs further discussion and not included in this table.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DooXkDa9EeivvI-m1BaAbA" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DospADa9EeivvI-m1BaAbA" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_pJTZEDa8EeivvI-m1BaAbA" name="trunkMode">
<ownedComment xmi:type="uml:Comment" xmi:id="_gaoJ4EbwEei7eo5RdnNiBQ" annotatedElement="_pJTZEDa8EeivvI-m1BaAbA">
<body>Information about whether the CP instantiated from this CPD is in Trunk mode (802.1Q or other).
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_p8meQDa8EeivvI-m1BaAbA" name="allowedAddressData" type="_2aIggDa9EeivvI-m1BaAbA">
<ownedComment xmi:type="uml:Comment" xmi:id="_kI39QEbwEei7eo5RdnNiBQ" annotatedElement="_p8meQDa8EeivvI-m1BaAbA">
<body>For specifying floating IP(s) to be shared among Cpds, which are reserved for vnfReservedCpd described in the VNFD.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_H0-cMDa9EeivvI-m1BaAbA"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_H1CtoDa9EeivvI-m1BaAbA" value="*"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="_0AbUYDnBEeiWMf5FLWfdLA" name="AffinityOrAntiAffinityGroup">
<ownedComment xmi:type="uml:Comment" xmi:id="_L_HiIDnCEeiWMf5FLWfdLA" annotatedElement="_0AbUYDnBEeiWMf5FLWfdLA">
<body>The AffinityOrAntiAffinityGroup class describes the affinity or anti-affinity relationship.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_6g1tYDnBEeiWMf5FLWfdLA" name="groupId" type="_AuYtcDkBEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_6g1tYTnBEeiWMf5FLWfdLA" annotatedElement="_6g1tYDnBEeiWMf5FLWfdLA">
<body>Identifies an affinity or anti-affinity group to which the affinity or anti-affinity rule applies.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_6g3ikDnBEeiWMf5FLWfdLA" name="type" type="_tMoywDnJEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_6g3ikTnBEeiWMf5FLWfdLA" annotatedElement="_6g3ikDnBEeiWMf5FLWfdLA">
<body>Specifies whether the rule is an affinity rule or an anti-affinity rule.</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_6g4wsDnBEeiWMf5FLWfdLA" name="scope" type="_B3kJsDnKEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_6g4wsTnBEeiWMf5FLWfdLA" annotatedElement="_6g4wsDnBEeiWMf5FLWfdLA">
<body>Specifies the scope of the rule.</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
</packagedElement>
<packagedElement xmi:type="uml:Package" xmi:id="_QVhWcDOHEei5Af8DcjrhIQ" name="Associations">
<packagedElement xmi:type="uml:Association" xmi:id="_vV0jwES0EeiVGPeZpaYNtQ" name="VirtualLinkHasLinkPort" memberEnd="_vV1x4kS0EeiVGPeZpaYNtQ _vWZykES0EeiVGPeZpaYNtQ">
<eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_vV1x4ES0EeiVGPeZpaYNtQ" source="org.eclipse.papyrus">
<details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_vV1x4US0EeiVGPeZpaYNtQ" key="nature" value="UML_Nature"/>
</eAnnotations>
<ownedEnd xmi:type="uml:Property" xmi:id="_vWZykES0EeiVGPeZpaYNtQ" name="_vl" type="_Tw5PIES0EeiVGPeZpaYNtQ" association="_vV0jwES0EeiVGPeZpaYNtQ"/>
</packagedElement>
<packagedElement xmi:type="uml:Association" xmi:id="_H8vPIES1EeiVGPeZpaYNtQ" name="LinkPortTerminatesOnCp" memberEnd="_H85nMkS1EeiVGPeZpaYNtQ _H9AU4US1EeiVGPeZpaYNtQ">
<eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_H85nMES1EeiVGPeZpaYNtQ" source="org.eclipse.papyrus">
<details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_H85nMUS1EeiVGPeZpaYNtQ" key="nature" value="UML_Nature"/>
</eAnnotations>
<ownedEnd xmi:type="uml:Property" xmi:id="_H9AU4US1EeiVGPeZpaYNtQ" name="_linkPort" type="_il0cAES0EeiVGPeZpaYNtQ" association="_H8vPIES1EeiVGPeZpaYNtQ">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_SYdnIES1EeiVGPeZpaYNtQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_SYrpkES1EeiVGPeZpaYNtQ" value="1"/>
</ownedEnd>
</packagedElement>
</packagedElement>
<packagedElement xmi:type="uml:Package" xmi:id="_Sgc88DOHEei5Af8DcjrhIQ" name="Diagrams">
<ownedComment xmi:type="uml:Comment" xmi:id="_5VvF8H7-EeifJIHxnlj6Cg" annotatedElement="_Sgc88DOHEei5Af8DcjrhIQ">
<body>Fields specific to fault events.</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_L3adsJzVEeiLvPKMh61-Bg">
<body>Fill in attribute defs and check attribute multiplicity</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_Vb-k0KZEEeily5uFlujj3Q">
<body>Discuss spec event data type (no class)</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_thIKYKcJEeiFp-jDq2Hw-A">
<body>multiplicity (0..1 or 0..*) for highend and lowend of latency bucket</body>
</ownedComment>
<packagedElement xmi:type="uml:DataType" xmi:id="_zD-Z0KcHEeiFp-jDq2Hw-A" name="LatencyBucketMeasure">
<ownedComment xmi:type="uml:Comment" xmi:id="_a_bM8KcNEeiFp-jDq2Hw-A" annotatedElement="_zD-Z0KcHEeiFp-jDq2Hw-A">
<body>The latencyBucketMeasure datatype consists of the following fields which describe the number of counts falling within a defined latency bucket</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_7S8mYKcHEeiFp-jDq2Hw-A" name="countsInTheBucket" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_lgTHgKcJEeiFp-jDq2Hw-A" annotatedElement="_7S8mYKcHEeiFp-jDq2Hw-A">
<body>Number of counts falling within a defined latency bucket</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_76OBwKcHEeiFp-jDq2Hw-A" name="highEndOfLatencyBucket" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_naHv4KcJEeiFp-jDq2Hw-A" annotatedElement="_76OBwKcHEeiFp-jDq2Hw-A">
<body>High end of bucket range (typically in ms)</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_qdcW8KcJEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_qdjrsKcJEeiFp-jDq2Hw-A" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_8cpZYKcHEeiFp-jDq2Hw-A" name="lowEndOfLatencyBucket" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_pOiT0KcJEeiFp-jDq2Hw-A" annotatedElement="_8cpZYKcHEeiFp-jDq2Hw-A">
<body>Low end of bucket range (typically in ms)</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_sYsisKcJEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_sY2TsKcJEeiFp-jDq2Hw-A" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_-7CVIKcMEeiFp-jDq2Hw-A" name="Load">
<ownedComment xmi:type="uml:Comment" xmi:id="_Y3U4AKcNEeiFp-jDq2Hw-A" annotatedElement="_-7CVIKcMEeiFp-jDq2Hw-A">
<body>The load datatype provides metrics on system cpu and io utilization obtained using /proc/loadavg</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_E2dKsKcNEeiFp-jDq2Hw-A" name="longTerm" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_TOSL4KcNEeiFp-jDq2Hw-A" annotatedElement="_E2dKsKcNEeiFp-jDq2Hw-A">
<body>number of jobs in the run queue (state R, cpu utilization) or waiting for disk I/O (state D, io utilization) averaged over 15 minutes using /proc/loadavg</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_dBRv8KcNEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_dBX2kKcNEeiFp-jDq2Hw-A" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_FgDhUKcNEeiFp-jDq2Hw-A" name="midTerm" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_U_m_kKcNEeiFp-jDq2Hw-A" annotatedElement="_FgDhUKcNEeiFp-jDq2Hw-A">
<body>number of jobs in the run queue (state R, cpu utilization) or waiting for disk I/O (state D, io utilization) averaged over 5 minutes using /proc/loadavg</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_eijVcKcNEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_eioN8KcNEeiFp-jDq2Hw-A" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_GHjmMKcNEeiFp-jDq2Hw-A" name="shortTerm" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_WhlIoKcNEeiFp-jDq2Hw-A" annotatedElement="_GHjmMKcNEeiFp-jDq2Hw-A">
<body>number of jobs in the run queue (state R, cpu utilization) or waiting for disk I/O (state D, io utilization) averaged over 1 minute using /proc/loadavg</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_gXyYwKcNEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_gYAbMKcNEeiFp-jDq2Hw-A" value="1"/>
</ownedAttribute>
</packagedElement>
</packagedElement>
<packagedElement xmi:type="uml:Package" xmi:id="_Uu_4IDOHEei5Af8DcjrhIQ" name="Interfaces"/>
<packagedElement xmi:type="uml:Package" xmi:id="_W8GB0DOHEei5Af8DcjrhIQ" name="TypeDefinitions">
<packagedElement xmi:type="uml:DataType" xmi:id="_AuYtcDkBEeiWMf5FLWfdLA" name="Identifier"/>
<packagedElement xmi:type="uml:DataType" xmi:id="_vxJ9ADafEei23_xWdimG9w" name="KeyValuePair "/>
<packagedElement xmi:type="uml:DataType" xmi:id="_z8XDAJQyEei6kI-JPNdeuw" name="NamedHashMap">
<ownedComment xmi:type="uml:Comment" xmi:id="_ZOtfMJQzEei6kI-JPNdeuw" annotatedElement="_z8XDAJQyEei6kI-JPNdeuw">
<body>namedHashMap [ ] - The namedHashmap datatype is a hashMap which is associated with and described by a name. 
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_NyescJQzEei6kI-JPNdeuw" name="name">
<ownedComment xmi:type="uml:Comment" xmi:id="_a403oJQzEei6kI-JPNdeuw" annotatedElement="_NyescJQzEei6kI-JPNdeuw">
<body>name - Name for the array of name-value pairs.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_OcpDwJQzEei6kI-JPNdeuw" name="hashMap" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_cysjUJQzEei6kI-JPNdeuw" annotatedElement="_OcpDwJQzEei6kI-JPNdeuw">
<body>hashMap - One or more key:value pairs.

Note: in ATTServiceSpecification - VesEventListener v5.4.1 type = field [].
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_VihhUJQzEei6kI-JPNdeuw" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ViqEMJQzEei6kI-JPNdeuw" value="*"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_P-qXMD2vEeiu6I5JfRTxxQ" name="SecurityParameters">
<ownedComment xmi:type="uml:Comment" xmi:id="_P-qXMT2vEeiu6I5JfRTxxQ" annotatedElement="_P-qXMD2vEeiu6I5JfRTxxQ">
<body>The SecurityParameters contains the signature of a NSD, VLD, PNFD or VNFFGD instance together with information required to validate the signature.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_P-qXMj2vEeiu6I5JfRTxxQ" name="signature">
<ownedComment xmi:type="uml:Comment" xmi:id="_P-qXMz2vEeiu6I5JfRTxxQ" annotatedElement="_P-qXMj2vEeiu6I5JfRTxxQ">
<body>Provides the signature of the signed part of the descriptor.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_P-qXND2vEeiu6I5JfRTxxQ" name="algorithm">
<ownedComment xmi:type="uml:Comment" xmi:id="_P-qXNT2vEeiu6I5JfRTxxQ" annotatedElement="_P-qXND2vEeiu6I5JfRTxxQ">
<body>Identifies the algorithm used to compute the signature.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_P-qXNj2vEeiu6I5JfRTxxQ" name="certificate">
<ownedComment xmi:type="uml:Comment" xmi:id="_P-qXNz2vEeiu6I5JfRTxxQ" annotatedElement="_P-qXNj2vEeiu6I5JfRTxxQ">
<body>Provides a certificate or a reference to a certificate to validate the signature.
NOTE: Cardinality of 0 corresponds to the case where the certificate is provided by means outside the NSD</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_P-qXOD2vEeiu6I5JfRTxxQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_P-qXOT2vEeiu6I5JfRTxxQ" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_RVZi0D2-Eeiu6I5JfRTxxQ" name="LocalAffinityOrAntiAffinityRule">
<ownedAttribute xmi:type="uml:Property" xmi:id="_RVZi0T2-Eeiu6I5JfRTxxQ" name="type">
<ownedComment xmi:type="uml:Comment" xmi:id="_RVZi0j2-Eeiu6I5JfRTxxQ" annotatedElement="_RVZi0T2-Eeiu6I5JfRTxxQ">
<body>Specifies whether the rule is an affinity rule or an anti-affinity rule.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_RVZi0z2-Eeiu6I5JfRTxxQ" name="scope">
<ownedComment xmi:type="uml:Comment" xmi:id="_RVZi1D2-Eeiu6I5JfRTxxQ" annotatedElement="_RVZi0z2-Eeiu6I5JfRTxxQ">
<body>Specifies the scope of the rule.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_nPNHsD2-Eeiu6I5JfRTxxQ" name="LinkBitrateRequirements">
<ownedComment xmi:type="uml:Comment" xmi:id="_nPNHsT2-Eeiu6I5JfRTxxQ" annotatedElement="_nPNHsD2-Eeiu6I5JfRTxxQ">
<body>The LinkBitrateRequirements datatype describes the requirements in terms of bitrate for a Virtual Link.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_nPNHsj2-Eeiu6I5JfRTxxQ" name="root">
<ownedComment xmi:type="uml:Comment" xmi:id="_nPNHsz2-Eeiu6I5JfRTxxQ" annotatedElement="_nPNHsj2-Eeiu6I5JfRTxxQ">
<body>Specifies the throughput requirement of the link (e.g. bitrate of E-Line, root bitrate of E-Tree, aggregate capacity of E-LAN).</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_nPNHtD2-Eeiu6I5JfRTxxQ" name="leaf">
<ownedComment xmi:type="uml:Comment" xmi:id="_nPNHtT2-Eeiu6I5JfRTxxQ" annotatedElement="_nPNHtD2-Eeiu6I5JfRTxxQ">
<body>Specifies the throughput requirement of leaf connections to the link when applicable to the connectivity type (e.g. for E-Tree and E-LAN branches).
NOTE: The present document does not specify the means to declare different bitrate requirements for leaf connections (e.g. E-LAN leaves).</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_nPNHtj2-Eeiu6I5JfRTxxQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_nPNHtz2-Eeiu6I5JfRTxxQ" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:PrimitiveType" xmi:id="_oXexoD2uEeiu6I5JfRTxxQ" name="Version">
<ownedComment xmi:type="uml:Comment" xmi:id="_oXexoT2uEeiu6I5JfRTxxQ" annotatedElement="_oXexoD2uEeiu6I5JfRTxxQ">
<body>This primitive type defines the version of an element.</body>
</ownedComment>
</packagedElement>
<packagedElement xmi:type="uml:PrimitiveType" xmi:id="_YQwQ0D0NEeiWMf5FLWfdLA" name="Uuid">
<ownedComment xmi:type="uml:Comment" xmi:id="_YQwQ0T0NEeiWMf5FLWfdLA" annotatedElement="_YQwQ0D0NEeiWMf5FLWfdLA">
<body>type string {
pattern
'[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}'; }

A Universally Unique IDentifier in the string representation defined in RFC 4122. The canonical representation uses lowercase characters.

The following is an example of a UUID in string representation: f81d4fae-7dec-11d0-a765-00a0c91e6bf6 ";
reference
"RFC 4122: A Universally Unique IDentifier (UUID) URN Namespace"</body>
</ownedComment>
</packagedElement>
<packagedElement xmi:type="uml:PrimitiveType" xmi:id="_8dlAoD0TEeiWMf5FLWfdLA" name="Uri">
<ownedComment xmi:type="uml:Comment" xmi:id="_8dlAoT0TEeiWMf5FLWfdLA" annotatedElement="_8dlAoD0TEeiWMf5FLWfdLA">
<body>type string;

The uri type represents a Uniform Resource Identifier (URI) as defined by STD 66.

Objects using the uri type MUST be in US-ASCII encoding, and MUST be normalized as described by RFC 3986 Sections 6.2.1, 6.2.2.1, and 6.2.2.2. All unnecessary percent-encoding is removed, and all case-insensitive characters are set to lowercase except for hexadecimal digits, which are normalized to uppercase as described in Section 6.2.2.1.

The purpose of this normalization is to help provide unique URIs. Note that this normalization is not sufficient to provide uniqueness. Two URIs that are textually distinct after this normalization may still be equivalent.

Objects using the uri type may restrict the schemes that they permit. For example, 'data:' and 'urn:' schemes might not be appropriate.

A zero-length URI is not a valid URI. This can be used to express 'URI absent' where required.

In the value set and its semantics, this type is equivalent to the Uri SMIv2 textual convention defined in RFC 5017.
reference
"RFC 3986: Uniform Resource Identifier (URI): Generic Syntax
RFC 3305: Report from the Joint W3C/IETF URI Planning Interest Group: Uniform Resource Identifiers (URIs), URLs, and Uniform Resource Names (URNs): Clarifications and Recommendations
RFC 5017: MIB Textual Conventions for Uniform Resource Identifiers (URIs)"</body>
</ownedComment>
</packagedElement>
<packagedElement xmi:type="uml:PrimitiveType" xmi:id="_8rNJgD2uEeiu6I5JfRTxxQ" name="Rule">
<ownedComment xmi:type="uml:Comment" xmi:id="_8rNJgT2uEeiu6I5JfRTxxQ" annotatedElement="_8rNJgD2uEeiu6I5JfRTxxQ">
<body>Primitive type describing a rule.</body>
</ownedComment>
</packagedElement>
<packagedElement xmi:type="uml:PrimitiveType" xmi:id="_p3EKoDm0EeiWMf5FLWfdLA" name="Number">
<ownedComment xmi:type="uml:Comment" xmi:id="_xMGegDm0EeiWMf5FLWfdLA" annotatedElement="_p3EKoDm0EeiWMf5FLWfdLA">
<body>This primitive type is a superset of the standard UML numbering primitives, e.g. Integer and Real.</body>
</ownedComment>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="_2x4t0InuEeiOe-BKGdv_Yg" name="Priority">
<ownedComment xmi:type="uml:Comment" xmi:id="_0Wo3YJEVEei9Vqs7Ti8Wxg" annotatedElement="_2x4t0InuEeiOe-BKGdv_Yg">
<body>priority - processing priority.
</body>
</ownedComment>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_9n34wInvEeiOe-BKGdv_Yg" name="HIGH"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Fmi_gInwEeiOe-BKGdv_Yg" name="MEDIUM"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_HCziIInwEeiOe-BKGdv_Yg" name="NORMAL"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_H65nwInwEeiOe-BKGdv_Yg" name="LOW"/>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_ImxsgDeBEeiIfPeSAqyGdQ" name="ConnectivityType">
<ownedComment xmi:type="uml:Comment" xmi:id="_8qt_MK0pEeiQr7XQ2okIrA" annotatedElement="_ImxsgDeBEeiIfPeSAqyGdQ">
<body>The ConnectivityType datatype specifies the protocol exposed by a VL and the flow pattern supported by the VL.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_N61nIDeBEeiIfPeSAqyGdQ" name="layerProtocol" type="_tFQGcDnLEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_XlK-cDeBEeiIfPeSAqyGdQ" annotatedElement="_N61nIDeBEeiIfPeSAqyGdQ">
<body>Identifies the protocol this VL gives access to (Ethernet, MPLS, ODU2, IPV4, IPV6, Pseudo-Wire).
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_O2y5EDeBEeiIfPeSAqyGdQ" name="flowPattern">
<ownedComment xmi:type="uml:Comment" xmi:id="_fUBggDeBEeiIfPeSAqyGdQ" annotatedElement="_O2y5EDeBEeiIfPeSAqyGdQ">
<body>Identifies the flow pattern of the connectivity (Line, Tree, Mesh).</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ca4JIDeBEeiIfPeSAqyGdQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ca7zgDeBEeiIfPeSAqyGdQ" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_4oResDdPEeiIfPeSAqyGdQ" name="L3AddressData">
<ownedComment xmi:type="uml:Comment" xmi:id="_wIQCwGNfEeio9amveq0yWQ" annotatedElement="_4oResDdPEeiIfPeSAqyGdQ">
<body>The L3AddressData information element supports providing information about Layer 3 level addressing scheme and parameters applicable to a CP.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_-b8GcDdPEeiIfPeSAqyGdQ" name="ipAddressAssignment">
<ownedComment xmi:type="uml:Comment" xmi:id="_MJgCoDdQEeiIfPeSAqyGdQ" annotatedElement="_-b8GcDdPEeiIfPeSAqyGdQ">
<body>Specify if the address assignment is the responsibility of management and orchestration function or not.

If it is set to True, it is the management and orchestration function responsibility.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="__BqCoDdPEeiIfPeSAqyGdQ" name="floatingIpActivated">
<ownedComment xmi:type="uml:Comment" xmi:id="_QCBzYDdQEeiIfPeSAqyGdQ" annotatedElement="__BqCoDdPEeiIfPeSAqyGdQ">
<body>Specify if the floating IP scheme is activated on the CP or not.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="__o0JQDdPEeiIfPeSAqyGdQ" name="ipAddressType" type="_ArwocDnLEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_WilWUDdQEeiIfPeSAqyGdQ" annotatedElement="__o0JQDdPEeiIfPeSAqyGdQ">
<body>Define address type.

NOTE: The address type should be aligned with the address type supported by the layerProtocol attribute of the parent Cpd.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_UUz3MDdQEeiIfPeSAqyGdQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_UU4vsDdQEeiIfPeSAqyGdQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Ag8rIDdQEeiIfPeSAqyGdQ" name="numberOfIpAddress">
<ownedComment xmi:type="uml:Comment" xmi:id="_cKk5kDdQEeiIfPeSAqyGdQ" annotatedElement="_Ag8rIDdQEeiIfPeSAqyGdQ">
<body>Minimum number of IP addresses to be assigned based on this L3AddressData information element.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_aPbbgDdQEeiIfPeSAqyGdQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_aPfF4DdQEeiIfPeSAqyGdQ" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_X9TdUDdPEeiIfPeSAqyGdQ" name="L2AddressData">
<ownedAttribute xmi:type="uml:Property" xmi:id="_ifaxMDdPEeiIfPeSAqyGdQ" name="macAddressAssignment">
<ownedComment xmi:type="uml:Comment" xmi:id="_oHJ1wDdPEeiIfPeSAqyGdQ" annotatedElement="_ifaxMDdPEeiIfPeSAqyGdQ">
<body>Specify if the MAC address assignment is the responsibility of management and orchestration function or not.

If it is set to True, it is the management and orchestration function responsibility.

If it is set to False, it will be provided by an external entity, e.g. OSS/BSS. 
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:PrimitiveType" xmi:id="_Dg2QIJaaEeiGg_moIHe9Sw" name="Object">
<ownedComment xmi:type="uml:Comment" xmi:id="_LwOsYJaaEeiGg_moIHe9Sw" annotatedElement="_Dg2QIJaaEeiGg_moIHe9Sw">
<body>object - objects are model elements that represent instances of a class or of classes</body>
</ownedComment>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_W7iKYJaeEeiGg_moIHe9Sw" name="Key">
<ownedComment xmi:type="uml:Comment" xmi:id="_yjHqEJahEeiGg_moIHe9Sw" annotatedElement="_W7iKYJaeEeiGg_moIHe9Sw">
<body>key - the key datatype is a tuple which provides the name of a key along with its value and relative order.
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_HR738JahEeiGg_moIHe9Sw" name="keyName">
<ownedComment xmi:type="uml:Comment" xmi:id="_0osPcJahEeiGg_moIHe9Sw" annotatedElement="_HR738JahEeiGg_moIHe9Sw">
<body>keyName - Name of the key.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_J6eAcJahEeiGg_moIHe9Sw" name="keyOrder">
<ownedComment xmi:type="uml:Comment" xmi:id="_2Uj7YJahEeiGg_moIHe9Sw" annotatedElement="_J6eAcJahEeiGg_moIHe9Sw">
<body>keyOrder - Relative sequence or order of the key (with respect to other keys).
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_vMN_sJahEeiGg_moIHe9Sw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_vMcpMJahEeiGg_moIHe9Sw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_KpkiIJahEeiGg_moIHe9Sw" name="keyValue">
<ownedComment xmi:type="uml:Comment" xmi:id="_4XZV0JahEeiGg_moIHe9Sw" annotatedElement="_KpkiIJahEeiGg_moIHe9Sw">
<body>keyValue - Value of the key.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_uFPwkJahEeiGg_moIHe9Sw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_uFSz4JahEeiGg_moIHe9Sw" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_LsX6UDgXEeiOYfGHew0BGg" name="LinkBitrateRequirements">
<ownedComment xmi:type="uml:Comment" xmi:id="_TNBy4DgYEeiOYfGHew0BGg" annotatedElement="_LsX6UDgXEeiOYfGHew0BGg">
<body>The LinkBitrateRequirements information element describes the requirements in terms of bitrate for a VL.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_TsnHUDgXEeiOYfGHew0BGg" name="root" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_m5ImkDgXEeiOYfGHew0BGg" annotatedElement="_TsnHUDgXEeiOYfGHew0BGg">
<body>Throughput requirement of the link (e.g. bitrate of E-Line, root bitrate of E-Tree, aggregate capacity of E-LAN).
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_W5c2wDgXEeiOYfGHew0BGg" name="leaf" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_MagWMDgYEeiOYfGHew0BGg" annotatedElement="_W5c2wDgXEeiOYfGHew0BGg">
<body>Throughput requirement of leaf connections to the link when applicable to the connectivity type (e.g. for E-Tree and E?LAN branches).

NOTE: The present document does not specify the means to declare different bitrate requirements for leaf connections (e.g. E-LAN leaves).
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GlJsYDgYEeiOYfGHew0BGg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GlNWwDgYEeiOYfGHew0BGg" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="_tFQGcDnLEeiWMf5FLWfdLA" name="LayerProtocol">
<ownedComment xmi:type="uml:Comment" xmi:id="_zLXwIDnLEeiWMf5FLWfdLA" annotatedElement="_tFQGcDnLEeiWMf5FLWfdLA">
<body>Identifies the protocol this VL gives access to </body>
</ownedComment>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_0VFxQDnLEeiWMf5FLWfdLA" name="ETHERNET"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_2M_uEDnLEeiWMf5FLWfdLA" name="MPLS"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_46OwYDnLEeiWMf5FLWfdLA" name="ODU2"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_6gEFwDnLEeiWMf5FLWfdLA" name="IPV4"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_95b1UDnLEeiWMf5FLWfdLA" name="IPV6"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="__bv8oDnLEeiWMf5FLWfdLA" name="PSEUDOWIRE"/>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_7hn1IDd1EeiIfPeSAqyGdQ" name="LocalAffinityOrAntiAffinityRule">
<ownedComment xmi:type="uml:Comment" xmi:id="_20J6EGNfEeio9amveq0yWQ" annotatedElement="_7hn1IDd1EeiIfPeSAqyGdQ">
<body>The LocalAffinityOrAntiAffinityRule describes the affinity or anti-affinity rule applicable between the virtualization containers to be created based on a particular VDU, or between internal VLs to be created based on a particular VnfVirtualLinkDesc. 
Per VNF, the affinity/anti-affinity rules defined using this information element, using the AffinityOrAntiAffinityGroup information element, and using the placement constraints in the GrantLifecycleOperation as defined in ETSI GS NFV IFA 007 [i.3] should be conflict-free. In case of conflicts, the placement constraints in the GrantLifecycleOperation shall take precedence. 
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_EjJgADd2EeiIfPeSAqyGdQ" name="type" type="_tMoywDnJEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_uoCBoDd3EeiIfPeSAqyGdQ" annotatedElement="_EjJgADd2EeiIfPeSAqyGdQ">
<body>Specifies whether the rule is an affinity rule or an anti-affinity rule.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_F5b9gDd2EeiIfPeSAqyGdQ" name="scope" type="_B3kJsDnKEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_yop-cDd3EeiIfPeSAqyGdQ" annotatedElement="_F5b9gDd2EeiIfPeSAqyGdQ">
<body>Specifies the scope of the rule.</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="_Qmf1kDnFEeiWMf5FLWfdLA" name="NetworkType">
<ownedComment xmi:type="uml:Comment" xmi:id="_VN9I4DnFEeiWMf5FLWfdLA" annotatedElement="_Qmf1kDnFEeiWMf5FLWfdLA">
<body>Type of network supported.</body>
</ownedComment>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_W5tgEDnFEeiWMf5FLWfdLA" name="VLAN"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Z6H9EDnFEeiWMf5FLWfdLA" name="VXLAN"/>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_PjIasDa9EeivvI-m1BaAbA" name="CpProtocolData">
<ownedComment xmi:type="uml:Comment" xmi:id="_kSumQGNfEeio9amveq0yWQ" annotatedElement="_PjIasDa9EeivvI-m1BaAbA">
<body>A CpProtocolData information element describes and associates the protocol layer that a CP uses together with other protocol and connection point information.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_oa2iMDa9EeivvI-m1BaAbA" name="associatedLayerProtocol" type="_tFQGcDnLEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_zWCdYDa9EeivvI-m1BaAbA" annotatedElement="_oa2iMDa9EeivvI-m1BaAbA">
<body>One of the values of the attribute layerProtocol of the Cpd IE.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_pMKqYDa9EeivvI-m1BaAbA" name="addressData" type="_2aIggDa9EeivvI-m1BaAbA">
<ownedComment xmi:type="uml:Comment" xmi:id="_06IGUDa9EeivvI-m1BaAbA" annotatedElement="_pMKqYDa9EeivvI-m1BaAbA">
<body>Provides information on the addresses to be assigned to the CP(s) instantiated from the CPD.</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_xOJj0Da9EeivvI-m1BaAbA"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_xORfoDa9EeivvI-m1BaAbA" value="*"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_2aIggDa9EeivvI-m1BaAbA" name="AddressData">
<ownedComment xmi:type="uml:Comment" xmi:id="_Wv89wGNfEeio9amveq0yWQ" annotatedElement="_2aIggDa9EeivvI-m1BaAbA">
<body>The AddressData information element supports providing information about the addressing scheme and parameters applicable to a CP. </body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_A8dPwDa-EeivvI-m1BaAbA" name="addressType" type="_AuYtcDkBEeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_dD2YQDa-EeivvI-m1BaAbA" annotatedElement="_A8dPwDa-EeivvI-m1BaAbA">
<body>Describes the type of the address to be assigned to the CP instantiated from the parent CPD. The content type shall be aligned with the address type supported by the layerProtocol attribute of the parent CPD.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_BxokQDa-EeivvI-m1BaAbA" name="l2AddressData" type="_X9TdUDdPEeiIfPeSAqyGdQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_O8qjQDdPEeiIfPeSAqyGdQ" annotatedElement="_BxokQDa-EeivvI-m1BaAbA">
<body>Provides the information on the MAC addresses to be assigned to the CP(s) instantiated from the parent CPD.
Shall be present when the addressType is MAC address.</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_L3I8wDdPEeiIfPeSAqyGdQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_L3NOMDdPEeiIfPeSAqyGdQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_CUeLkDa-EeivvI-m1BaAbA" name="l3AddressData" type="_4oResDdPEeiIfPeSAqyGdQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_UN-r4DdPEeiIfPeSAqyGdQ" annotatedElement="_CUeLkDa-EeivvI-m1BaAbA">
<body>Provides the information on the IP addresses to be assigned to the CP instantiated from the parent CPD.
Shall be present when the addressType is IP address.</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_SKejEDdPEeiIfPeSAqyGdQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_SKiNcDdPEeiIfPeSAqyGdQ" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="_tMoywDnJEeiWMf5FLWfdLA" name="RuleType">
<ownedComment xmi:type="uml:Comment" xmi:id="_xofTADnJEeiWMf5FLWfdLA" annotatedElement="_tMoywDnJEeiWMf5FLWfdLA">
<body>Specifies the type of rule.</body>
</ownedComment>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_zZIKMDnJEeiWMf5FLWfdLA" name="AFFINITY"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_1qskMDnJEeiWMf5FLWfdLA" name="ANTI_AFFINITY"/>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="_B3kJsDnKEeiWMf5FLWfdLA" name="RuleScope">
<ownedComment xmi:type="uml:Comment" xmi:id="_F2zmcDnKEeiWMf5FLWfdLA" annotatedElement="_B3kJsDnKEeiWMf5FLWfdLA">
<body>Defines the scope of the rule.</body>
</ownedComment>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_IJCHwDnKEeiWMf5FLWfdLA" name="NFVI_POP"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_LgsnIDnKEeiWMf5FLWfdLA" name="ZONE"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_ON-FsDnKEeiWMf5FLWfdLA" name="ZONE_GROUP"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_RUyssDnKEeiWMf5FLWfdLA" name="NFVI_NODE"/>
</packagedElement>
</packagedElement>
<packagedElement xmi:type="uml:Package" xmi:id="_mi5hgIbfEei-x_BD9U-ssQ" name="Event">
<packagedElement xmi:type="uml:Package" xmi:id="_rmBdIIbfEei-x_BD9U-ssQ" name="EventObjectClasses">
<packagedElement xmi:type="uml:Class" xmi:id="_PmIOkH7uEeifJIHxnlj6Cg" name="Event">
<ownedComment xmi:type="uml:Comment" xmi:id="_O8t0wIncEeiOe-BKGdv_Yg" annotatedElement="_PmIOkH7uEeifJIHxnlj6Cg">
<body>An ONAP event is an aggregation of a header and a message. Event messages may be published to a message broker by service instances, resource instances, or ONAP platform components. Service or resource instances may be in support of network infrastructure or customer services. Interested platforms may subscribe to events on the message broker (e.g. Centralized Testing Platform CTP) may see an event on a service VNF instance and perform an automated test as part of a closed loop management policy. Events are unique and distinguishable from one another.

ONAP event messages are serialized as a unicode ASCII character string which may be formatted as JSON, XML, etc... Appropriate schemas will be supplied. 
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_VhI0cH7uEeifJIHxnlj6Cg" name="commonEventHeader" type="_f1L3IH7uEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_jt6HYJEREei9Vqs7Ti8Wxg" annotatedElement="_VhI0cH7uEeifJIHxnlj6Cg">
<body>commonEventHeader - Fields common to all events.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Ylum0H7uEeifJIHxnlj6Cg" name="commonEventBody" type="_h_gkMH7vEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_WleQsInuEeiOe-BKGdv_Yg" annotatedElement="_Ylum0H7uEeifJIHxnlj6Cg">
<body>commonEventBody - Heartbeat is an event header only with no event body [0..1]
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_x9KKMJGnEeiUeLUnFxb3Bg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_x9UiQJGnEeiUeLUnFxb3Bg" value="1"/>
</ownedAttribute>
</packagedElement>
</packagedElement>
<packagedElement xmi:type="uml:Package" xmi:id="_wZkrsIbfEei-x_BD9U-ssQ" name="EventTypeDefinitions">
<packagedElement xmi:type="uml:DataType" xmi:id="_f1L3IH7uEeifJIHxnlj6Cg" name="CommonEventHeader">
<ownedComment xmi:type="uml:Comment" xmi:id="_ryk2MH7uEeifJIHxnlj6Cg" annotatedElement="_f1L3IH7uEeifJIHxnlj6Cg">
<body>commonEventHeader - Fields common to all events.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_DLbYsH7_EeifJIHxnlj6Cg" name="domain" type="_IInt8IngEeiOe-BKGdv_Yg">
<ownedComment xmi:type="uml:Comment" xmi:id="_mw2YMKY_Eeily5uFlujj3Q" annotatedElement="_DLbYsH7_EeifJIHxnlj6Cg">
<body>Event domain enumeration: ‘fault’, ‘heartbeat’, ‘measurement’, ‘mobileFlow’, ‘notification’, ‘other’, ‘pnfRegistration’, ‘sipSignaling’, ‘stateChange’, ‘syslog’, ‘thresholdCrossingAlert’, ‘voiceQuality’</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_DkIzoH7_EeifJIHxnlj6Cg" name="eventId">
<ownedComment xmi:type="uml:Comment" xmi:id="_qauo8KY_Eeily5uFlujj3Q" annotatedElement="_DkIzoH7_EeifJIHxnlj6Cg">
<body>Event key that is unique to the event source. The key must be unique within notification life cycle similar to EventID from 3GPP. It could be a sequential number, or a composite key formed from the event fields, such as domain_sequence. The eventId should not include whitespace. For fault events, eventId is the eventId of the initial alarm; if the same alarm is raised again for changed, acknowledged or cleared cases, eventId must be the same as the initial alarm (along with the same startEpochMicrosec but with a different sequence number). Note: see section 1.3 for eventId use case examples.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_D9JwkH7_EeifJIHxnlj6Cg" name="eventName">
<ownedComment xmi:type="uml:Comment" xmi:id="_g6FUEInuEeiOe-BKGdv_Yg" annotatedElement="_D9JwkH7_EeifJIHxnlj6Cg">
<body>eventName - Unique event name.

To prevent naming collisions, eventName sent as part of the commonEventHeader, should conform to the following naming convention designed to summarize the purpose and type of the event, and to ensure the uniqueness of the eventName: 

{DomainAbbreviation}_{NamingCode or ApplicationPlatform}_{DescriptionOfInfoBeingConveyed}

Domain abbreviations are derived from the ‘domain’ field in the commonEventHeader, as specified below:
‘Fault’ for the fault domain
‘Heartbeat’ for the heartbeat domain
‘Measurement’ for the measurements domain
‘MobileFlow’ for the mobileFlow domain
‘Other’ for the other domain
‘PnfReg’ for the pnfRegistration domain
‘SipSignaling’ for the sipSignaling domain
‘StateChange’ for the stateChange domain
‘Syslog’ for the syslog domain
‘Tca’ for the thresholdCrossingAlert domain
‘VoiceQuality’ for the voiceQuality domain
</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_z0plsKY_Eeily5uFlujj3Q" annotatedElement="_D9JwkH7_EeifJIHxnlj6Cg">
<body>Unique event name </body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_EU9zoH7_EeifJIHxnlj6Cg" name="eventType">
<ownedComment xmi:type="uml:Comment" xmi:id="_Wlz3gKZAEeily5uFlujj3Q" annotatedElement="_EU9zoH7_EeifJIHxnlj6Cg">
<body>For example: ‘applicationNf’, ‘guestOS’, ‘hostOS’, ‘platform’ </body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5DzSUH8HEeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5D4K0H8HEeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_E-nNkH7_EeifJIHxnlj6Cg" name="lastEpochMicrosec" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_5Ri2wKZAEeily5uFlujj3Q" annotatedElement="_E-nNkH7_EeifJIHxnlj6Cg">
<body>the latest unix time aka epoch time associated with the event from any component--as microseconds elapsed since 1 Jan 1970 not including leap seconds</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_FVmKMH7_EeifJIHxnlj6Cg" name="nfcNamingCode">
<ownedComment xmi:type="uml:Comment" xmi:id="_L4j1MKZBEeily5uFlujj3Q" annotatedElement="_FVmKMH7_EeifJIHxnlj6Cg">
<body>Network function component type: 3 characters (aligned with vfc naming standards)</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GYnasKZBEeily5uFlujj3Q"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GYv9kKZBEeily5uFlujj3Q" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_GtDsYH7_EeifJIHxnlj6Cg" name="nfNamingCode">
<ownedComment xmi:type="uml:Comment" xmi:id="_V1O5sKZBEeily5uFlujj3Q" annotatedElement="_GtDsYH7_EeifJIHxnlj6Cg">
<body>Network function type: 4 characters (aligned with vnf and pnf naming standards)</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RAW1cKZBEeily5uFlujj3Q"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RAf_YKZBEeily5uFlujj3Q" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_HT7fIH7_EeifJIHxnlj6Cg" name="priority" type="_2x4t0InuEeiOe-BKGdv_Yg">
<ownedComment xmi:type="uml:Comment" xmi:id="_f5WqAKZBEeily5uFlujj3Q" annotatedElement="_HT7fIH7_EeifJIHxnlj6Cg">
<body>Processing priority enumeration: ‘High’, ‘Medium’, ‘Normal’, ‘Low’</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_H15jwH7_EeifJIHxnlj6Cg" name="reportingEntityId">
<ownedComment xmi:type="uml:Comment" xmi:id="_31NVkIn6EeiOe-BKGdv_Yg">
<body>reportingEntityId - UUID identifying the entity reporting the event or detecting a problem in another xnf/vm or pnf which is experiencing the problem. 

Note: the AT&T internal enrichment process shall ensure that this field is populated. The reportingEntityId is an id for the reportingEntityName. See reportingEntityName for more information.
</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_ffF6cKZCEeily5uFlujj3Q" annotatedElement="_H15jwH7_EeifJIHxnlj6Cg">
<body>UUID identifying the entity reporting the event or detecting a problem in another vnf/vm or pnf which is experiencing the problem. (Note: the AT&T internal enrichment process shall ensure that this field is populated). The reportingEntityId is an id for the reportingEntityName. See ‘reportingEntityName’ for more information.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_FVKrYH8KEeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_FVOVwH8KEeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_IPK_YH7_EeifJIHxnlj6Cg" name="reportingEntityName">
<ownedComment xmi:type="uml:Comment" xmi:id="_5_YuIIn6EeiOe-BKGdv_Yg">
<body>reportingEntityName - Name of the entity reporting the event or detecting a problem in another xnf/vm or pnf which is experiencing the problem. May be the same as the sourceName. For synthetic events generated by DCAE, it is the name of the app generating the event.
</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_nWFE0KZCEeily5uFlujj3Q" annotatedElement="_IPK_YH7_EeifJIHxnlj6Cg">
<body>Name of the entity reporting the event or detecting a problem in another vnf/vm or pnf which is experiencing the problem. May be the same as the sourceName. For synthetic events generated by DCAE, it is the name of the app generating the event.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Inn7oH7_EeifJIHxnlj6Cg" name="sequence">
<ownedComment xmi:type="uml:Comment" xmi:id="_8N9egIn6EeiOe-BKGdv_Yg">
<body>sequence - Ordering of events communicated by an event source instance (or 0 if not needed)
</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_uDh0QKZCEeily5uFlujj3Q" annotatedElement="_Inn7oH7_EeifJIHxnlj6Cg">
<body>Ordering of events communicated by an event source instance (or 0 if not needed)</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_JDjCoH7_EeifJIHxnlj6Cg" name="sourceId">
<ownedComment xmi:type="uml:Comment" xmi:id="_-wDAwIn6EeiOe-BKGdv_Yg">
<body>sourceId - UUID identifying the entity experiencing the event issue, which may be detected and reported by a separate reporting entity 

Note: the AT&T internal enrichment process shall ensure that this field is populate). The sourceId is an id for the sourceName. See sourceName for more information.
</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_0ivTYKZCEeily5uFlujj3Q" annotatedElement="_JDjCoH7_EeifJIHxnlj6Cg">
<body>UUID identifying the entity experiencing the event issue, which may be detected and reported by a separate reporting entity (note: the AT&T internal enrichment process shall ensure that this field is populated). The sourceId is an id for the sourceName. See ‘sourceName’ for more information.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_J7LNMH8KEeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_J7R64H8KEeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_JfMc0H7_EeifJIHxnlj6Cg" name="sourceName">
<ownedComment xmi:type="uml:Comment" xmi:id="_Aw6FQIn7EeiOe-BKGdv_Yg">
<body>sourceName - Name of the entity experiencing the event issue, which may be detected and reported by a separate reporting entity. The sourceName identifies the device for which data is collected. A valid sourceName must be inventoried in A&AI. If sourceName is a xNFC or VM, then the event must be reporting data for that particular xNFC or VM. If the sourceName is a xNF, comprised of multiple xNFCs, the data must be reported/aggregated at the xNF leveI. Data for individual xNFC must not be included in the xNF sourceName event.
</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_51-HkKZCEeily5uFlujj3Q" annotatedElement="_JfMc0H7_EeifJIHxnlj6Cg">
<body>Name of the entity experiencing the event issue, which may be detected and reported by a separate reporting entity. The sourceName identifies the device for which data is collected. A valid sourceName must be inventoried in A&AI. If sourceName is a xNFC or VM, then the event must be reporting data for that particular xNFC or VM. If the sourceName is a xNF, comprised of multiple xNFCs, the data must be reported/aggregated at the xNF leveI. Data for individual xNFC must not be included in the xNF sourceName event.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_J8PlMH7_EeifJIHxnlj6Cg" name="startingEpochMicrosec" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_CrF6AIn7EeiOe-BKGdv_Yg">
<body>startEpochMicrosec - the earliest unix time aka epoch time associated with the event from any component--as microseconds elapsed since 1 Jan 1970 not including leap seconds. For measurements and heartbeats, where events are collected over predefined intervals, startEpochMicrosec shall be rounded to the nearest interval boundary (e.g., the epoch equivalent of 3:00PM, 3:10PM, 3:20PM, etc…). 

For fault events, startEpochMicrosec is the timestamp of the initial alarm; if the same alarm is raised again for changed, acknowledged or cleared cases, startEpochMicrosec must be the same as the initial alarm (along with the same eventId and an incremental sequence number). For devices with no timing source (clock), the default value will be 0 and DCAE collector will replace it with Collector time stamp (when event is received).
</body>
</ownedComment>
<ownedComment xmi:type="uml:Comment" xmi:id="_G-33gKZDEeily5uFlujj3Q" annotatedElement="_J8PlMH7_EeifJIHxnlj6Cg">
<body>the earliest unix time aka epoch time associated with the event from any component--as microseconds elapsed since 1 Jan 1970 not including leap seconds. For measurements and heartbeats, where events are collected over predefined intervals, startEpochMicrosec shall be rounded to the nearest interval boundary (e.g., the epoch equivalent of 3:00PM, 3:10PM, 3:20PM, etc…). For fault events, startEpochMicrosec is the timestamp of the initial alarm; if the same alarm is raised again for changed, acknowledged or cleared cases, startEpoch Microsec must be the same as the initial alarm (along with the same eventId and an incremental sequence number). For devices with no timing source (clock), the default value will be 0 and the VES collector will replace it with Collector time stamp (when the event is received)</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_KV_h8H7_EeifJIHxnlj6Cg" name="timeZoneOffset">
<ownedComment xmi:type="uml:Comment" xmi:id="_TwKYsKZDEeily5uFlujj3Q" annotatedElement="_KV_h8H7_EeifJIHxnlj6Cg">
<body>Offset to GMT to indicate local time zone for device formatted as ‘UTC+/-hh.mm’; see https://en.wikipedia.org/wiki/List_of_time_zone_abbreviations for UTC offset examples</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OydIkKZDEeily5uFlujj3Q"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Oym5kKZDEeily5uFlujj3Q" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_PAciEH8DEeifJIHxnlj6Cg" name="version">
<ownedComment xmi:type="uml:Comment" xmi:id="_eK218KZDEeily5uFlujj3Q" annotatedElement="_PAciEH8DEeifJIHxnlj6Cg">
<body>Version of the event header as “#.#” where # is a digit; see section 1 for the correct digits to use.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_LZpLkJTdEeiYXO5wr78TUw" name="vesEventListenerVersion">
<ownedComment xmi:type="uml:Comment" xmi:id="_o3kQQKZDEeily5uFlujj3Q" annotatedElement="_LZpLkJTdEeiYXO5wr78TUw">
<body>Version of the ves event listener api spec that this event is compliant with (as “#” or “#.#” or “#.#.#” where # is a digit; see section 1 for the correct digits to use).</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_lbyX0KZBEeily5uFlujj3Q" name="nfVendorName">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_h_gkMH7vEeifJIHxnlj6Cg" name="Event">
<ownedComment xmi:type="uml:Comment" xmi:id="_YogkoIncEeiOe-BKGdv_Yg" annotatedElement="_h_gkMH7vEeifJIHxnlj6Cg">
<body>eventBody, if it exists, will contain exactly one of the following depending on the type of event as specified by the eventHeader domain field.

- faultField
- heartbeat
- measurementFields
- mobileFlowFIelds
- notificationFields
- otherfields
- pnfRegistrationFields
- sipSignalingFields
- stateChangeFields
- syslogFields
- thresholdCrosssingAlertFields
- voiceQualityFields</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_g60FoH7yEeifJIHxnlj6Cg" name="faultFields" type="_r_TYsH7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_MvKMUJEUEei9Vqs7Ti8Wxg" annotatedElement="_g60FoH7yEeifJIHxnlj6Cg">
<body>Fields specific to fault events.</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="__LaKwH78EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="__LgRYH78EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_iviyoH7yEeifJIHxnlj6Cg" name="heartbeat" type="_r_TYsH7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_76Xl4H7-EeifJIHxnlj6Cg" annotatedElement="_iviyoH7yEeifJIHxnlj6Cg">
<body>Fields specific to fault events.</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DOeXkH79EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DOj3IH79EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_jaJ14H7yEeifJIHxnlj6Cg" name="measurementsFields" type="_tW6E0H7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_9s878JEUEei9Vqs7Ti8Wxg" annotatedElement="_jaJ14H7yEeifJIHxnlj6Cg">
<body>Fields specific to measurement events.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_x9Pq4H79EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_x9VxgH79EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_j9X3sH7yEeifJIHxnlj6Cg" name="mobileFlowFields" type="_xzOfIH7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_AO7JcJEVEei9Vqs7Ti8Wxg" annotatedElement="_j9X3sH7yEeifJIHxnlj6Cg">
<body>Fields specific to mobilityFlow events.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_IbcWQH7-EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_IbjD8H7-EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_kefnwH7yEeifJIHxnlj6Cg" name="notificationFields" type="_yKtyEH7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_Cz4ZgJEVEei9Vqs7Ti8Wxg" annotatedElement="_kefnwH7yEeifJIHxnlj6Cg">
<body>Fields specific to notification events.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_KDt7oH7-EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_KD13cH7-EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_k8PTsH7yEeifJIHxnlj6Cg" name="otherFields" type="_0fwW0H7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_FVwgYJEVEei9Vqs7Ti8Wxg" annotatedElement="_k8PTsH7yEeifJIHxnlj6Cg">
<body>otherFields - Fields specific to other types of events.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_LQDL4H7-EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_LQIrcH7-EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_lYxesH7yEeifJIHxnlj6Cg" name="pnfRegistrationFields" type="_1spnwH7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_IHLfIJEVEei9Vqs7Ti8Wxg" annotatedElement="_lYxesH7yEeifJIHxnlj6Cg">
<body>pnfRegistrationFields - Fields specific to pnfRegistration events.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_MRI1cH7-EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_MRNt8H7-EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_l1a-cH7yEeifJIHxnlj6Cg" name="sipSignalingFields" type="_2Hi0AH7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_Kuh74JEVEei9Vqs7Ti8Wxg" annotatedElement="_l1a-cH7yEeifJIHxnlj6Cg">
<body>sipSignalingFields - Fields specific to sipSignaling events.</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_NQnVcH7-EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_NQrm4H7-EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_mOxSkH7yEeifJIHxnlj6Cg" name="stateChangeFields" type="_2XJ9UH7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_NqLNoJEVEei9Vqs7Ti8Wxg" annotatedElement="_mOxSkH7yEeifJIHxnlj6Cg">
<body>Fields specific to state change events.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OM9o8H7-EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ONB6YH7-EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_mqtAoH7yEeifJIHxnlj6Cg" name="syslogFields" type="_7F_D8H7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_PpwfwJEVEei9Vqs7Ti8Wxg" annotatedElement="_mqtAoH7yEeifJIHxnlj6Cg">
<body>Fields specific to syslog events.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_PBDYUH7-EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_PBHpwH7-EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_oLQ0cH7yEeifJIHxnlj6Cg" name="thresholdCrossingAlertFields" type="_8IBvwH7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_Rx4p4JEVEei9Vqs7Ti8Wxg" annotatedElement="_oLQ0cH7yEeifJIHxnlj6Cg">
<body>Fields specific to thresholdCrossingAlert events.</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_P9-TkH7-EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_P-EaMH7-EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_otVmwH7yEeifJIHxnlj6Cg" name="voiceQualifyFields" type="_82OSgH7wEeifJIHxnlj6Cg">
<ownedComment xmi:type="uml:Comment" xmi:id="_T2rzMJEVEei9Vqs7Ti8Wxg" annotatedElement="_otVmwH7yEeifJIHxnlj6Cg">
<body>Fields specific to voiceQuality events.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Q5_P4H7-EeifJIHxnlj6Cg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Q6EvcH7-EeifJIHxnlj6Cg" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_wrtaQIFdEeieQ4zKGFzYtQ" name="CodecsInUse">
<ownedComment xmi:type="uml:Comment" xmi:id="_EKuXsIFeEeieQ4zKGFzYtQ" annotatedElement="_wrtaQIFdEeieQ4zKGFzYtQ">
<body>codecsInUse - the codecsInUse datatype consists of the following fields describing the number of times an identified codec was used over the measurementInterval
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_0AyfsIFdEeieQ4zKGFzYtQ" name="codecIdentifier">
<ownedComment xmi:type="uml:Comment" xmi:id="_G4ygcIFeEeieQ4zKGFzYtQ" annotatedElement="_0AyfsIFdEeieQ4zKGFzYtQ">
<body>codecIdentifer - Description of the codec.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_0tIBQIFdEeieQ4zKGFzYtQ" name="numberInUse">
<ownedComment xmi:type="uml:Comment" xmi:id="_JG3hkIFeEeieQ4zKGFzYtQ" annotatedElement="_0tIBQIFdEeieQ4zKGFzYtQ">
<body>numberInUse - Number of such codecs in use.
</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_r_TYsH7wEeifJIHxnlj6Cg" name="FaultFields">
<ownedComment xmi:type="uml:Comment" xmi:id="_oDfesIFGEeieQ4zKGFzYtQ" annotatedElement="_r_TYsH7wEeifJIHxnlj6Cg">
<body>Fields specific to fault events
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_U98FwIEoEeieQ4zKGFzYtQ" name="alarmAdditionalInformation" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_1yYHkKZIEeily5uFlujj3Q" annotatedElement="_U98FwIEoEeieQ4zKGFzYtQ">
<body>Additional alarm information. 
• Note1: for SNMP mapping to VES, for hash key use OID of varbind, for value use incoming data for that varbind). 
• Note2: Alarm ID for 3GPP should be included (if applicable) in alarmAdditonalInformation as ‘alarmId’:’alarmIdValue’. 
Could contain managed object instance as separate key:value; could add probable cause as separate key:value.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_-bfFIIEqEeieQ4zKGFzYtQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-bynIIEqEeieQ4zKGFzYtQ" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_YE4okIEoEeieQ4zKGFzYtQ" name="alarmCondition">
<ownedComment xmi:type="uml:Comment" xmi:id="_4tl7gKZIEeily5uFlujj3Q" annotatedElement="_YE4okIEoEeieQ4zKGFzYtQ">
<body>Short name of the alarm condition/problem, such as a trap name. Should not have white space (e.g., tpLgCgiNotInConfig, BfdSessionDown, linkDown, etc…)</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_YnPHsIEoEeieQ4zKGFzYtQ" name="alarmInterfaceA">
<ownedComment xmi:type="uml:Comment" xmi:id="_8F4tAKZIEeily5uFlujj3Q" annotatedElement="_YnPHsIEoEeieQ4zKGFzYtQ">
<body>Card, port, channel or interface name of the device generating the alarm. This could reflect managed object.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_JleRUIErEeieQ4zKGFzYtQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Jljw4IErEeieQ4zKGFzYtQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_bAe3AIEoEeieQ4zKGFzYtQ" name="eventCatagory">
<ownedComment xmi:type="uml:Comment" xmi:id="__zve0KZIEeily5uFlujj3Q" annotatedElement="_bAe3AIEoEeieQ4zKGFzYtQ">
<body>Event category, for example: ‘license’, ‘link’, ‘routing’, ‘security’, ‘signaling’ </body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OHqDEIErEeieQ4zKGFzYtQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OHtGYIErEeieQ4zKGFzYtQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_dJIlkIEoEeieQ4zKGFzYtQ" name="eventSeverity" type="_NcX08IEsEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_CajJAKZJEeily5uFlujj3Q" annotatedElement="_dJIlkIEoEeieQ4zKGFzYtQ">
<body>Event severity enumeration: ‘CRITICAL’, ‘MAJOR’, ‘MINOR’, ‘WARNING’, ‘NORMAL’. NORMAL is used to represent clear.</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_fs6w8IEoEeieQ4zKGFzYtQ" name="eventSourceType">
<ownedComment xmi:type="uml:Comment" xmi:id="_Fdri0KZJEeily5uFlujj3Q" annotatedElement="_fs6w8IEoEeieQ4zKGFzYtQ">
<body>Examples: ‘card’, ‘host’, ‘other’, ‘port’, ‘portThreshold’, ‘router’, ‘slotThreshold’, ‘switch’, ‘virtualMachine’, ‘virtualNetworkFunction’. This could be managed object class.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_gW0pkIEoEeieQ4zKGFzYtQ" name="faultFieldsVersion">
<ownedComment xmi:type="uml:Comment" xmi:id="_JRDGwKZJEeily5uFlujj3Q" annotatedElement="_gW0pkIEoEeieQ4zKGFzYtQ">
<body>Version of the faultFields block as “#.#” where # is a digit; see section 1 for the correct digits to use. </body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_h9bbAIEoEeieQ4zKGFzYtQ" name="specificProblem">
<ownedComment xmi:type="uml:Comment" xmi:id="_MgZXoKZJEeily5uFlujj3Q" annotatedElement="_h9bbAIEoEeieQ4zKGFzYtQ">
<body>Description of the alarm or problem (e.g., ‘eNodeB 155197 in PLMN 310-410 with eNodeB name KYL05197 is lost’). 3GPP probable cause would be included in this field.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_jH97gIEoEeieQ4zKGFzYtQ" name="vfStatus" type="_H0pqkIFEEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_PeijwKZJEeily5uFlujj3Q" annotatedElement="_jH97gIEoEeieQ4zKGFzYtQ">
<body>Virtual function status enumeration: ‘Active’, ‘Idle’, ‘Preparing to terminate’, ‘Ready to terminate’, ‘Requesting Termination’</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_yPR44IEoEeieQ4zKGFzYtQ" name="HashMap">
<ownedAttribute xmi:type="uml:Property" xmi:id="_k1ND8IEpEeieQ4zKGFzYtQ" name="name">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_rEkJMIEpEeieQ4zKGFzYtQ" name="arrayOfFields" type="_yPR44IEoEeieQ4zKGFzYtQ"/>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_suey4H7wEeifJIHxnlj6Cg" name="HeartbeatFields">
<ownedComment xmi:type="uml:Comment" xmi:id="_LIK5EKZMEeily5uFlujj3Q" annotatedElement="_suey4H7wEeifJIHxnlj6Cg">
<body>The heartbeatFields datatype is an optional field block for fields specific to heartbeat events.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_fTh9kIFJEeieQ4zKGFzYtQ" name="additionalFields" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_1FAF0IFJEeieQ4zKGFzYtQ" annotatedElement="_fTh9kIFJEeieQ4zKGFzYtQ">
<body>Additional expansion fields if needed.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_2odcoIFJEeieQ4zKGFzYtQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_2ohuEIFJEeieQ4zKGFzYtQ" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_gAWnUIFJEeieQ4zKGFzYtQ" name="heartbeatFieldVersion">
<ownedComment xmi:type="uml:Comment" xmi:id="_RdHo8KZMEeily5uFlujj3Q" annotatedElement="_gAWnUIFJEeieQ4zKGFzYtQ">
<body>Version of the heartbeatFields block as “#.#” where # is a digit; see section 1 for the correct digits to use.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_hCSlcIFJEeieQ4zKGFzYtQ" name="heartbeatInterval">
<ownedComment xmi:type="uml:Comment" xmi:id="_9gENoIFJEeieQ4zKGFzYtQ" annotatedElement="_hCSlcIFJEeieQ4zKGFzYtQ">
<body>Current heartbeatInterval in seconds.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_tW6E0H7wEeifJIHxnlj6Cg" name="MeasurementFields">
<ownedComment xmi:type="uml:Comment" xmi:id="_CC_U4IkOEeiddpojVtQ0Hg" annotatedElement="_tW6E0H7wEeifJIHxnlj6Cg">
<body>measurementFields - Fields specific to measurement events
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_MIUQcIFKEeieQ4zKGFzYtQ" name="additionalFields" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_MqDuwIFOEeieQ4zKGFzYtQ" annotatedElement="_MIUQcIFKEeieQ4zKGFzYtQ">
<body>Additional measurement fields if needed.

</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fiIvYIFLEeieQ4zKGFzYtQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fiOO8IFLEeieQ4zKGFzYtQ" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Nyuj0IFKEeieQ4zKGFzYtQ" name="additonalMeasurements" type="_sOvPAJQ9Eei6kI-JPNdeuw">
<ownedComment xmi:type="uml:Comment" xmi:id="_ObQmoIFOEeieQ4zKGFzYtQ" annotatedElement="_Nyuj0IFKEeieQ4zKGFzYtQ">
<body>Array of named hashMap if needed.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_FtygMIFOEeieQ4zKGFzYtQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Ft2xoIFOEeieQ4zKGFzYtQ" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ahVkcIFKEeieQ4zKGFzYtQ" name="additionalObjects" type="__ENUcJaTEeiGg_moIHe9Sw">
<ownedComment xmi:type="uml:Comment" xmi:id="_QW8QMIFOEeieQ4zKGFzYtQ" annotatedElement="_ahVkcIFKEeieQ4zKGFzYtQ">
<body>Array of JSON objects described by name, schema and other meta-information, if needed.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_oBfnsIFTEeieQ4zKGFzYtQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_oBkgMIFTEeieQ4zKGFzYtQ" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_br89cIFKEeieQ4zKGFzYtQ" name="codecUsageArray" type="_wrtaQIFdEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_T8FVwImwEeiOe-BKGdv_Yg" annotatedElement="_br89cIFKEeieQ4zKGFzYtQ">
<body>Array of codecs in use.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_kWIwQIFTEeieQ4zKGFzYtQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_kWShQIFTEeieQ4zKGFzYtQ" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_cvnZ4IFKEeieQ4zKGFzYtQ" name="concurrentSessions">
<ownedComment xmi:type="uml:Comment" xmi:id="_V2iQQImwEeiOe-BKGdv_Yg" annotatedElement="_cvnZ4IFKEeieQ4zKGFzYtQ">
<body>Peak concurrent sessions for the VM or VNF (depending on the context) over the measurementInterval.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_-PMccKcEEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-RRgEKcEEeiFp-jDq2Hw-A" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_daMn8IFKEeieQ4zKGFzYtQ" name="configuredEntities">
<ownedComment xmi:type="uml:Comment" xmi:id="_qe388IbhEei-x_BD9U-ssQ" annotatedElement="_daMn8IFKEeieQ4zKGFzYtQ">
<body>Depending on the context over the measurementInterval: peak total number of users, subscribers, devices, adjacencies, etc., for the VM, or peak total number of subscribers, devices, etc., for the VNF 
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_jOHFEIbhEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_jOQPAIbhEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_eBMWgIFKEeieQ4zKGFzYtQ" name="cpuUsageArray" type="_BTMpUIbiEei-x_BD9U-ssQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_YOatoImwEeiOe-BKGdv_Yg" annotatedElement="_eBMWgIFKEeieQ4zKGFzYtQ">
<body>Usage of an array of CPUs
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_x3wPAIbhEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_x31ukIbhEei-x_BD9U-ssQ" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_esG7wIFKEeieQ4zKGFzYtQ" name="diskUsageArray" type="_kokBwIkOEeiddpojVtQ0Hg">
<ownedComment xmi:type="uml:Comment" xmi:id="_Z5nrMImwEeiOe-BKGdv_Yg" annotatedElement="_esG7wIFKEeieQ4zKGFzYtQ">
<body>Usage of an array of disks.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_e2KlUIkOEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_e2RTAIkOEeiddpojVtQ0Hg" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_fOZJcIFKEeieQ4zKGFzYtQ" name="featureUsageArray" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_e0qB0ImwEeiOe-BKGdv_Yg" annotatedElement="_fOZJcIFKEeieQ4zKGFzYtQ">
<body>The hashMap key should identify the feature, while the value defines the number of times the identified feature was used.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_D8LX8KcGEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_D8Q3gKcGEeiFp-jDq2Hw-A" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_fzeMcIFKEeieQ4zKGFzYtQ" name="filesystemUsageArray" type="_i-TA4IklEeiddpojVtQ0Hg">
<ownedComment xmi:type="uml:Comment" xmi:id="_hN0RkImwEeiOe-BKGdv_Yg" annotatedElement="_fzeMcIFKEeieQ4zKGFzYtQ">
<body>Filesystem usage of the VM on which the VNFC reporting the event is running.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_JpttEKcHEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_JpzzsKcHEeiFp-jDq2Hw-A" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_gWrAIIFKEeieQ4zKGFzYtQ" name="hugePagesArray" type="_zCl6wImwEeiOe-BKGdv_Yg">
<ownedComment xmi:type="uml:Comment" xmi:id="_p3VFEImwEeiOe-BKGdv_Yg" annotatedElement="_gWrAIIFKEeieQ4zKGFzYtQ">
<body>Array of metrics on hugePages
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_nBuJ4ImwEeiOe-BKGdv_Yg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_nCbUgImwEeiOe-BKGdv_Yg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_g58sUIFKEeieQ4zKGFzYtQ" name="ipmiArray" type="_YT8fIIm2EeiOe-BKGdv_Yg">
<ownedComment xmi:type="uml:Comment" xmi:id="_HEH9IIm2EeiOe-BKGdv_Yg" annotatedElement="_g58sUIFKEeieQ4zKGFzYtQ">
<body>Array of intelligent platform management interface metrics.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_hHdw8KcHEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_hHj3kKcHEeiFp-jDq2Hw-A" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_hlHwQIFKEeieQ4zKGFzYtQ" name="latencyDistribution" type="_zD-Z0KcHEeiFp-jDq2Hw-A">
<ownedComment xmi:type="uml:Comment" xmi:id="_vY6q0JGyEeiUeLUnFxb3Bg" annotatedElement="_hlHwQIFKEeieQ4zKGFzYtQ">
<body>Array of integers representing counts of requests whose latency in milliseconds falls within per-VNF configured ranges; where latency is the duration between a service request and its fulfillment.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_1nyoIKcMEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_1n584KcMEeiFp-jDq2Hw-A" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_i9VgYIFKEeieQ4zKGFzYtQ" name="loadArray" type="_-7CVIKcMEeiFp-jDq2Hw-A">
<ownedComment xmi:type="uml:Comment" xmi:id="_w2xv8JGyEeiUeLUnFxb3Bg" annotatedElement="_i9VgYIFKEeieQ4zKGFzYtQ">
<body>loadArray - Array of system load metrics
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_p8Y7gKcNEeiFp-jDq2Hw-A"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_p8lv0KcNEeiFp-jDq2Hw-A" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_oGLCcIFKEeieQ4zKGFzYtQ" name="machineCheckExceptionArray">
<ownedComment xmi:type="uml:Comment" xmi:id="_zDuIoJGyEeiUeLUnFxb3Bg" annotatedElement="_oGLCcIFKEeieQ4zKGFzYtQ">
<body>machineCheckExceptionArray - Array of machine check exceptions.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_pW31UIFKEeieQ4zKGFzYtQ" name="meanRequestLatency">
<ownedComment xmi:type="uml:Comment" xmi:id="_0kuoYJGyEeiUeLUnFxb3Bg" annotatedElement="_pW31UIFKEeieQ4zKGFzYtQ">
<body>meanRequestLatency - Mean seconds required to respond to each request for the VM on which the VNFC reporting the event is running.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_sw_LwIFKEeieQ4zKGFzYtQ" name="measurementFieldsVersion">
<ownedComment xmi:type="uml:Comment" xmi:id="_2X4oEJGyEeiUeLUnFxb3Bg" annotatedElement="_sw_LwIFKEeieQ4zKGFzYtQ">
<body>measurementFieldsVersion - version of the measurementFields block.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_uh6W0IFKEeieQ4zKGFzYtQ" name="measurementInterval">
<ownedComment xmi:type="uml:Comment" xmi:id="_35C40JGyEeiUeLUnFxb3Bg" annotatedElement="_uh6W0IFKEeieQ4zKGFzYtQ">
<body>measurementInterval - Interval over which the usage measures are being reported. The allowed intervals to be integral number of minutes that evenly divide 60 minutes. So, allowed intervals would be 1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, and 60 minutes or the parameter to be specified in seconds (e.g., 60, 120, 180, 240, 300, 360, 600, 720, 900, 1200, 1800, and 3600 seconds). 
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_xB0HwIFKEeieQ4zKGFzYtQ" name="memoryUsageArray">
<ownedComment xmi:type="uml:Comment" xmi:id="_bLy0wJGzEeiUeLUnFxb3Bg" annotatedElement="_xB0HwIFKEeieQ4zKGFzYtQ">
<body>memoryUsageArray - Memory usage of an array of VMs
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_xj0ooIFKEeieQ4zKGFzYtQ" name="nfcScalingMetric">
<ownedComment xmi:type="uml:Comment" xmi:id="_d3kegJGzEeiUeLUnFxb3Bg" annotatedElement="_xj0ooIFKEeieQ4zKGFzYtQ">
<body>nfcScalingMetric - Represents busy-ness of the network function from 0 to 100 as reported by the nfc.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_zM3qEIFKEeieQ4zKGFzYtQ" name="nicPerformanceArray">
<ownedComment xmi:type="uml:Comment" xmi:id="_i0u8EJGzEeiUeLUnFxb3Bg" annotatedElement="_zM3qEIFKEeieQ4zKGFzYtQ">
<body>nicPerformanceArray - Performance metrics of an array of network interface cards.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_bqn7QJGyEeiUeLUnFxb3Bg" name="numberOfMediaPortsInUse">
<ownedComment xmi:type="uml:Comment" xmi:id="_hFwRwJGzEeiUeLUnFxb3Bg" annotatedElement="_bqn7QJGyEeiUeLUnFxb3Bg">
<body>numberOfMediaPortsInUse - Number of media ports in use.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ciU_UJGyEeiUeLUnFxb3Bg" name="processStatsArray">
<ownedComment xmi:type="uml:Comment" xmi:id="_npjV8JGzEeiUeLUnFxb3Bg" annotatedElement="_ciU_UJGyEeiUeLUnFxb3Bg">
<body>processStatsArray - Array of metrics on system processes
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_dGL6UJGyEeiUeLUnFxb3Bg" name="requestRate">
<ownedComment xmi:type="uml:Comment" xmi:id="_pb75kJGzEeiUeLUnFxb3Bg" annotatedElement="_dGL6UJGyEeiUeLUnFxb3Bg">
<body>requestRate - Peak request rate per second, for the VM over the measurementInterval
</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_xzOfIH7wEeifJIHxnlj6Cg" name="MobileFlowFields">
<ownedComment xmi:type="uml:Comment" xmi:id="_YmxAUJQxEei6kI-JPNdeuw" annotatedElement="_xzOfIH7wEeifJIHxnlj6Cg">
<body>Fields specific to mobility flow events</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_69Dm8JQkEei6kI-JPNdeuw" name="additionalFields" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_D_EvIJQnEei6kI-JPNdeuw" annotatedElement="_69Dm8JQkEei6kI-JPNdeuw">
<body>additionalFields - Additional mobileFlow fields if needed.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OGaoAJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OGguoJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_8IT5IJQkEei6kI-JPNdeuw" name="applicationType">
<ownedComment xmi:type="uml:Comment" xmi:id="_GEpUgJQnEei6kI-JPNdeuw" annotatedElement="_8IT5IJQkEei6kI-JPNdeuw">
<body>applicationType - Application type inferred
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OGm1QJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OGs74JQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_8qjqkJQkEei6kI-JPNdeuw" name="applProtocolType">
<ownedComment xmi:type="uml:Comment" xmi:id="_kNPfwJQnEei6kI-JPNdeuw" annotatedElement="_8qjqkJQkEei6kI-JPNdeuw">
<body>applProtocolType - Application protocol.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OGybcJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OG37AJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_9J8VQJQkEei6kI-JPNdeuw" name="applProtocolVersion">
<ownedComment xmi:type="uml:Comment" xmi:id="_mKmkUJQnEei6kI-JPNdeuw" annotatedElement="_9J8VQJQkEei6kI-JPNdeuw">
<body>applProtocolVersion - Application version.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OG9akJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OHC6IJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_9pZ4cJQkEei6kI-JPNdeuw" name="cid">
<ownedComment xmi:type="uml:Comment" xmi:id="_oJR3gJQnEei6kI-JPNdeuw" annotatedElement="_9pZ4cJQkEei6kI-JPNdeuw">
<body>cid - Cell Id.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OHIZsJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OHN5QJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_-GrDQJQkEei6kI-JPNdeuw" name="connectionType">
<ownedComment xmi:type="uml:Comment" xmi:id="_rLvi8JQnEei6kI-JPNdeuw" annotatedElement="_-GrDQJQkEei6kI-JPNdeuw">
<body>connectionType - Abbreviation referencing a 3GPP reference point e.g., S1-U, S11, etc.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OHVOAJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OHbUoJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_-qdFwJQkEei6kI-JPNdeuw" name="ecgi">
<ownedComment xmi:type="uml:Comment" xmi:id="_tNUZIJQnEei6kI-JPNdeuw" annotatedElement="_-qdFwJQkEei6kI-JPNdeuw">
<body>ecgi - Evolved Cell Global Id.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OHjQcJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OHpXEJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="__NT7MJQkEei6kI-JPNdeuw" name="flowDirection">
<ownedComment xmi:type="uml:Comment" xmi:id="_vSYBIJQnEei6kI-JPNdeuw" annotatedElement="__NT7MJQkEei6kI-JPNdeuw">
<body>flowDirection - Flow direction, indicating if the reporting node is the source of the flow or destination for the flow.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OHu2oJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OH0WMJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_AK9PMJQlEei6kI-JPNdeuw" name="gtpPerFlowMetrics">
<ownedComment xmi:type="uml:Comment" xmi:id="_31ZLEJQnEei6kI-JPNdeuw" annotatedElement="_AK9PMJQlEei6kI-JPNdeuw">
<body>gtpPerFlowMetrics - Mobility GTP Protocol per flow metrics.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OIAjcJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OIFb8JQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Bs7_UJQlEei6kI-JPNdeuw" name="gtpProtocolType">
<ownedComment xmi:type="uml:Comment" xmi:id="_P10W0JQrEei6kI-JPNdeuw" annotatedElement="_Bs7_UJQlEei6kI-JPNdeuw">
<body>gtpProtocolType - GTP protocol
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OIKUcJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OIPM8JQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_EzzpoJQlEei6kI-JPNdeuw" name="gtpVersion">
<ownedComment xmi:type="uml:Comment" xmi:id="_35gSMJQrEei6kI-JPNdeuw" annotatedElement="_EzzpoJQlEei6kI-JPNdeuw">
<body>gtpVersion - GTP protocol version.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Xi3UUJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XjBFUJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_FUPdMJQlEei6kI-JPNdeuw" name="httpHeader">
<ownedComment xmi:type="uml:Comment" xmi:id="_5dvFEJQrEei6kI-JPNdeuw" annotatedElement="_FUPdMJQlEei6kI-JPNdeuw">
<body>httpHeader - HTTP request header, if the flow connects to a node referenced by HTTP.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XjKPQJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XjTZMJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_FySrIJQlEei6kI-JPNdeuw" name="iemi">
<ownedComment xmi:type="uml:Comment" xmi:id="_7QSn0JQrEei6kI-JPNdeuw" annotatedElement="_FySrIJQlEei6kI-JPNdeuw">
<body>imei - IMEI for the subscriber UE used in this flow, if the flow connects to a mobile device.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XjdKMJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Xjm7MJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_GRQfEJQlEei6kI-JPNdeuw" name="imsi">
<ownedComment xmi:type="uml:Comment" xmi:id="_84QEIJQrEei6kI-JPNdeuw" annotatedElement="_GRQfEJQlEei6kI-JPNdeuw">
<body>imsi - IMSI for the subscriber UE used in this flow, if the flow connects to a mobile device
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XjwFIJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Xj_VsJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_HiI4IJQlEei6kI-JPNdeuw" name="ipProtocolType">
<ownedComment xmi:type="uml:Comment" xmi:id="_-abokJQrEei6kI-JPNdeuw" annotatedElement="_HiI4IJQlEei6kI-JPNdeuw">
<body>ipProtocolType - IP protocol type e.g., TCP, UDP, RTP...
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XkJGsJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XkS3sJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_IBHTIJQlEei6kI-JPNdeuw" name="ipVersion">
<ownedComment xmi:type="uml:Comment" xmi:id="__6Ak8JQrEei6kI-JPNdeuw" annotatedElement="_IBHTIJQlEei6kI-JPNdeuw">
<body>ipVersion - IP protocol version e.g., IPv4, IPv6
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XkcosJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XkmZsJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_IdCaIJQlEei6kI-JPNdeuw" name="lac">
<ownedComment xmi:type="uml:Comment" xmi:id="_BbvdcJQsEei6kI-JPNdeuw" annotatedElement="_IdCaIJQlEei6kI-JPNdeuw">
<body>lac - Location area code.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XkvjoJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Xk4tkJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_I9VDwJQlEei6kI-JPNdeuw" name="mcc">
<ownedComment xmi:type="uml:Comment" xmi:id="_C_yqIJQsEei6kI-JPNdeuw" annotatedElement="_I9VDwJQlEei6kI-JPNdeuw">
<body>mcc - Mobile country code.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XlCekJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XlLogJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_JZFLoJQlEei6kI-JPNdeuw" name="mnc">
<ownedComment xmi:type="uml:Comment" xmi:id="_Efm3EJQsEei6kI-JPNdeuw" annotatedElement="_JZFLoJQlEei6kI-JPNdeuw">
<body>mnc - Mobile network code.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XlVZgJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XlejcJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_J1YGEJQlEei6kI-JPNdeuw" name="mobileFlowFieldsVersion" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Gpy2sJQsEei6kI-JPNdeuw" annotatedElement="_J1YGEJQlEei6kI-JPNdeuw">
<body>mobileFlowFieldsVersion - Version of the mobileFlowFields block.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XloUcJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XlxeYJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_KsYmkJQlEei6kI-JPNdeuw" name="msisdn">
<ownedComment xmi:type="uml:Comment" xmi:id="_KNoJ0JQsEei6kI-JPNdeuw" annotatedElement="_KsYmkJQlEei6kI-JPNdeuw">
<body>msisdn - MSISDN for the subscriber UE used in this flow, as an integer, if the flow connects to a mobile device.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Xl7PYJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XmFncJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_L2ebIJQlEei6kI-JPNdeuw" name="otherEndpointlpAddress">
<ownedComment xmi:type="uml:Comment" xmi:id="_MfZ_MJQsEei6kI-JPNdeuw" annotatedElement="_L2ebIJQlEei6kI-JPNdeuw">
<body>otherEndpointIpAddress - IP address for the other endpoint, as used for the flow being reported on.

Note: current data type (String) may be changed to Common Resource Datatype L3AddressData. =[gh]=
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XmOxYJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XmYiYJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Nh-ToJQlEei6kI-JPNdeuw" name="otherEndpointPort" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_OVR7sJQsEei6kI-JPNdeuw" annotatedElement="_Nh-ToJQlEei6kI-JPNdeuw">
<body>otherEndpointPort - IP Port for the reporting entity, as used for the flow being reported on
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Xm6G0JQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XnDQwJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ORu8oJQlEei6kI-JPNdeuw" name="otherFunctionalRole">
<ownedComment xmi:type="uml:Comment" xmi:id="_uGaLAJQsEei6kI-JPNdeuw" annotatedElement="_ORu8oJQlEei6kI-JPNdeuw">
<body>otherFunctionalRole - Functional role of the other endpoint for the flow being reported on e.g., MME, S-GW, P-GW, PCRF...
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XnNo0JQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XnXZ0JQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_PJkjkJQlEei6kI-JPNdeuw" name="rac">
<ownedComment xmi:type="uml:Comment" xmi:id="_vq41gJQsEei6kI-JPNdeuw" annotatedElement="_PJkjkJQlEei6kI-JPNdeuw">
<body>rac - Routing area code
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XngjwJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XnqUwJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_PwKCcJQlEei6kI-JPNdeuw" name="radioAccessTechnology">
<ownedComment xmi:type="uml:Comment" xmi:id="_x62F8JQsEei6kI-JPNdeuw" annotatedElement="_PwKCcJQlEei6kI-JPNdeuw">
<body>radioAccessTechnology - Radio Access Technology e.g., 2G, 3G, 4G and 5G. (GSM, UMTS, LTE, 5G)
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Xn0s0JQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Xn-d0JQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_QpeQEJQlEei6kI-JPNdeuw" name="reportingEndpointlpAddr">
<ownedComment xmi:type="uml:Comment" xmi:id="_zqHrMJQsEei6kI-JPNdeuw" annotatedElement="_QpeQEJQlEei6kI-JPNdeuw">
<body>reportingEndpointIpAddr - IP address for the reporting entity, as used for the flow being reported on.

Note: current data type (String) may be changed to Common Resource Datatype L3AddressData. =[gh]=

</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XoIO0JQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XoR_0JQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_S65gIJQlEei6kI-JPNdeuw" name="reportingEndpointPort" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_1X3mcJQsEei6kI-JPNdeuw" annotatedElement="_S65gIJQlEei6kI-JPNdeuw">
<body>reportingEndpointPort - IP port for the reporting entity, as used for the flow being reported on.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Xobw0JQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Xok6wJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Tbx_oJQlEei6kI-JPNdeuw" name="sac">
<ownedComment xmi:type="uml:Comment" xmi:id="_3CyQIJQsEei6kI-JPNdeuw" annotatedElement="_Tbx_oJQlEei6kI-JPNdeuw">
<body>sac - Service area code
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XouEsJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Xo3OoJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_UQxG4JQlEei6kI-JPNdeuw" name="samplingAlgorithm" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_4wUwAJQsEei6kI-JPNdeuw" annotatedElement="_UQxG4JQlEei6kI-JPNdeuw">
<body>samplingAlgorithm - Integer identifier for the sampling algorithm or rule being applied in calculating the flow metrics if metrics are calculated based on a sample of packets, or 0 if no sampling is applied.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XpAYkJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XpKwoJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_UsfZkJQlEei6kI-JPNdeuw" name="tac">
<ownedComment xmi:type="uml:Comment" xmi:id="_6UresJQsEei6kI-JPNdeuw" annotatedElement="_UsfZkJQlEei6kI-JPNdeuw">
<body>tac - Transport area code
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XpT6kJQmEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XpdEgJQmEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_5dITAJQpEei6kI-JPNdeuw" name="tunnelId">
<ownedComment xmi:type="uml:Comment" xmi:id="_8EP-4JQsEei6kI-JPNdeuw" annotatedElement="_5dITAJQpEei6kI-JPNdeuw">
<body>tunnelId - Tunnel identifier
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_HdtcYJQrEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_HdwfsJQrEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_6EGzcJQpEei6kI-JPNdeuw" name="vlanId">
<ownedComment xmi:type="uml:Comment" xmi:id="_BWcRQJQtEei6kI-JPNdeuw" annotatedElement="_6EGzcJQpEei6kI-JPNdeuw">
<body>vlanId - VLAN identifier used by this flow
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_HdzjAJQrEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Hd1_QJQrEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_mJP7YIFNEeieQ4zKGFzYtQ" name="DDDuplicateNamedHashMap">
<ownedComment xmi:type="uml:Comment" xmi:id="_xg-BkIFNEeieQ4zKGFzYtQ" annotatedElement="_mJP7YIFNEeieQ4zKGFzYtQ">
<body>namedHashMap [ ] - The namedHashmap datatype is a hashMap which is associated with and described by a name. 
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_rPjG0IFNEeieQ4zKGFzYtQ" name="name">
<ownedComment xmi:type="uml:Comment" xmi:id="_7D_3AIFNEeieQ4zKGFzYtQ" annotatedElement="_rPjG0IFNEeieQ4zKGFzYtQ">
<body>name - Name for the array of name-value pairs.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_r7owwIFNEeieQ4zKGFzYtQ" name="arrayOfFields" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="__5ke0IFNEeieQ4zKGFzYtQ" annotatedElement="_r7owwIFNEeieQ4zKGFzYtQ">
<body>arrayOfFields - Name-value pairs.

Note: in ATTServiceSpecification - VesEventListener v5.4.1 type = field [].
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_2pNGsIFNEeieQ4zKGFzYtQ" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_2pQKAIFNEeieQ4zKGFzYtQ" value="*"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_yKtyEH7wEeifJIHxnlj6Cg" name="NotificationFields">
<ownedComment xmi:type="uml:Comment" xmi:id="_PP7MwJQxEei6kI-JPNdeuw" annotatedElement="_yKtyEH7wEeifJIHxnlj6Cg">
<body>Fields specific to notification events</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_sl3TYJQuEei6kI-JPNdeuw" name="additionalFields" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="__TMVMJQuEei6kI-JPNdeuw" annotatedElement="_sl3TYJQuEei6kI-JPNdeuw">
<body>additionalFields - Additional notification fields if needed.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_eZRQ0JQ5Eei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_eZdeEJQ5Eei6kI-JPNdeuw" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_tnGG4JQuEei6kI-JPNdeuw" name="arrayOfNamedHashMap" type="_z8XDAJQyEei6kI-JPNdeuw">
<ownedComment xmi:type="uml:Comment" xmi:id="_MJ9zUJQvEei6kI-JPNdeuw" annotatedElement="_tnGG4JQuEei6kI-JPNdeuw">
<body>arrayOfNamedHashMap - Array of named hashMaps
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_gNqmoJQ5Eei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_gNzJgJQ5Eei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_vThMcJQuEei6kI-JPNdeuw" name="changeContact">
<ownedComment xmi:type="uml:Comment" xmi:id="_PJb1IJQvEei6kI-JPNdeuw" annotatedElement="_vThMcJQuEei6kI-JPNdeuw">
<body>changeContact - Identifier for a contact related to the change.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_iaPL4JQ5Eei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_iaUEYJQ5Eei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_vxL_4JQuEei6kI-JPNdeuw" name="changeIdentifier">
<ownedComment xmi:type="uml:Comment" xmi:id="_3pfjcJQvEei6kI-JPNdeuw" annotatedElement="_vxL_4JQuEei6kI-JPNdeuw">
<body>changeIdentifier - System or session identifier associated with the change.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_wyu8cJQuEei6kI-JPNdeuw" name="chnageType">
<ownedComment xmi:type="uml:Comment" xmi:id="_549EoJQvEei6kI-JPNdeuw" annotatedElement="_wyu8cJQuEei6kI-JPNdeuw">
<body>changeType - Identifies what has changed for entity. 
e.g., auto discovery. configuration changed, capability added, capability removed, capability changed, etc.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_xhv-kJQuEei6kI-JPNdeuw" name="newState" type="_VZxGkJQ2Eei6kI-JPNdeuw">
<ownedComment xmi:type="uml:Comment" xmi:id="_9k38wJQvEei6kI-JPNdeuw" annotatedElement="_xhv-kJQuEei6kI-JPNdeuw">
<body>newState - new state of the entity, for Configuration it could be if change was complete or partial etc.

For example: "inService", "outOfService", "maintenance", "completed", "partial" (for configuration changes)
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_yW6sAJQuEei6kI-JPNdeuw" name="notificationFieldsVersion" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_AGSwoJQwEei6kI-JPNdeuw" annotatedElement="_yW6sAJQuEei6kI-JPNdeuw">
<body>notificationFieldsVersion - Version of the notificationFields block.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_y4u_oJQuEei6kI-JPNdeuw" name="oldState" type="_VZxGkJQ2Eei6kI-JPNdeuw">
<ownedComment xmi:type="uml:Comment" xmi:id="_m_mjkJQwEei6kI-JPNdeuw" annotatedElement="_y4u_oJQuEei6kI-JPNdeuw">
<body>oldState - Previous state of the entity.

For example: "inService", "outOfService", "maintenance"
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_zZIW8JQuEei6kI-JPNdeuw" name="stateInterface">
<ownedComment xmi:type="uml:Comment" xmi:id="_omCV4JQwEei6kI-JPNdeuw" annotatedElement="_zZIW8JQuEei6kI-JPNdeuw">
<body>stateInterface - Card or port name of the entity that changed state.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_0fwW0H7wEeifJIHxnlj6Cg" name="OtherFields">
<ownedComment xmi:type="uml:Comment" xmi:id="_cIx1oJc-Eeis0eUbsDSw0w" annotatedElement="_0fwW0H7wEeifJIHxnlj6Cg">
<body>otherFields - The otherFields datatype defines fields for events belonging to the 'other' domain of the commonEventHeader domain enumeration.
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_V7c6gJQ6Eei6kI-JPNdeuw" name="arrayofNamedHashMap" type="_sOvPAJQ9Eei6kI-JPNdeuw">
<ownedComment xmi:type="uml:Comment" xmi:id="_d6C-8Jc-Eeis0eUbsDSw0w" annotatedElement="_V7c6gJQ6Eei6kI-JPNdeuw">
<body>arrayOfNamedHashMap - Array of named name-value-pair arrays.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_w8QRkJQ-Eei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_w8XmUJQ-Eei6kI-JPNdeuw" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_WgXlcJQ6Eei6kI-JPNdeuw" name="hashMap" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_fo6UgJc-Eeis0eUbsDSw0w" annotatedElement="_WgXlcJQ6Eei6kI-JPNdeuw">
<body>hashMap - Array of name-value pairs.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_7awQwJQ-Eei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_7a4zoJQ-Eei6kI-JPNdeuw" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_XKQ3AJQ6Eei6kI-JPNdeuw" name="jsonObjects" type="__ENUcJaTEeiGg_moIHe9Sw">
<ownedComment xmi:type="uml:Comment" xmi:id="_hjIlgJc-Eeis0eUbsDSw0w" annotatedElement="_XKQ3AJQ6Eei6kI-JPNdeuw">
<body>jsonObjects - Array of JSON objects described by name, schema and other meta-information.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_XxkHkJQ6Eei6kI-JPNdeuw" name="otherFieldsVersion" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_jM1HMJc-Eeis0eUbsDSw0w" annotatedElement="_XxkHkJQ6Eei6kI-JPNdeuw">
<body>otherFieldsVersion - Version of the otherFields block.
</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_1spnwH7wEeifJIHxnlj6Cg" name="PnfRegistration">
<ownedAttribute xmi:type="uml:Property" xmi:id="_wTZ74Jc-Eeis0eUbsDSw0w" name="additionalFields" type="_yPR44IEoEeieQ4zKGFzYtQ"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_w5-MoJc-Eeis0eUbsDSw0w" name="lastServiceDate">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_xjg44Jc-Eeis0eUbsDSw0w" name="macAddress">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_yI76IJc-Eeis0eUbsDSw0w" name="manufactureDate">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_1YuP4Jc-Eeis0eUbsDSw0w" name="modelNumber">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_19gX8Jc-Eeis0eUbsDSw0w" name="oamV4lpAddress">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_2ocLUJc-Eeis0eUbsDSw0w" name="oamV6lpAddress">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_3mxb0Jc-Eeis0eUbsDSw0w" name="pnfRegistrationFieldsVersion" type="_p3EKoDm0EeiWMf5FLWfdLA"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_4D4OkJc-Eeis0eUbsDSw0w" name="serialNumber">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_4lixMJc-Eeis0eUbsDSw0w" name="softwareVersion">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_5BEPkJc-Eeis0eUbsDSw0w" name="unitFamily">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_7YTzwJc-Eeis0eUbsDSw0w" name="unitType">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_7_o5gJc-Eeis0eUbsDSw0w" name="vendorName">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="_NcX08IEsEeieQ4zKGFzYtQ" name="EventSeverity">
<ownedComment xmi:type="uml:Comment" xmi:id="_iaLuYKZJEeily5uFlujj3Q" annotatedElement="_NcX08IEsEeieQ4zKGFzYtQ">
<body>Event severity enumeration: ‘CRITICAL’, ‘MAJOR’, ‘MINOR’, ‘WARNING’, ‘NORMAL’. NORMAL is used to represent clear.</body>
</ownedComment>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_RWqgQIEsEeieQ4zKGFzYtQ" name="CRITICAL"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Tl-3gIEsEeieQ4zKGFzYtQ" name="MAJOR"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Uyg8EIEsEeieQ4zKGFzYtQ" name="MINOR"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_xfT3sIEsEeieQ4zKGFzYtQ" name="WARNING"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_y0jMUIEsEeieQ4zKGFzYtQ" name="NORMAL"/>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_2Hi0AH7wEeifJIHxnlj6Cg" name="SipSignalingFields">
<ownedComment xmi:type="uml:Comment" xmi:id="_IqR2gJpoEeidy9iGT_F5-w" annotatedElement="_2Hi0AH7wEeifJIHxnlj6Cg">
<body>sipSignalingFields - The sipSignalingFields datatype communicates information about SIP signaling messages, parameters and signaling state.
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_VL2WIJpnEeidy9iGT_F5-w" name="additionalInformation" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_Kuns0JpoEeidy9iGT_F5-w" annotatedElement="_VL2WIJpnEeidy9iGT_F5-w">
<body>additionalInformation - Additional sipSignalling fields.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_SkSokJpoEeidy9iGT_F5-w"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_SkXhEJpoEeidy9iGT_F5-w" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_VsGjgJpnEeidy9iGT_F5-w" name="compressedSip">
<ownedComment xmi:type="uml:Comment" xmi:id="_M_wpAJpoEeidy9iGT_F5-w" annotatedElement="_VsGjgJpnEeidy9iGT_F5-w">
<body>compressedSip - The full SIP request/response including headers and bodies.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_P_z5oJpoEeidy9iGT_F5-w"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_P_6AQJpoEeidy9iGT_F5-w" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_WIGjAJpnEeidy9iGT_F5-w" name="correlator">
<ownedComment xmi:type="uml:Comment" xmi:id="_iKhhIJppEeidy9iGT_F5-w" annotatedElement="_WIGjAJpnEeidy9iGT_F5-w">
<body>correlator - Constant across all events on this call.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Wj-msJpnEeidy9iGT_F5-w" name="localipAddress">
<ownedComment xmi:type="uml:Comment" xmi:id="_jo91EJppEeidy9iGT_F5-w" annotatedElement="_Wj-msJpnEeidy9iGT_F5-w">
<body>localIpAddress - IP address on VNF.

Note: current data type (String) may be changed to Common Resource Datatype L3AddressData. =[gh]=

</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_W-exYJpnEeidy9iGT_F5-w" name="localPort">
<ownedComment xmi:type="uml:Comment" xmi:id="_ldo3sJppEeidy9iGT_F5-w" annotatedElement="_W-exYJpnEeidy9iGT_F5-w">
<body>localPort - Port on VNF.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_XXg8cJpnEeidy9iGT_F5-w" name="remoteipAddress">
<ownedComment xmi:type="uml:Comment" xmi:id="_m937YJppEeidy9iGT_F5-w" annotatedElement="_XXg8cJpnEeidy9iGT_F5-w">
<body>remoteIpAddress - IP address of peer endpoint.

Note: current data type (String) may be changed to Common Resource Datatype L3AddressData. =[gh]=

</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_YrKVoJpnEeidy9iGT_F5-w" name="remotePort">
<ownedComment xmi:type="uml:Comment" xmi:id="_omAW0JppEeidy9iGT_F5-w" annotatedElement="_YrKVoJpnEeidy9iGT_F5-w">
<body>remotePort - Port of peer endpoint
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ZW7PcJpnEeidy9iGT_F5-w" name="sipSignaliingFieldsVersion">
<ownedComment xmi:type="uml:Comment" xmi:id="_qIKGEJppEeidy9iGT_F5-w" annotatedElement="_ZW7PcJpnEeidy9iGT_F5-w">
<body>sipSignalingFieldsVersion - Version of the sipSignalingFields block as “#.#” where # is a digit; see section 1 for the correct digits to use.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Zzi6AJpnEeidy9iGT_F5-w" name="summarySip">
<ownedComment xmi:type="uml:Comment" xmi:id="_rzveIJppEeidy9iGT_F5-w" annotatedElement="_Zzi6AJpnEeidy9iGT_F5-w">
<body>summarySip - The SIP Method or Response (‘INVITE’, ‘200 OK’, ‘BYE’, etc).
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_j4z9AJprEeidy9iGT_F5-w"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_j46DoJprEeidy9iGT_F5-w" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_bU1GkJpnEeidy9iGT_F5-w" name="vendorNfNameFields" type="_AooCUJpqEeidy9iGT_F5-w">
<ownedComment xmi:type="uml:Comment" xmi:id="_tYjf0JppEeidy9iGT_F5-w" annotatedElement="_bU1GkJpnEeidy9iGT_F5-w">
<body>vendorNfNameFields - Vendor, NF and nfModule names.
</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_2XJ9UH7wEeifJIHxnlj6Cg" name="StateChangeFields">
<ownedComment xmi:type="uml:Comment" xmi:id="_JcpEYJzVEeiLvPKMh61-Bg" annotatedElement="_2XJ9UH7wEeifJIHxnlj6Cg">
<body>stateChangeFields - Fields specific to state change events.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_JYYzUJzREeiLvPKMh61-Bg" name="additionalFields" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_FjUJwJzSEeiLvPKMh61-Bg" annotatedElement="_JYYzUJzREeiLvPKMh61-Bg">
<body>Additional stateChange fields if needed</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9oIb4JzREeiLvPKMh61-Bg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9oN7cJzREeiLvPKMh61-Bg" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_KnuUQJzREeiLvPKMh61-Bg" name="newState" type="_VZxGkJQ2Eei6kI-JPNdeuw">
<ownedComment xmi:type="uml:Comment" xmi:id="_3MD64JzSEeiLvPKMh61-Bg" annotatedElement="_KnuUQJzREeiLvPKMh61-Bg">
<body>New state of the entity: ‘inService’, ‘maintenance’, ‘outOfService’</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_LbcQMJzREeiLvPKMh61-Bg" name="OldState" type="_VZxGkJQ2Eei6kI-JPNdeuw">
<ownedComment xmi:type="uml:Comment" xmi:id="_8Mu_cJzSEeiLvPKMh61-Bg" annotatedElement="_LbcQMJzREeiLvPKMh61-Bg">
<body>Previous state of the entity: ‘inService’, ‘maintenance’, ‘outOfService’</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_MP9dYJzREeiLvPKMh61-Bg" name="stateChangeFieldsVersion">
<ownedComment xmi:type="uml:Comment" xmi:id="_FN7TIJzTEeiLvPKMh61-Bg" annotatedElement="_MP9dYJzREeiLvPKMh61-Bg">
<body>Version of the stateChangeFields block as “#.#” where # is a digit; see section 1 for the correct digits to use.</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_NBnj0JzREeiLvPKMh61-Bg" name="stateInterface">
<ownedComment xmi:type="uml:Comment" xmi:id="_JWRBgJzTEeiLvPKMh61-Bg" annotatedElement="_NBnj0JzREeiLvPKMh61-Bg">
<body>Card or port name of the entity that changed state</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_7F_D8H7wEeifJIHxnlj6Cg" name="SyslogFields">
<ownedComment xmi:type="uml:Comment" xmi:id="_GBKcAJzVEeiLvPKMh61-Bg" annotatedElement="_7F_D8H7wEeifJIHxnlj6Cg">
<body>syslogFields - Fields specific to syslog events.</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_fX1bQJzTEeiLvPKMh61-Bg" name="additionalFields" type="_yPR44IEoEeieQ4zKGFzYtQ"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_f54_cJzTEeiLvPKMh61-Bg" name="eventSourceHost">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_gaDGMJzTEeiLvPKMh61-Bg" name="eventSourceType">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_hwG6MJzTEeiLvPKMh61-Bg" name="syslogFacilty">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_iWVzwJzTEeiLvPKMh61-Bg" name="syslogFieldVersion">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_jV7BcJzTEeiLvPKMh61-Bg" name="syslogMsg">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_kgWNMJzTEeiLvPKMh61-Bg" name="syslogMsgHost">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_lKBcUJzTEeiLvPKMh61-Bg" name="syslogPri">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_lxdPwJzTEeiLvPKMh61-Bg" name="syslogProc">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_mYnWYJzTEeiLvPKMh61-Bg" name="syslogProcId" type="_p3EKoDm0EeiWMf5FLWfdLA"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_nBDPYJzTEeiLvPKMh61-Bg" name="syslogSData">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_nhhfMJzTEeiLvPKMh61-Bg" name="sysllogSdId">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_oCtgsJzTEeiLvPKMh61-Bg" name="syslogSev">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_oiiQQJzTEeiLvPKMh61-Bg" name="syslogTag">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_pFelQJzTEeiLvPKMh61-Bg" name="syslogTs">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_pucpwJzTEeiLvPKMh61-Bg" name="syslogVer" type="_p3EKoDm0EeiWMf5FLWfdLA"/>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_8IBvwH7wEeifJIHxnlj6Cg" name="ThresholdCrossingAlertFields">
<ownedAttribute xmi:type="uml:Property" xmi:id="_RRq8IKJVEeibfLkXoC-lBg" name="additionalFields" type="_yPR44IEoEeieQ4zKGFzYtQ">
<ownedComment xmi:type="uml:Comment" xmi:id="_GtNpcKJWEeibfLkXoC-lBg" annotatedElement="_RRq8IKJVEeibfLkXoC-lBg">
<body>additionalFields - Additional pnfRegistration fields if needed.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Jx4UUKJWEeibfLkXoC-lBg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_JyBeQKJWEeibfLkXoC-lBg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_TGB1sKJVEeibfLkXoC-lBg" name="additionalParameters" type="_tptTQKJWEeibfLkXoC-lBg">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OD7_YKJWEeibfLkXoC-lBg" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OEA34KJWEeibfLkXoC-lBg" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Trf6QKJVEeibfLkXoC-lBg" name="alertAction"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_UekV8KJVEeibfLkXoC-lBg" name="alertDescription">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_VXKx4KJVEeibfLkXoC-lBg" name="alertType"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_W9q1oKJVEeibfLkXoC-lBg" name="alertValue"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_YAEt0KJVEeibfLkXoC-lBg" name="associatedAlertIdList">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Yr9jcKJVEeibfLkXoC-lBg" name="collectionTimestamp"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ZXlTUKJVEeibfLkXoC-lBg" name="dataCollector">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_aM6Y0KJVEeibfLkXoC-lBg" name="elementType">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_a-5PYKJVEeibfLkXoC-lBg" name="eventSeverity"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_cMRogKJVEeibfLkXoC-lBg" name="eventStartTimestamp"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_dDI_EKJVEeibfLkXoC-lBg" name="interfaceName">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_dwvr8KJVEeibfLkXoC-lBg" name="networkService">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_en-O4KJVEeibfLkXoC-lBg" name="possibleRootCause">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_fZgZgKJVEeibfLkXoC-lBg" name="thresholdCrossingFieldsVersion" type="_p3EKoDm0EeiWMf5FLWfdLA"/>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="_H0pqkIFEEeieQ4zKGFzYtQ" name="VfStatus">
<ownedComment xmi:type="uml:Comment" xmi:id="_Vyrl4KZKEeily5uFlujj3Q" annotatedElement="_H0pqkIFEEeieQ4zKGFzYtQ">
<body>Virtual function status enumeration: ‘Active’, ‘Idle’, ‘Preparing to terminate’, ‘Ready to terminate’, ‘Requesting Termination’</body>
</ownedComment>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Lr2loIFEEeieQ4zKGFzYtQ" name="ACTIVE"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Mv6DoIFEEeieQ4zKGFzYtQ" name="IDLE"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_PEkN4IFEEeieQ4zKGFzYtQ" name="PREPARING_TO_TERMINATE"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_SKHpkIFEEeieQ4zKGFzYtQ" name="READY_TO_TERMINATE"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_R38pkIFGEeieQ4zKGFzYtQ" name="REQUESTING_TERMINATION"/>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_82OSgH7wEeifJIHxnlj6Cg" name="VoiceQualityFields"/>
<packagedElement xmi:type="uml:PrimitiveType" xmi:id="_s_Ka4JESEei9Vqs7Ti8Wxg" name="UnixEpoch">
<ownedComment xmi:type="uml:Comment" xmi:id="_zDpF0JESEei9Vqs7Ti8Wxg" annotatedElement="_s_Ka4JESEei9Vqs7Ti8Wxg">
<body>lastEpochMicrosec - the latest unix time aka epoch time associated with the event from any component--as microseconds elapsed since 1 Jan 1970 not including leap seconds</body>
</ownedComment>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="_ArwocDnLEeiWMf5FLWfdLA" name="AddressType">
<ownedComment xmi:type="uml:Comment" xmi:id="_Fk4TgDnLEeiWMf5FLWfdLA" annotatedElement="_ArwocDnLEeiWMf5FLWfdLA">
<body>Defines the network address type.</body>
</ownedComment>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_GlZ8YDnLEeiWMf5FLWfdLA" name="IPV4"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Itd1EDnLEeiWMf5FLWfdLA" name="IPV6"/>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_sOvPAJQ9Eei6kI-JPNdeuw" name="ArrayofNamedHashMap">
<ownedComment xmi:type="uml:Comment" xmi:id="_DIcxsJQ-Eei6kI-JPNdeuw" annotatedElement="_sOvPAJQ9Eei6kI-JPNdeuw">
<body>Array of named hashMaps</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_w1-f4JQ9Eei6kI-JPNdeuw" name="arrayOfNamedHashmap" type="_z8XDAJQyEei6kI-JPNdeuw">
<ownedComment xmi:type="uml:Comment" xmi:id="_BDLHQJQ-Eei6kI-JPNdeuw" annotatedElement="_w1-f4JQ9Eei6kI-JPNdeuw">
<body>Array of named hashMaps</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5cKSkJQ9Eei6kI-JPNdeuw" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5cPLEJQ9Eei6kI-JPNdeuw" value="*"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_BTMpUIbiEei-x_BD9U-ssQ" name="CpuUsage">
<ownedComment xmi:type="uml:Comment" xmi:id="_HrCVIIbiEei-x_BD9U-ssQ" annotatedElement="_BTMpUIbiEei-x_BD9U-ssQ">
<body>cpuUsage - The cpuUsage datatype defines the usage of an identifier CPU.
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_MAGQ4IbiEei-x_BD9U-ssQ" name="cpuUsageNice" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_TJHuMIj0EeiddpojVtQ0Hg" annotatedElement="_MAGQ4IbiEei-x_BD9U-ssQ">
<body>cpuUsageNice - Percentage of time spent running user space processes that have been "niced".
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9DZEMIblEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9DdVoIblEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_NvX2IIbiEei-x_BD9U-ssQ" name="cpuWaitTime" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_QPl8UIj0EeiddpojVtQ0Hg" annotatedElement="_NvX2IIbiEei-x_BD9U-ssQ">
<body>cpuSwapWaitTime - Swap wait time, in milliseconds over the measurementInterval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_8TwXAIblEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_8T1PgIblEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_OUgjgIbiEei-x_BD9U-ssQ" name="cpuOverheadAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_OQbg8Ij0EeiddpojVtQ0Hg" annotatedElement="_OUgjgIbiEei-x_BD9U-ssQ">
<body>cpuOverheadAvg - The overhead demand above available allocations and reservations, in milliseconds over the measurementInterval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_7hLqkIblEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_7hPU8IblEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_QoSkAIbiEei-x_BD9U-ssQ" name="cpuLatencyAverage" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_MQwvQIj0EeiddpojVtQ0Hg" annotatedElement="_QoSkAIbiEei-x_BD9U-ssQ">
<body>cpuLatencyAverage - Percentage of time the VM is unable to run because it is contending for access to the physical CPUs.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5CgBoIblEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5CjsAIblEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_S7iZAIbiEei-x_BD9U-ssQ" name="cpuIdle" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_ScrUYIjzEeiddpojVtQ0Hg" annotatedElement="_S7iZAIbiEei-x_BD9U-ssQ">
<body>cpuIdle - Percentage of CPU time spent in the idle task.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_4HfK4IblEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_4HlRgIblEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_TdtR8IbiEei-x_BD9U-ssQ" name="cpuIdentifier">
<ownedComment xmi:type="uml:Comment" xmi:id="_OA8I4IjzEeiddpojVtQ0Hg" annotatedElement="_TdtR8IbiEei-x_BD9U-ssQ">
<body>cpuIdentifier - CPU Identifier
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_UCGYcIbiEei-x_BD9U-ssQ" name="cpuDemandPct" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_LApAoIjzEeiddpojVtQ0Hg" annotatedElement="_UCGYcIbiEei-x_BD9U-ssQ">
<body>cpuDemandPct - CPU demand as a percentage of the provisioned capacity.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_19NEoIblEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_19RWEIblEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_UgaFEIbiEei-x_BD9U-ssQ" name="cpuDemandMhz" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_IxPw4IjzEeiddpojVtQ0Hg" annotatedElement="_UgaFEIbiEei-x_BD9U-ssQ">
<body>cpuDemandMhz - CPU demand in megahertz (MHz). For comparison in computing powers, processors of "x Core CPU @ y GHz" (like 6 Core CPU @ 2 GHz) are commonly converted into scalar values in MHz. With CPU demand in MHz, choosing an adequate processor to add becomes easy.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_zR-0gIblEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_zSDtAIblEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_VASfAIbiEei-x_BD9U-ssQ" name="cpuDemandingAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_F6JA4IjzEeiddpojVtQ0Hg" annotatedElement="_VASfAIbiEei-x_BD9U-ssQ">
<body>cpuDemandAvg - The total CPU time that the VNF/VNFC/VM could use if there is no contention, in milliseconds.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_4J0YEIbjEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_4J7s0IbjEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ViLEEIbiEei-x_BD9U-ssQ" name="cpuCapacityContention" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Bp7v8IjzEeiddpojVtQ0Hg" annotatedElement="_ViLEEIbiEei-x_BD9U-ssQ">
<body>cpuCapacityContention - The amount of time the CPU cannot run due to centention, in milliseconds.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5uEZEIbjEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5uJ4oIbjEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_WBJfEIbiEei-x_BD9U-ssQ" name="cpuUsgeSoftIrq" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_PbCbcIkLEeiddpojVtQ0Hg" annotatedElement="_WBJfEIbiEei-x_BD9U-ssQ">
<body>cpuUsageSoftIrq - Percentage of time spent handling soft irq interrupts.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_93PjAIblEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_93UbgIblEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_WZyBgIbiEei-x_BD9U-ssQ" name="cpuUsageSteal" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_RjJ-gIkLEeiddpojVtQ0Hg" annotatedElement="_WZyBgIbiEei-x_BD9U-ssQ">
<body>cpuUsageSteal - Percentage of time spent in involuntary wait which is neither user, system or idle time and is effectively time that went missing.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_-khfwIblEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-km_UIblEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_W5dAEIbiEei-x_BD9U-ssQ" name="cpuUsageSystem" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Ty7BsIkLEeiddpojVtQ0Hg" annotatedElement="_W5dAEIbiEei-x_BD9U-ssQ">
<body>cpuUsageSystem - Percentage of time spent on system tasks running the kernel.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="__SvQoIblEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="__Sy7AIblEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_XgntwIbiEei-x_BD9U-ssQ" name="cpuUsageUser" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Vuc6QIkLEeiddpojVtQ0Hg" annotatedElement="_XgntwIbiEei-x_BD9U-ssQ">
<body>cpuUsageUser - Percentage of time spent running un-niced user space processes.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_AGb-cIbmEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_AGgP4IbmEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ku_sMIblEei-x_BD9U-ssQ" name="cpuWait" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Xj4K0IkLEeiddpojVtQ0Hg" annotatedElement="_ku_sMIblEei-x_BD9U-ssQ">
<body>cpuWait - Percentage of CPU time spent waiting for I/O operations to complete.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_B4TksIbmEei-x_BD9U-ssQ"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_B4XPEIbmEei-x_BD9U-ssQ" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_levHEIblEei-x_BD9U-ssQ" name="percentUsage" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_ZgiEwIkLEeiddpojVtQ0Hg" annotatedElement="_levHEIblEei-x_BD9U-ssQ">
<body>percentUsage - Aggregate CPU usage of the virtual machine on which the VNFC reporting the event is running.
</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_kokBwIkOEeiddpojVtQ0Hg" name="DiskUsage">
<ownedComment xmi:type="uml:Comment" xmi:id="_7TG1IIkQEeiddpojVtQ0Hg" annotatedElement="_kokBwIkOEeiddpojVtQ0Hg">
<body>diskUsage - The diskUsage datatype defines the usage of a disk device.
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ppPGUIkOEeiddpojVtQ0Hg" name="diskBusResets" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_9SlZkIkQEeiddpojVtQ0Hg" annotatedElement="_ppPGUIkOEeiddpojVtQ0Hg">
<body>diskBusResets - The number of bus resets in the performance interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_kn6FAIkPEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_koD2AIkPEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_qoXoEIkOEeiddpojVtQ0Hg" name="diskCommandsAborted" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="__ucYAIkQEeiddpojVtQ0Hg" annotatedElement="_qoXoEIkOEeiddpojVtQ0Hg">
<body>diskCommandsAborted - Number of disk commands aborted over the measurementInterval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Sb388IkQEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Sb-DkIkQEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_wNHDAIkOEeiddpojVtQ0Hg" name="diskCommandsAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_BmPAEIkREeiddpojVtQ0Hg" annotatedElement="_wNHDAIkOEeiddpojVtQ0Hg">
<body>diskCommandsAvg - Average number of commands per second over the measurementInterval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_TvHtgIkQEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_TvN0IIkQEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_w4b38IkOEeiddpojVtQ0Hg" name="diskFlushRequests" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Dj94EIkREeiddpojVtQ0Hg" annotatedElement="_w4b38IkOEeiddpojVtQ0Hg">
<body>diskFlushRequests - Total flush requests of the disk cache over the measurementInterval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Uxo6cIkQEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_UxuaAIkQEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_yfCCUIkOEeiddpojVtQ0Hg" name="diskFlushTime" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_IYog8IkREeiddpojVtQ0Hg" annotatedElement="_yfCCUIkOEeiddpojVtQ0Hg">
<body>diskFlushTime - Milliseconds spent on disk cache flushing over the measurementInterval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_V1NQQIkQEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_V1SIwIkQEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_1Lm9UIkOEeiddpojVtQ0Hg" name="diskIdentifier">
<ownedComment xmi:type="uml:Comment" xmi:id="_KSovgIkREeiddpojVtQ0Hg" annotatedElement="_1Lm9UIkOEeiddpojVtQ0Hg">
<body>diskIdentifier - Disk Identifier.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_2RzwYIkOEeiddpojVtQ0Hg" name="diskIoTimeAvg"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_3Y4GIIkOEeiddpojVtQ0Hg" name="diskIoTimeLast" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_1yOCoIkUEeiddpojVtQ0Hg" annotatedElement="_3Y4GIIkOEeiddpojVtQ0Hg">
<body>diskIoTimeLast - Milliseconds spent doing input/output operations over 1 sec; treat this metric as a device load percentage where 1000ms matches 100% load; provide the last value measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_O1-QcIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_O2IBcIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_4OwlQIkOEeiddpojVtQ0Hg" name="diskIoTimeMax" type="_p3EKoDm0EeiWMf5FLWfdLA">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_O2PWMIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_O2WD4IkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_5Dd_sIkOEeiddpojVtQ0Hg" name="diskIoTimeMin" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_7VjvYIkUEeiddpojVtQ0Hg" annotatedElement="_5Dd_sIkOEeiddpojVtQ0Hg">
<body>diskIoTimeMin - Milliseconds spent doing input/output operations over 1 sec; treat this metric as a device load percentage where 1000ms matches 100% load; provide the minimum value measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_O2a8YIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_O2f04IkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_7AlzsIkOEeiddpojVtQ0Hg" name="diskMergedReadAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_9pbPcIkUEeiddpojVtQ0Hg" annotatedElement="_7AlzsIkOEeiddpojVtQ0Hg">
<body>diskMergedReadAvg - Number of logical read operations that were merged into physical read operations, e.g., two logical reads were served by one physical disk access; provide the average measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_O2ktYIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_O2pl4IkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_8ZLXQIkOEeiddpojVtQ0Hg" name="diskMergedReadLast" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_BygksIkVEeiddpojVtQ0Hg" annotatedElement="_8ZLXQIkOEeiddpojVtQ0Hg">
<body>diskMergedReadLast - Number of logical read operations that were merged into physical read operations, e.g., two logical reads were served by one physical disk access; provide the last value measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_O2ueYIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_O2zW4IkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_9A--IIkOEeiddpojVtQ0Hg" name="diskMergedReadMax" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_D1QfkIkVEeiddpojVtQ0Hg" annotatedElement="_9A--IIkOEeiddpojVtQ0Hg">
<body>diskMergedReadMax - Number of logical read operations that were merged into physical read operations, e.g., two logical reads were served by one physical disk access; provide the maximum value measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_O23oUIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_O28g0IkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_9tdCkIkOEeiddpojVtQ0Hg" name="diskMergedReadMin" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_FqYOIIkVEeiddpojVtQ0Hg" annotatedElement="_9tdCkIkOEeiddpojVtQ0Hg">
<body>diskMergedReadMin - Number of logical read operations that were merged into physical read operations, e.g., two logical reads were served by one physical disk access; provide the minimum value measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RQwQ0IkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RQ6B0IkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_-TDC8IkOEeiddpojVtQ0Hg" name="diskMergedWriteAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_hLy7wIkVEeiddpojVtQ0Hg" annotatedElement="_-TDC8IkOEeiddpojVtQ0Hg">
<body>diskMergedWriteAvg - Number of logical write operations that were merged into physical write operations, e.g., two logical writes were served by one physical disk access; provide the average measurement within the measurement interval
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RRCksIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RRKggIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="__B-lgIkOEeiddpojVtQ0Hg" name="diskMergedWriteLast" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_iz3FwIkVEeiddpojVtQ0Hg" annotatedElement="__B-lgIkOEeiddpojVtQ0Hg">
<body>diskMergedWriteLast - Number of logical write operations that were merged into physical write operations, e.g., two logical writes were served by one physical disk access; provide the last value measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RRTqcIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RRl-UIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="__zZbYIkOEeiddpojVtQ0Hg" name="diskMergedWriteMax" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_kexIYIkVEeiddpojVtQ0Hg" annotatedElement="__zZbYIkOEeiddpojVtQ0Hg">
<body>diskMergedWriteMax - Number of logical write operations that were merged into physical write operations, e.g., two logical writes were served by one physical disk access; provide the maximum value measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RRt6IIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RR4SMIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_EC_BQIkPEeiddpojVtQ0Hg" name="diskMergedWriteMin" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_mZo5oIkVEeiddpojVtQ0Hg" annotatedElement="_EC_BQIkPEeiddpojVtQ0Hg">
<body>diskMergedWriteMin - Number of logical write operations that were merged into physical write operations, e.g., two logical writes were served by one physical disk access; provide the minimum value measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RSAOAIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RSJX8IkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_FCgkkIkPEeiddpojVtQ0Hg" name="diskOctetsReadAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_pOOhIIkVEeiddpojVtQ0Hg" annotatedElement="_FCgkkIkPEeiddpojVtQ0Hg">
<body>diskOctetsReadAvg - Number of octets per second read from a disk or partition; provide the average measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RSRTwIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RSZ2oIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_FwTesIkPEeiddpojVtQ0Hg" name="diskOctetsReadLast" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_q6AtgIkVEeiddpojVtQ0Hg" annotatedElement="_FwTesIkPEeiddpojVtQ0Hg">
<body>diskOctetsReadLast - Number of octets per second read from a disk or partition; provide the last measurement within the measurement interval
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RSiZgIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RSpuQIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_GinscIkPEeiddpojVtQ0Hg" name="diskOctetsReadMax" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_slibMIkVEeiddpojVtQ0Hg" annotatedElement="_GinscIkPEeiddpojVtQ0Hg">
<body>diskOctetsReadMax - Number of octets per second read from a disk or partition; provide the maximum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RSyRIIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RS60AIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_IbFC4IkPEeiddpojVtQ0Hg" name="diskOctetsReadMin" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_uUXUgIkVEeiddpojVtQ0Hg" annotatedElement="_IbFC4IkPEeiddpojVtQ0Hg">
<body>diskOctetsReadMin - Number of octets per second read from a disk or partition; provide the minimum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RTDW4IkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RTL5wIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_JLOtcIkPEeiddpojVtQ0Hg" name="diskOctetsWriteAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_xFL2UIkVEeiddpojVtQ0Hg" annotatedElement="_JLOtcIkPEeiddpojVtQ0Hg">
<body>diskOctetsWriteAvg - Number of octets per second written to a disk or partition; provide the average measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RTUcoIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RTcYcIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Jxv64IkPEeiddpojVtQ0Hg" name="diskOctetsWriteLast" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_yrRDUIkVEeiddpojVtQ0Hg" annotatedElement="_Jxv64IkPEeiddpojVtQ0Hg">
<body>diskOctetsWriteLast - Number of octets per second written to a disk or partition; provide the last measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RTk7UIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RTusUIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_KVHGoIkPEeiddpojVtQ0Hg" name="diskOctetsWriteMax" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_0NzNEIkVEeiddpojVtQ0Hg" annotatedElement="_KVHGoIkPEeiddpojVtQ0Hg">
<body>diskOctetsWriteMax - Number of octets per second written to a disk or partition; provide the maximum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RT32QIkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RUAZIIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Dy0FAIkUEeiddpojVtQ0Hg" name="diskOctetsWriteMin" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_1__jcIkVEeiddpojVtQ0Hg" annotatedElement="_Dy0FAIkUEeiddpojVtQ0Hg">
<body>diskOctetsWriteMin - Number of octets per second written to a disk or partition; provide the minimum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RUIU8IkUEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RUQQwIkUEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_9Ry9IIkVEeiddpojVtQ0Hg" name="diskOpsReadAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_EHB6IIkXEeiddpojVtQ0Hg" annotatedElement="_9Ry9IIkVEeiddpojVtQ0Hg">
<body>diskOpsReadAvg - Number of read operations per second issued to the disk; provide the average measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bWdqoIkWEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bWkYUIkWEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_-CmH8IkVEeiddpojVtQ0Hg" name="diskOpsReadLast" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_GMQhQIkXEeiddpojVtQ0Hg" annotatedElement="_-CmH8IkVEeiddpojVtQ0Hg">
<body>diskOpsReadLast - Number of read operations per second issued to the disk; provide the last measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bWp34IkWEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bWuwYIkWEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_-u8QkIkVEeiddpojVtQ0Hg" name="diskOpsReadMax" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_H463YIkXEeiddpojVtQ0Hg" annotatedElement="_-u8QkIkVEeiddpojVtQ0Hg">
<body>diskOpsReadMax - Number of read operations per second issued to the disk; provide the maximum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bW03AIkWEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bW5vgIkWEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="__9hjkIkVEeiddpojVtQ0Hg" name="diskOpsReadMin" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Jm6qQIkXEeiddpojVtQ0Hg" annotatedElement="__9hjkIkVEeiddpojVtQ0Hg">
<body>diskOpsReadMin - Number of read operations per second issued to the disk; provide the minimum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bW_PEIkWEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bXEHkIkWEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_AkT2wIkWEeiddpojVtQ0Hg" name="diskOpsWriteAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_LcwxkIkXEeiddpojVtQ0Hg" annotatedElement="_AkT2wIkWEeiddpojVtQ0Hg">
<body>diskOpsWriteAvg - Number of write operations per second issued to the disk; provide the average measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bXK1QIkWEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bXPtwIkWEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_Bt4t8IkWEeiddpojVtQ0Hg" name="diskOpsWriteLast" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_NFWgAIkXEeiddpojVtQ0Hg" annotatedElement="_Bt4t8IkWEeiddpojVtQ0Hg">
<body>diskOpsWriteLast - Number of write operations per second issued to the disk; provide the last measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bXVNUIkWEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bXas4IkWEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_CafVQIkWEeiddpojVtQ0Hg" name="diskOpsWriteMax" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Opo9QIkXEeiddpojVtQ0Hg" annotatedElement="_CafVQIkWEeiddpojVtQ0Hg">
<body>diskOpsWriteMax - Number of write operations per second issued to the disk; provide the maximum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bXflYIkWEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bXmTEIkWEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_DCfJYIkWEeiddpojVtQ0Hg" name="diskOpsWriteMin" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_QVR_sIkXEeiddpojVtQ0Hg" annotatedElement="_DCfJYIkWEeiddpojVtQ0Hg">
<body>diskOpsWriteMin - Number of write operations per second issued to the disk; provide the minimum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bXrLkIkWEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bXwrIIkWEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_zlPGUIkXEeiddpojVtQ0Hg" name="diskPendingOperationsAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_LxM7EIkYEeiddpojVtQ0Hg" annotatedElement="_zlPGUIkXEeiddpojVtQ0Hg">
<body>diskPendingOperationsAvg - Queue size of pending I/O operations per second; provide the average measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_IN-r8IkYEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_IOC9YIkYEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_0yvbQIkXEeiddpojVtQ0Hg" name="diskPendingOperationsLast" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_NoudYIkYEeiddpojVtQ0Hg" annotatedElement="_0yvbQIkXEeiddpojVtQ0Hg">
<body>diskPendingOperationsLast - Queue size of pending I/O operations per second; provide the last measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_IOHO0IkYEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_IOK5MIkYEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_1kvf8IkXEeiddpojVtQ0Hg" name="diskPendingOperationsMax" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_POUiMIkYEeiddpojVtQ0Hg" annotatedElement="_1kvf8IkXEeiddpojVtQ0Hg">
<body>diskPendingOperationsMax - Queue size of pending I/O operations per second; provide the maximum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_IOOjkIkYEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_IOSN8IkYEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_579X0IkXEeiddpojVtQ0Hg" name="diskPendingOperationsMin" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Q6vnwIkYEeiddpojVtQ0Hg" annotatedElement="_579X0IkXEeiddpojVtQ0Hg">
<body>diskPendingOperationsMin - Queue size of pending I/O operations per second; provide the minimum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_IOWfYIkYEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_IOaJwIkYEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_W65zYIkYEeiddpojVtQ0Hg" name="diskReadCommandsAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_IQiaQIkkEeiddpojVtQ0Hg" annotatedElement="_W65zYIkYEeiddpojVtQ0Hg">
<body>diskReadCommandsAvg -Average number of read commands issued per second to the disk over the measurementInterval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A4XS0IkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A4gcwIkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_YYWo0IkYEeiddpojVtQ0Hg" name="diskTime" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_KyjrEIkkEeiddpojVtQ0Hg" annotatedElement="_YYWo0IkYEeiddpojVtQ0Hg">
<body>diskTime - Nanoseconds spent on disk cache reads/writes within the measurementInterval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A4o_oIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A4xigIkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ZJNeAIkYEeiddpojVtQ0Hg" name="diskTimeReadAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_NsdQYIkkEeiddpojVtQ0Hg" annotatedElement="_ZJNeAIkYEeiddpojVtQ0Hg">
<body>diskTimeReadAvg - Milliseconds a read operation took to complete; provide the average measurement within the measurement interval.</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A45eUIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A5BaIIkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_aSI08IkYEeiddpojVtQ0Hg" name="diskTimeReadLast" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_Qy1ygIkkEeiddpojVtQ0Hg" annotatedElement="_aSI08IkYEeiddpojVtQ0Hg">
<body>diskTimeReadLast - Milliseconds a read operation took to complete; provide the last measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A5J9AIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A5R40IkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_gsTcAIkYEeiddpojVtQ0Hg" name="diskTimeReadMax" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_StF4sIkkEeiddpojVtQ0Hg" annotatedElement="_gsTcAIkYEeiddpojVtQ0Hg">
<body>diskTimeReadMax - Milliseconds a read operation took to complete; provide the maximum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A5cQ4IkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A5kzwIkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_hUHC4IkYEeiddpojVtQ0Hg" name="diskTimeReadMin" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_UoMTcIkkEeiddpojVtQ0Hg" annotatedElement="_hUHC4IkYEeiddpojVtQ0Hg">
<body>diskTimeReadMin - Milliseconds a read operation took to complete; provide the minimum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A5tWoIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A52gkIkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_h2n6EIkYEeiddpojVtQ0Hg" name="diskTimeWriteAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_XeNeUIkkEeiddpojVtQ0Hg" annotatedElement="_h2n6EIkYEeiddpojVtQ0Hg">
<body>diskTimeWriteAvg - Milliseconds a write operation took to complete; provide the average measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A5_qgIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A6I0cIkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_i0fQgIkYEeiddpojVtQ0Hg" name="diskTimeWriteLast" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_ZT9fAIkkEeiddpojVtQ0Hg" annotatedElement="_i0fQgIkYEeiddpojVtQ0Hg">
<body>diskTimeWriteLast - Milliseconds a write operation took to complete; provide the last measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A6RXUIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A6ahQIkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_jXfP4IkYEeiddpojVtQ0Hg" name="diskTimeWriteMax" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_bANlcIkkEeiddpojVtQ0Hg" annotatedElement="_jXfP4IkYEeiddpojVtQ0Hg">
<body>diskTimeWriteMax - Milliseconds a write operation took to complete; provide the maximum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A6idEIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A6q_8IkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_j36cYIkYEeiddpojVtQ0Hg" name="diskTimeWriteMin" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_c5fbQIkkEeiddpojVtQ0Hg" annotatedElement="_j36cYIkYEeiddpojVtQ0Hg">
<body>diskTimeWriteMin - Milliseconds a write operation took to complete; provide the minimum measurement within the measurement interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A6y7wIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A663kIkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_kYzi8IkYEeiddpojVtQ0Hg" name="diskTotalReadLatencyAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_ebO60IkkEeiddpojVtQ0Hg" annotatedElement="_kYzi8IkYEeiddpojVtQ0Hg">
<body>diskTotalReadLatencyAvg - The average amount of time taken for a read from the perspective of a Guest OS. This is the sum of Kernel Read Latency and Physical Device Read Latency in milliseconds over the measurement interval. 
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A7EBgIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A7NLcIkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_tfHmMIkjEeiddpojVtQ0Hg" name="diskTotalWriteLatencyAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_gr1rgIkkEeiddpojVtQ0Hg" annotatedElement="_tfHmMIkjEeiddpojVtQ0Hg">
<body>diskTotalWriteLatencyAvg - The average amount of time taken for a write from the perspective of a Guest OS. This is the sum of Kernel Write Latency and Physical Device Write Latency in milliseconds over the measurement interval. 
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A7VuUIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A7eRMIkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_uaMHUIkjEeiddpojVtQ0Hg" name="diskWriteCommandsAvg" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_iLrGkIkkEeiddpojVtQ0Hg" annotatedElement="_uaMHUIkjEeiddpojVtQ0Hg">
<body>diskWriteCommandsAvg - Average number of write commands issued per second to the disk during the collection interval.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_A7mNAIkkEeiddpojVtQ0Hg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_A7uv4IkkEeiddpojVtQ0Hg" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_i-TA4IklEeiddpojVtQ0Hg" name="FilesystemUsage">
<ownedAttribute xmi:type="uml:Property" xmi:id="_pTjSwIklEeiddpojVtQ0Hg" name="ephemeralConfigured" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_44GJQIkmEeiddpojVtQ0Hg" annotatedElement="_pTjSwIklEeiddpojVtQ0Hg">
<body>ephemeralConfigured - Configured ephemeral storage capacity in GB.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_qCL6YIklEeiddpojVtQ0Hg" name="filesysytemName">
<ownedComment xmi:type="uml:Comment" xmi:id="_w7gGIIkmEeiddpojVtQ0Hg" annotatedElement="_qCL6YIklEeiddpojVtQ0Hg">
<body>filesystemName - File system name.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_qub8YIklEeiddpojVtQ0Hg" name="blockConfigured" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_ymdMEIkmEeiddpojVtQ0Hg" annotatedElement="_qub8YIklEeiddpojVtQ0Hg">
<body>blockConfigured - Configured block storage capacity in GB.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ra5ZwIklEeiddpojVtQ0Hg" name="blockops" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_1Qty4IkmEeiddpojVtQ0Hg" annotatedElement="_ra5ZwIklEeiddpojVtQ0Hg">
<body>blockIops - Block storage input-output operations per second.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_sFP-UIklEeiddpojVtQ0Hg" name="blockUsed" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_3AK-UIkmEeiddpojVtQ0Hg" annotatedElement="_sFP-UIklEeiddpojVtQ0Hg">
<body>blockUsed - Used block storage capacity in GB.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_uF_uEIklEeiddpojVtQ0Hg" name="ephemerallops" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_7SM0MIkmEeiddpojVtQ0Hg" annotatedElement="_uF_uEIklEeiddpojVtQ0Hg">
<body>ephemeralIops - Ephemeral storage input-output operations per second.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_u1_noIklEeiddpojVtQ0Hg" name="ephemeralUsed" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_882_MIkmEeiddpojVtQ0Hg" annotatedElement="_u1_noIklEeiddpojVtQ0Hg">
<body>ephemeralUsed - Used ephemeral storage capacity in GB.
</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_YT8fIIm2EeiOe-BKGdv_Yg" name="Ipmi">
<ownedAttribute xmi:type="uml:Property" xmi:id="_dRL1MIm2EeiOe-BKGdv_Yg" name="ipmiFanArray"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_etCvMIm2EeiOe-BKGdv_Yg" name="ipmiBatteryArray"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_fceBAIm2EeiOe-BKGdv_Yg" name="ipmiBaseboardVoltageRegulatorAray"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_g6QNoIm2EeiOe-BKGdv_Yg" name="ipmiBaseboardTemperatureArray"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_hj_HIIm2EeiOe-BKGdv_Yg" name="ioModuleTemperature" type="_p3EKoDm0EeiWMf5FLWfdLA"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_iyBnkIm2EeiOe-BKGdv_Yg" name="frontPanelTemperature" type="_p3EKoDm0EeiWMf5FLWfdLA"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_j-UbkIm2EeiOe-BKGdv_Yg" name="exitAirTemperature" type="_p3EKoDm0EeiWMf5FLWfdLA"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_lAj7sIm2EeiOe-BKGdv_Yg" name="ipmiGlobalAggregateTemperatureMarginarray"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_lzrasIm2EeiOe-BKGdv_Yg" name="ipmiHsbpArray"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_mig2oIm2EeiOe-BKGdv_Yg" name="ipmiNicArray"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_n7IPYIm2EeiOe-BKGdv_Yg" name="ipmiPowerSupplyArray"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_okqUkIm2EeiOe-BKGdv_Yg" name="ipmiProcessorArray"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_pOy2sIm2EeiOe-BKGdv_Yg" name="systemAirflow" type="_p3EKoDm0EeiWMf5FLWfdLA"/>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_zCl6wImwEeiOe-BKGdv_Yg" name="HugePages">
<ownedComment xmi:type="uml:Comment" xmi:id="_7c70YImxEeiOe-BKGdv_Yg" annotatedElement="_zCl6wImwEeiOe-BKGdv_Yg">
<body>The hugePages datatype provides metrics on system hugePages
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_5wjnkImwEeiOe-BKGdv_Yg" name="bytesFree" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_etXRkImxEeiOe-BKGdv_Yg" annotatedElement="_5wjnkImwEeiOe-BKGdv_Yg">
<body>bytesFree - Number of free hugePages in bytes.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_W38NcImxEeiOe-BKGdv_Yg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_W4BtAImxEeiOe-BKGdv_Yg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_7sOqEImwEeiOe-BKGdv_Yg" name="bytesUsed" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_i2BJAImxEeiOe-BKGdv_Yg" annotatedElement="_7sOqEImwEeiOe-BKGdv_Yg">
<body>bytesUsed - Number of used hugePages in bytes.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_W4GlgImxEeiOe-BKGdv_Yg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_W4MFEImxEeiOe-BKGdv_Yg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_8fCnEImwEeiOe-BKGdv_Yg" name="hugePagesIdentifier">
<ownedComment xmi:type="uml:Comment" xmi:id="_kttqcImxEeiOe-BKGdv_Yg" annotatedElement="_8fCnEImwEeiOe-BKGdv_Yg">
<body>hugePagesIdentifier - HugePages identifier
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_W4SLsImxEeiOe-BKGdv_Yg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_W4XrQImxEeiOe-BKGdv_Yg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_9NclMImwEeiOe-BKGdv_Yg" name="percentFree" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_maMaYImxEeiOe-BKGdv_Yg" annotatedElement="_9NclMImwEeiOe-BKGdv_Yg">
<body>percentFree - Number of free hugePages in percent.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_W4mUwImxEeiOe-BKGdv_Yg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_W4rNQImxEeiOe-BKGdv_Yg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_-Wc0oImwEeiOe-BKGdv_Yg" name="percentused" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_oXrawImxEeiOe-BKGdv_Yg" annotatedElement="_-Wc0oImwEeiOe-BKGdv_Yg">
<body>percentUsed - Number of used hugePages in percent.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_W4ws0ImxEeiOe-BKGdv_Yg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_W41lUImxEeiOe-BKGdv_Yg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="__92QQImwEeiOe-BKGdv_Yg" name="vmPageNumberFree" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_wLqUcImxEeiOe-BKGdv_Yg" annotatedElement="__92QQImwEeiOe-BKGdv_Yg">
<body>vmPageNumberFree - Number of free hugePages in numbers.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_W46d0ImxEeiOe-BKGdv_Yg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_W4_WUImxEeiOe-BKGdv_Yg" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_AqOOEImxEeiOe-BKGdv_Yg" name="vmPageNumberUsed" type="_p3EKoDm0EeiWMf5FLWfdLA">
<ownedComment xmi:type="uml:Comment" xmi:id="_umJvMImxEeiOe-BKGdv_Yg" annotatedElement="_AqOOEImxEeiOe-BKGdv_Yg">
<body>vmPageNumberUsed - Number of used hugePages in numbers.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_W5E14ImxEeiOe-BKGdv_Yg"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_W5KVcImxEeiOe-BKGdv_Yg" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_1zhQkJRAEei6kI-JPNdeuw" name="JsonObject">
<ownedComment xmi:type="uml:Comment" xmi:id="_xaqvEJRCEei6kI-JPNdeuw" annotatedElement="_1zhQkJRAEei6kI-JPNdeuw">
<body>jsonObject - The jsonObject datatype provides a JSON object schema, name and other meta-information along with one or more object instances that conform to the schema.
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_D0oa4JRBEei6kI-JPNdeuw" name="objectInstances" type="_u1dcoJaNEeiGg_moIHe9Sw">
<ownedComment xmi:type="uml:Comment" xmi:id="_0d2MMJRCEei6kI-JPNdeuw" annotatedElement="_D0oa4JRBEei6kI-JPNdeuw">
<body>objectInstances - Contains one or more instances of the JSON object.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="__DSg4JRCEei6kI-JPNdeuw" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="__DeHEJRCEei6kI-JPNdeuw" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_ErzTcJRBEei6kI-JPNdeuw" name="objectName">
<ownedComment xmi:type="uml:Comment" xmi:id="_2ECt8JRCEei6kI-JPNdeuw" annotatedElement="_ErzTcJRBEei6kI-JPNdeuw">
<body>objectName - Name of the json object.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_FY300JRBEei6kI-JPNdeuw" name="objectSchema">
<ownedComment xmi:type="uml:Comment" xmi:id="_3qtJwJRCEei6kI-JPNdeuw" annotatedElement="_FY300JRBEei6kI-JPNdeuw">
<body>objectSchema - JSON schema for the object.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_BmZ94JRDEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_BmwjMJRDEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_GLY24JRBEei6kI-JPNdeuw" name="objectSchemaUrl">
<ownedComment xmi:type="uml:Comment" xmi:id="_5QOWEJRCEei6kI-JPNdeuw" annotatedElement="_GLY24JRBEei6kI-JPNdeuw">
<body>objectSchemaUrl - URL to the JSON schema for the object.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DJVwQJRDEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DJgvYJRDEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_hv2RcJRBEei6kI-JPNdeuw" name="nfSubcribedObjectName">
<ownedComment xmi:type="uml:Comment" xmi:id="_7F2a8JRCEei6kI-JPNdeuw" annotatedElement="_hv2RcJRBEei6kI-JPNdeuw">
<body>nfSubscribedObjectName - Name of the object associated with the nfSubscriptionId.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_EyPnwJRDEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_EydDIJRDEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_iktc4JRBEei6kI-JPNdeuw" name="nfSubcriptionId">
<ownedComment xmi:type="uml:Comment" xmi:id="_8iWOIJRCEei6kI-JPNdeuw" annotatedElement="_iktc4JRBEei6kI-JPNdeuw">
<body>nfSubscriptionId - Identifies an OpenConfig telemetry subscription on a network function, which configures the network function to send complex object data associated with the jsonObject.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_FzzLYJRDEei6kI-JPNdeuw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Fz__sJRDEei6kI-JPNdeuw" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_u1dcoJaNEeiGg_moIHe9Sw" name="JsonObjectInstance">
<ownedComment xmi:type="uml:Comment" xmi:id="__6qNkJaOEeiGg_moIHe9Sw" annotatedElement="_u1dcoJaNEeiGg_moIHe9Sw">
<body>jsonObjectInstance [ ] - The jsonObjectInstance datatype provides meta-information about an instance of a jsonObject along with the actual object instance.
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_FfgysJaOEeiGg_moIHe9Sw" name="jsonObject" type="_1zhQkJRAEei6kI-JPNdeuw">
<ownedComment xmi:type="uml:Comment" xmi:id="_C-gZEJaPEeiGg_moIHe9Sw" annotatedElement="_FfgysJaOEeiGg_moIHe9Sw">
<body>jsonObject - Optional recursive specification on jsonObject
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_s_8EcJaYEeiGg_moIHe9Sw"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_tANxQJaYEeiGg_moIHe9Sw" value="*"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_HGZ4AJaOEeiGg_moIHe9Sw" name="objectInstance" type="_Dg2QIJaaEeiGg_moIHe9Sw">
<ownedComment xmi:type="uml:Comment" xmi:id="_GNdoYJaPEeiGg_moIHe9Sw" annotatedElement="_HGZ4AJaOEeiGg_moIHe9Sw">
<body>objectInstance - Contains an instance conforming to the jsonObject schema
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_H1ekgJaOEeiGg_moIHe9Sw" name="objectInstanceEpochMicrosec" type="_s_Ka4JESEei9Vqs7Ti8Wxg">
<ownedComment xmi:type="uml:Comment" xmi:id="_CjWzgJaiEeiGg_moIHe9Sw" annotatedElement="_H1ekgJaOEeiGg_moIHe9Sw">
<body>objectInstanceEpochMicrosec - the unix time, aka epoch time, associated with this objectInstance--as microseconds elapsed since 1 Jan 1970 not including leap seconds.
</body>
</ownedComment>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_JL16gJaOEeiGg_moIHe9Sw" name="objectKeys" type="_W7iKYJaeEeiGg_moIHe9Sw">
<ownedComment xmi:type="uml:Comment" xmi:id="_Ekfk0JaiEeiGg_moIHe9Sw" annotatedElement="_JL16gJaOEeiGg_moIHe9Sw">
<body>objectKeys - An ordered set of keys that identifies this particular instance of jsonObject (e.g., that places it in a hierarchy).
</body>
</ownedComment>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="_IInt8IngEeiOe-BKGdv_Yg" name="Domain">
<ownedComment xmi:type="uml:Comment" xmi:id="_OkCSMIngEeiOe-BKGdv_Yg" annotatedElement="_IInt8IngEeiOe-BKGdv_Yg">
<body>domain - Event domain enumeration: 

‘fault’, ‘heartbeat’, ‘measurementsForVfScaling’, ‘mobileFlow’, ‘other’, ‘sipSignaling’, ‘stateChange’, ‘syslog’, ‘thresholdCrossingAlert’, ‘voiceQuality’
</body>
</ownedComment>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_T-AnkIngEeiOe-BKGdv_Yg" name="FAULT"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_VPCxoIngEeiOe-BKGdv_Yg" name="HEARTBEAT"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_WsiDUIngEeiOe-BKGdv_Yg" name="MEASUREMENT"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_YTI0wIngEeiOe-BKGdv_Yg" name="MOBILEFLOW"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_jKx3QInhEeiOe-BKGdv_Yg" name="NOTIFICATION"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_oToncInhEeiOe-BKGdv_Yg" name="OTHER"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_rMwwsInhEeiOe-BKGdv_Yg" name="PNFREGISTRATION"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_wT_JMInhEeiOe-BKGdv_Yg" name="SIP_SIGNALING"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_xzSYwInhEeiOe-BKGdv_Yg" name="STATE_CHANGE"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_y5OGEInhEeiOe-BKGdv_Yg" name="SYSLOG"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_3Eo9oInhEeiOe-BKGdv_Yg" name="THRESHOLD_CROSSING_ALERT"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_4T_FoInhEeiOe-BKGdv_Yg" name="VOICE_QUALITY"/>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="_VZxGkJQ2Eei6kI-JPNdeuw" name="NotificationState">
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_bN1-AJQ2Eei6kI-JPNdeuw" name="IN_SERVICE"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_cnWHkJQ2Eei6kI-JPNdeuw" name="MAINTENANCE"/>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_eugBUJQ2Eei6kI-JPNdeuw" name="OUT_OF_SERVICE"/>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_AooCUJpqEeidy9iGT_F5-w" name="VendorNfNameFields">
<ownedComment xmi:type="uml:Comment" xmi:id="_VTtU0JprEeidy9iGT_F5-w" annotatedElement="_AooCUJpqEeidy9iGT_F5-w">
<body>vendorNfNameFields - The vendorNfNameFields provides vendor, nf and nfModule identifying information.
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_L71b8JpqEeidy9iGT_F5-w" name="vendorName">
<ownedComment xmi:type="uml:Comment" xmi:id="_W6VUYJprEeidy9iGT_F5-w" annotatedElement="_L71b8JpqEeidy9iGT_F5-w">
<body>vendorName - Network function vendor name.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_M9AlEJpqEeidy9iGT_F5-w" name="nfModuleName">
<ownedComment xmi:type="uml:Comment" xmi:id="_YySUgJprEeidy9iGT_F5-w" annotatedElement="_M9AlEJpqEeidy9iGT_F5-w">
<body>nfModuleName - Name of the nfModule generating the event.
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RksFYJprEeidy9iGT_F5-w"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Rk2dcJprEeidy9iGT_F5-w" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_OD8_AJpqEeidy9iGT_F5-w" name="nfName">
<ownedComment xmi:type="uml:Comment" xmi:id="_a_4NcJprEeidy9iGT_F5-w" annotatedElement="_OD8_AJpqEeidy9iGT_F5-w">
<body>nfName - Name of the network function generating the event
</body>
</ownedComment>
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Ss-jIJprEeidy9iGT_F5-w"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_StC0kJprEeidy9iGT_F5-w" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="_tptTQKJWEeibfLkXoC-lBg" name="Counter">
<ownedAttribute xmi:type="uml:Property" xmi:id="_4wuD8KJWEeibfLkXoC-lBg" name="criticality">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="_5x4mAKJWEeibfLkXoC-lBg" name="hashMap" type="_yPR44IEoEeieQ4zKGFzYtQ"/>
<ownedAttribute xmi:type="uml:Property" xmi:id="_61QHgKJWEeibfLkXoC-lBg" name="thresholdCrossed">
<type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:DataType" xmi:id="__ENUcJaTEeiGg_moIHe9Sw" name="ArrayOfJsonObject">
<ownedComment xmi:type="uml:Comment" xmi:id="_7DER4JahEeiGg_moIHe9Sw" annotatedElement="__ENUcJaTEeiGg_moIHe9Sw">
<body>arrayOfJsonObject - The arrayOfJsonObject datatype provides an array of json objects, each of which is described by name, schema and other meta-information.
</body>
</ownedComment>
<ownedAttribute xmi:type="uml:Property" xmi:id="_xzKYUJaXEeiGg_moIHe9Sw" name="arrayOfJsonObject" type="_1zhQkJRAEei6kI-JPNdeuw">
<ownedComment xmi:type="uml:Comment" xmi:id="_9qOhYJahEeiGg_moIHe9Sw" annotatedElement="_xzKYUJaXEeiGg_moIHe9Sw">
<body>arrayOfJsonObject - arrayOfJsonObject datatype provides an array of json objects, each of which is described by name, schema and other meta-information.
</body>
</ownedComment>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="_QfHvUJaYEeiGg_moIHe9Sw" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_QfPrIJaYEeiGg_moIHe9Sw" value="*"/>
</ownedAttribute>
</packagedElement>
</packagedElement>
</packagedElement>
<profileApplication xmi:type="uml:ProfileApplication" xmi:id="_HyMlMKVvEeikF6xsfT18UA">
<eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_4YPRQKVxEeikF6xsfT18UA" source="PapyrusVersion">
<details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_4YPRQaVxEeikF6xsfT18UA" key="Version" value="0.2.14"/>
<details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_4YPRQqVxEeikF6xsfT18UA" key="Comment" value=""/>
<details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_4YPRQ6VxEeikF6xsfT18UA" key="Copyright" value=""/>
<details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_4YPRRKVxEeikF6xsfT18UA" key="Date" value="2018-08-21"/>
<details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_4YPRRaVxEeikF6xsfT18UA" key="Author" value="J. Jewitt"/>
</eAnnotations>
<eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_HyRdsKVvEeikF6xsfT18UA" source="http://www.eclipse.org/uml2/2.0.0/UML">
<references xmi:type="ecore:EPackage" href="OpenModel_Profile.profile.uml#_zWYg8KVxEeikF6xsfT18UA"/>
</eAnnotations>
<appliedProfile xmi:type="uml:Profile" href="OpenModel_Profile.profile.uml#_m1xqsHBgEd6FKu9XX1078A"/>
</profileApplication>
</uml:Package>
<OpenModel_Profile:OpenModelClass xmi:id="_Tw8kwD2pEeiu6I5JfRTxxQ" base_Class="_Tw79sD2pEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Tw9y4D2pEeiu6I5JfRTxxQ" base_StructuralFeature="_Tw79sj2pEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Tw-Z8D2pEeiu6I5JfRTxxQ" base_StructuralFeature="_Tw79tD2pEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Tw-Z8j2pEeiu6I5JfRTxxQ" base_StructuralFeature="_Tw79uj2pEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_P-rlUD2vEeiu6I5JfRTxxQ" base_StructuralFeature="_P-qXMj2vEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_P-szcD2vEeiu6I5JfRTxxQ" base_StructuralFeature="_P-qXND2vEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_P-tagD2vEeiu6I5JfRTxxQ" base_StructuralFeature="_P-qXNj2vEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_RVZi1T2-Eeiu6I5JfRTxxQ" base_StructuralFeature="_RVZi0T2-Eeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_RVaJ4D2-Eeiu6I5JfRTxxQ" base_StructuralFeature="_RVZi0z2-Eeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_nPNHuD2-Eeiu6I5JfRTxxQ" base_StructuralFeature="_nPNHsj2-Eeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_nPNuwD2-Eeiu6I5JfRTxxQ" base_StructuralFeature="_nPNHtD2-Eeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelClass xmi:id="_Vt-RwESyEeiVGPeZpaYNtQ" base_Class="_VtzSoESyEeiVGPeZpaYNtQ"/>
<OpenModel_Profile:OpenModelClass xmi:id="_Tw52MES0EeiVGPeZpaYNtQ" base_Class="_Tw5PIES0EeiVGPeZpaYNtQ"/>
<OpenModel_Profile:OpenModelClass xmi:id="_il0cAUS0EeiVGPeZpaYNtQ" base_Class="_il0cAES0EeiVGPeZpaYNtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_vV3AAES0EeiVGPeZpaYNtQ" base_StructuralFeature="_vV1x4kS0EeiVGPeZpaYNtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_vWaZoES0EeiVGPeZpaYNtQ" base_StructuralFeature="_vWZykES0EeiVGPeZpaYNtQ"/>
<OpenModel_Profile:OpenModelClass xmi:id="_8na8sES0EeiVGPeZpaYNtQ" base_Class="_8naVoES0EeiVGPeZpaYNtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_H861UES1EeiVGPeZpaYNtQ" base_StructuralFeature="_H85nMkS1EeiVGPeZpaYNtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_H9A78US1EeiVGPeZpaYNtQ" base_StructuralFeature="_H9AU4US1EeiVGPeZpaYNtQ"/>
<OpenModel_Profile:OpenModelClass xmi:id="_PmI1oH7uEeifJIHxnlj6Cg" base_Class="_PmIOkH7uEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_VhJbgX7uEeifJIHxnlj6Cg" base_StructuralFeature="_VhI0cH7uEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_YlvN4X7uEeifJIHxnlj6Cg" base_StructuralFeature="_Ylum0H7uEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_g60Fon7yEeifJIHxnlj6Cg" base_StructuralFeature="_g60FoH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ivjZsH7yEeifJIHxnlj6Cg" base_StructuralFeature="_iviyoH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_jaKc8X7yEeifJIHxnlj6Cg" base_StructuralFeature="_jaJ14H7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_j9YewX7yEeifJIHxnlj6Cg" base_StructuralFeature="_j9X3sH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_kegO0H7yEeifJIHxnlj6Cg" base_StructuralFeature="_kefnwH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_k8P6wH7yEeifJIHxnlj6Cg" base_StructuralFeature="_k8PTsH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_lYxesn7yEeifJIHxnlj6Cg" base_StructuralFeature="_lYxesH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_l1blgX7yEeifJIHxnlj6Cg" base_StructuralFeature="_l1a-cH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_mOxSkn7yEeifJIHxnlj6Cg" base_StructuralFeature="_mOxSkH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_mqtnsX7yEeifJIHxnlj6Cg" base_StructuralFeature="_mqtAoH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_oLRbgH7yEeifJIHxnlj6Cg" base_StructuralFeature="_oLQ0cH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_otVmwn7yEeifJIHxnlj6Cg" base_StructuralFeature="_otVmwH7yEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_DLbYsn7_EeifJIHxnlj6Cg" base_StructuralFeature="_DLbYsH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_DkIzon7_EeifJIHxnlj6Cg" base_StructuralFeature="_DkIzoH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_D9KXoX7_EeifJIHxnlj6Cg" base_StructuralFeature="_D9JwkH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_EU9zon7_EeifJIHxnlj6Cg" base_StructuralFeature="_EU9zoH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_E-nNkn7_EeifJIHxnlj6Cg" base_StructuralFeature="_E-nNkH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_FVmxQX7_EeifJIHxnlj6Cg" base_StructuralFeature="_FVmKMH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_GtETcX7_EeifJIHxnlj6Cg" base_StructuralFeature="_GtDsYH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_HT8GMH7_EeifJIHxnlj6Cg" base_StructuralFeature="_HT7fIH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_H15jwn7_EeifJIHxnlj6Cg" base_StructuralFeature="_H15jwH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IPK_Yn7_EeifJIHxnlj6Cg" base_StructuralFeature="_IPK_YH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Inn7on7_EeifJIHxnlj6Cg" base_StructuralFeature="_Inn7oH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_JDjCon7_EeifJIHxnlj6Cg" base_StructuralFeature="_JDjCoH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_JfMc0n7_EeifJIHxnlj6Cg" base_StructuralFeature="_JfMc0H7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_J8PlMn7_EeifJIHxnlj6Cg" base_StructuralFeature="_J8PlMH7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_KV_h8n7_EeifJIHxnlj6Cg" base_StructuralFeature="_KV_h8H7_EeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_PAdJIH8DEeifJIHxnlj6Cg" base_StructuralFeature="_PAciEH8DEeifJIHxnlj6Cg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_U-BlUIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_U98FwIEoEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_YE52sIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_YE4okIEoEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_YnPuwIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_YnPHsIEoEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_bAfeEIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_bAe3AIEoEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_dJJMoYEoEeieQ4zKGFzYtQ" base_StructuralFeature="_dJIlkIEoEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_fs6w8oEoEeieQ4zKGFzYtQ" base_StructuralFeature="_fs6w8IEoEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_gW1QoIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_gW0pkIEoEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_h9cCEIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_h9bbAIEoEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_jH-ikYEoEeieQ4zKGFzYtQ" base_StructuralFeature="_jH97gIEoEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_k1NrAYEpEeieQ4zKGFzYtQ" base_StructuralFeature="_k1ND8IEpEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_rEkwQIEpEeieQ4zKGFzYtQ" base_StructuralFeature="_rEkJMIEpEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_fTikoIFJEeieQ4zKGFzYtQ" base_StructuralFeature="_fTh9kIFJEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_gAXOYYFJEeieQ4zKGFzYtQ" base_StructuralFeature="_gAWnUIFJEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_hCTMgYFJEeieQ4zKGFzYtQ" base_StructuralFeature="_hCSlcIFJEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_MIUQcoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_MIUQcIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_NyvK4YFKEeieQ4zKGFzYtQ" base_StructuralFeature="_Nyuj0IFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ahVkcoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_ahVkcIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_br89coFKEeieQ4zKGFzYtQ" base_StructuralFeature="_br89cIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_cvnZ4oFKEeieQ4zKGFzYtQ" base_StructuralFeature="_cvnZ4IFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_daMn8oFKEeieQ4zKGFzYtQ" base_StructuralFeature="_daMn8IFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_eBM9kIFKEeieQ4zKGFzYtQ" base_StructuralFeature="_eBMWgIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_esHi0IFKEeieQ4zKGFzYtQ" base_StructuralFeature="_esG7wIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_fOZJcoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_fOZJcIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_fzeMcoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_fzeMcIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_gWrAIoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_gWrAIIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_g58sUoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_g58sUIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_hlIXUYFKEeieQ4zKGFzYtQ" base_StructuralFeature="_hlHwQIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_i9VgYoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_i9VgYIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_oGLCcoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_oGLCcIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_pW31UoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_pW31UIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_sw_LwoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_sw_LwIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_uh694IFKEeieQ4zKGFzYtQ" base_StructuralFeature="_uh6W0IFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_xB0u0YFKEeieQ4zKGFzYtQ" base_StructuralFeature="_xB0HwIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_xj1PsIFKEeieQ4zKGFzYtQ" base_StructuralFeature="_xj0ooIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_zM4RIIFKEeieQ4zKGFzYtQ" base_StructuralFeature="_zM3qEIFKEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_rPjt4IFNEeieQ4zKGFzYtQ" base_StructuralFeature="_rPjG0IFNEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_r7owwoFNEeieQ4zKGFzYtQ" base_StructuralFeature="_r7owwIFNEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_0AyfsoFdEeieQ4zKGFzYtQ" base_StructuralFeature="_0AyfsIFdEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_0tIBQoFdEeieQ4zKGFzYtQ" base_StructuralFeature="_0tIBQIFdEeieQ4zKGFzYtQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_CITLkIOQEeivtfz_CvwDeA" base_StructuralFeature="_CISkgIOQEeivtfz_CvwDeA"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_DYK4AYOQEeivtfz_CvwDeA" base_StructuralFeature="_DYK4AIOQEeivtfz_CvwDeA"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ECr0oYOQEeivtfz_CvwDeA" base_StructuralFeature="_ECr0oIOQEeivtfz_CvwDeA"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Fpc-IYOQEeivtfz_CvwDeA" base_StructuralFeature="_Fpc-IIOQEeivtfz_CvwDeA"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_KS51gYOQEeivtfz_CvwDeA" base_StructuralFeature="_KS51gIOQEeivtfz_CvwDeA"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_LMkBYYOQEeivtfz_CvwDeA" base_StructuralFeature="_LMkBYIOQEeivtfz_CvwDeA"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_LuBIoIOQEeivtfz_CvwDeA" base_StructuralFeature="_LuAhkIOQEeivtfz_CvwDeA"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_NRP18YOQEeivtfz_CvwDeA" base_StructuralFeature="_NRP18IOQEeivtfz_CvwDeA"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_OGol0IOQEeivtfz_CvwDeA" base_StructuralFeature="_OGn-wIOQEeivtfz_CvwDeA"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_fvsIEIUNEeiRGZJrXkgR0w" base_StructuralFeature="_fvq58IUNEeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_lXOYUIUNEeiRGZJrXkgR0w" base_StructuralFeature="_lXNxQIUNEeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_mgbcEYUNEeiRGZJrXkgR0w" base_StructuralFeature="_mgbcEIUNEeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_H6eUgIUPEeiRGZJrXkgR0w" base_StructuralFeature="_H6dtcIUPEeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IZd9oIUPEeiRGZJrXkgR0w" base_StructuralFeature="_IZdWkIUPEeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_I4dmwIUPEeiRGZJrXkgR0w" base_StructuralFeature="_I4c_sIUPEeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_JZP_oIUPEeiRGZJrXkgR0w" base_StructuralFeature="_JZPYkIUPEeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_gQaSsYUREeiRGZJrXkgR0w" base_StructuralFeature="_gQaSsIUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_g3C04YUREeiRGZJrXkgR0w" base_StructuralFeature="_g3C04IUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_haSE0YUREeiRGZJrXkgR0w" base_StructuralFeature="_haSE0IUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_h5E5oIUREeiRGZJrXkgR0w" base_StructuralFeature="_h5ESkIUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_idmjAYUREeiRGZJrXkgR0w" base_StructuralFeature="_idmjAIUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_i5ktUIUREeiRGZJrXkgR0w" base_StructuralFeature="_i5kGQIUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_jazyIYUREeiRGZJrXkgR0w" base_StructuralFeature="_jazyIIUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_j7onQYUREeiRGZJrXkgR0w" base_StructuralFeature="_j7onQIUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ljD4EYUREeiRGZJrXkgR0w" base_StructuralFeature="_ljD4EIUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_l-B80YUREeiRGZJrXkgR0w" base_StructuralFeature="_l-B80IUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_mYlK0YUREeiRGZJrXkgR0w" base_StructuralFeature="_mYlK0IUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_mw0rsYUREeiRGZJrXkgR0w" base_StructuralFeature="_mw0rsIUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_nJ1ooIUREeiRGZJrXkgR0w" base_StructuralFeature="_nJ1BkIUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_n42DsIUREeiRGZJrXkgR0w" base_StructuralFeature="_n41coIUREeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_fFI88YUSEeiRGZJrXkgR0w" base_StructuralFeature="_fFI88IUSEeiRGZJrXkgR0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_MAG38IbiEei-x_BD9U-ssQ" base_StructuralFeature="_MAGQ4IbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_NvX2IYbiEei-x_BD9U-ssQ" base_StructuralFeature="_NvX2IIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_OUhKkIbiEei-x_BD9U-ssQ" base_StructuralFeature="_OUgjgIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_QoSkAYbiEei-x_BD9U-ssQ" base_StructuralFeature="_QoSkAIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_S7iZAYbiEei-x_BD9U-ssQ" base_StructuralFeature="_S7iZAIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_TdtR8YbiEei-x_BD9U-ssQ" base_StructuralFeature="_TdtR8IbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_UCG_gIbiEei-x_BD9U-ssQ" base_StructuralFeature="_UCGYcIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_UgasIIbiEei-x_BD9U-ssQ" base_StructuralFeature="_UgaFEIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_VASfAYbiEei-x_BD9U-ssQ" base_StructuralFeature="_VASfAIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ViLEEYbiEei-x_BD9U-ssQ" base_StructuralFeature="_ViLEEIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_WBJfEYbiEei-x_BD9U-ssQ" base_StructuralFeature="_WBJfEIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_WZyBgYbiEei-x_BD9U-ssQ" base_StructuralFeature="_WZyBgIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_W5dAEYbiEei-x_BD9U-ssQ" base_StructuralFeature="_W5dAEIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_XgoU0IbiEei-x_BD9U-ssQ" base_StructuralFeature="_XgntwIbiEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ku_sMYblEei-x_BD9U-ssQ" base_StructuralFeature="_ku_sMIblEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_levuIIblEei-x_BD9U-ssQ" base_StructuralFeature="_levHEIblEei-x_BD9U-ssQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ppQ7gIkOEeiddpojVtQ0Hg" base_StructuralFeature="_ppPGUIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_qoYPIYkOEeiddpojVtQ0Hg" base_StructuralFeature="_qoXoEIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_wNHqEYkOEeiddpojVtQ0Hg" base_StructuralFeature="_wNHDAIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_w4cfAYkOEeiddpojVtQ0Hg" base_StructuralFeature="_w4b38IkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_yfCpYYkOEeiddpojVtQ0Hg" base_StructuralFeature="_yfCCUIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_1LnkYIkOEeiddpojVtQ0Hg" base_StructuralFeature="_1Lm9UIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_2RzwYokOEeiddpojVtQ0Hg" base_StructuralFeature="_2RzwYIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_3Y4GIokOEeiddpojVtQ0Hg" base_StructuralFeature="_3Y4GIIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_4OwlQokOEeiddpojVtQ0Hg" base_StructuralFeature="_4OwlQIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_5DemwYkOEeiddpojVtQ0Hg" base_StructuralFeature="_5Dd_sIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_7AlzsokOEeiddpojVtQ0Hg" base_StructuralFeature="_7AlzsIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_8ZL-UIkOEeiddpojVtQ0Hg" base_StructuralFeature="_8ZLXQIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_9A--IokOEeiddpojVtQ0Hg" base_StructuralFeature="_9A--IIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_9tdpoYkOEeiddpojVtQ0Hg" base_StructuralFeature="_9tdCkIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_-TDqAYkOEeiddpojVtQ0Hg" base_StructuralFeature="_-TDC8IkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="__B-lgokOEeiddpojVtQ0Hg" base_StructuralFeature="__B-lgIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="__zaCcYkOEeiddpojVtQ0Hg" base_StructuralFeature="__zZbYIkOEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_EC_oUYkPEeiddpojVtQ0Hg" base_StructuralFeature="_EC_BQIkPEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_FCgkkokPEeiddpojVtQ0Hg" base_StructuralFeature="_FCgkkIkPEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_FwUFwIkPEeiddpojVtQ0Hg" base_StructuralFeature="_FwTesIkPEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_GioTgIkPEeiddpojVtQ0Hg" base_StructuralFeature="_GinscIkPEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IbFp8YkPEeiddpojVtQ0Hg" base_StructuralFeature="_IbFC4IkPEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_JLOtcokPEeiddpojVtQ0Hg" base_StructuralFeature="_JLOtcIkPEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Jxwh8IkPEeiddpojVtQ0Hg" base_StructuralFeature="_Jxv64IkPEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_KVHGookPEeiddpojVtQ0Hg" base_StructuralFeature="_KVHGoIkPEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Dy0FAokUEeiddpojVtQ0Hg" base_StructuralFeature="_Dy0FAIkUEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_9RzkMIkVEeiddpojVtQ0Hg" base_StructuralFeature="_9Ry9IIkVEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_-CmH8okVEeiddpojVtQ0Hg" base_StructuralFeature="_-CmH8IkVEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_-u83oIkVEeiddpojVtQ0Hg" base_StructuralFeature="_-u8QkIkVEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="__9iKoYkVEeiddpojVtQ0Hg" base_StructuralFeature="__9hjkIkVEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_AkUd0YkWEeiddpojVtQ0Hg" base_StructuralFeature="_AkT2wIkWEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Bt4t8okWEeiddpojVtQ0Hg" base_StructuralFeature="_Bt4t8IkWEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Caf8UIkWEeiddpojVtQ0Hg" base_StructuralFeature="_CafVQIkWEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_DCfJYokWEeiddpojVtQ0Hg" base_StructuralFeature="_DCfJYIkWEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_zlPtYIkXEeiddpojVtQ0Hg" base_StructuralFeature="_zlPGUIkXEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_0ywCUIkXEeiddpojVtQ0Hg" base_StructuralFeature="_0yvbQIkXEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_1kwHAYkXEeiddpojVtQ0Hg" base_StructuralFeature="_1kvf8IkXEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_579-4IkXEeiddpojVtQ0Hg" base_StructuralFeature="_579X0IkXEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_W66acYkYEeiddpojVtQ0Hg" base_StructuralFeature="_W65zYIkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_YYWo0okYEeiddpojVtQ0Hg" base_StructuralFeature="_YYWo0IkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ZJNeAokYEeiddpojVtQ0Hg" base_StructuralFeature="_ZJNeAIkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_aSI08okYEeiddpojVtQ0Hg" base_StructuralFeature="_aSI08IkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_gsTcAokYEeiddpojVtQ0Hg" base_StructuralFeature="_gsTcAIkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_hUHp8YkYEeiddpojVtQ0Hg" base_StructuralFeature="_hUHC4IkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_h2ohIYkYEeiddpojVtQ0Hg" base_StructuralFeature="_h2n6EIkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_i0f3kIkYEeiddpojVtQ0Hg" base_StructuralFeature="_i0fQgIkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_jXf28IkYEeiddpojVtQ0Hg" base_StructuralFeature="_jXfP4IkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_j37DcIkYEeiddpojVtQ0Hg" base_StructuralFeature="_j36cYIkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_kYzi8okYEeiddpojVtQ0Hg" base_StructuralFeature="_kYzi8IkYEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_tfINQYkjEeiddpojVtQ0Hg" base_StructuralFeature="_tfHmMIkjEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_uaMHUokjEeiddpojVtQ0Hg" base_StructuralFeature="_uaMHUIkjEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_pTjSwoklEeiddpojVtQ0Hg" base_StructuralFeature="_pTjSwIklEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_qCL6YoklEeiddpojVtQ0Hg" base_StructuralFeature="_qCL6YIklEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_qucjcIklEeiddpojVtQ0Hg" base_StructuralFeature="_qub8YIklEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ra5ZwoklEeiddpojVtQ0Hg" base_StructuralFeature="_ra5ZwIklEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_sFP-UoklEeiddpojVtQ0Hg" base_StructuralFeature="_sFP-UIklEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_uF_uEoklEeiddpojVtQ0Hg" base_StructuralFeature="_uF_uEIklEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_u2AOsYklEeiddpojVtQ0Hg" base_StructuralFeature="_u1_noIklEeiddpojVtQ0Hg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_5wlcwImwEeiOe-BKGdv_Yg" base_StructuralFeature="_5wjnkImwEeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_7sPRIYmwEeiOe-BKGdv_Yg" base_StructuralFeature="_7sOqEImwEeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_8fDOIImwEeiOe-BKGdv_Yg" base_StructuralFeature="_8fCnEImwEeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_9NdMQImwEeiOe-BKGdv_Yg" base_StructuralFeature="_9NclMImwEeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_-Wc0oomwEeiOe-BKGdv_Yg" base_StructuralFeature="_-Wc0oImwEeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="__923UImwEeiOe-BKGdv_Yg" base_StructuralFeature="__92QQImwEeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_AqOOEomxEeiOe-BKGdv_Yg" base_StructuralFeature="_AqOOEImxEeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_dRMcQYm2EeiOe-BKGdv_Yg" base_StructuralFeature="_dRL1MIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_etDWQIm2EeiOe-BKGdv_Yg" base_StructuralFeature="_etCvMIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_fceBAom2EeiOe-BKGdv_Yg" base_StructuralFeature="_fceBAIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_g6Q0sYm2EeiOe-BKGdv_Yg" base_StructuralFeature="_g6QNoIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_hj_HIom2EeiOe-BKGdv_Yg" base_StructuralFeature="_hj_HIIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_iyBnkom2EeiOe-BKGdv_Yg" base_StructuralFeature="_iyBnkIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_j-VCoIm2EeiOe-BKGdv_Yg" base_StructuralFeature="_j-UbkIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_lAj7som2EeiOe-BKGdv_Yg" base_StructuralFeature="_lAj7sIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_lzsBwIm2EeiOe-BKGdv_Yg" base_StructuralFeature="_lzrasIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_mihdsYm2EeiOe-BKGdv_Yg" base_StructuralFeature="_mig2oIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_n7IPYom2EeiOe-BKGdv_Yg" base_StructuralFeature="_n7IPYIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_okqUkom2EeiOe-BKGdv_Yg" base_StructuralFeature="_okqUkIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_pOy2som2EeiOe-BKGdv_Yg" base_StructuralFeature="_pOy2sIm2EeiOe-BKGdv_Yg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_bqoiUZGyEeiUeLUnFxb3Bg" base_StructuralFeature="_bqn7QJGyEeiUeLUnFxb3Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ciU_UpGyEeiUeLUnFxb3Bg" base_StructuralFeature="_ciU_UJGyEeiUeLUnFxb3Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_dGL6UpGyEeiUeLUnFxb3Bg" base_StructuralFeature="_dGL6UJGyEeiUeLUnFxb3Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_69GDMJQkEei6kI-JPNdeuw" base_StructuralFeature="_69Dm8JQkEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_8IUgMJQkEei6kI-JPNdeuw" base_StructuralFeature="_8IT5IJQkEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_8qkRoZQkEei6kI-JPNdeuw" base_StructuralFeature="_8qjqkJQkEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_9J88UJQkEei6kI-JPNdeuw" base_StructuralFeature="_9J8VQJQkEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_9pafgJQkEei6kI-JPNdeuw" base_StructuralFeature="_9pZ4cJQkEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_-GrDQpQkEei6kI-JPNdeuw" base_StructuralFeature="_-GrDQJQkEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_-qdFwpQkEei6kI-JPNdeuw" base_StructuralFeature="_-qdFwJQkEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="__NVwYJQkEei6kI-JPNdeuw" base_StructuralFeature="__NT7MJQkEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_AK92QJQlEei6kI-JPNdeuw" base_StructuralFeature="_AK9PMJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Bs8mYJQlEei6kI-JPNdeuw" base_StructuralFeature="_Bs7_UJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Ez0QsJQlEei6kI-JPNdeuw" base_StructuralFeature="_EzzpoJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_FUQEQZQlEei6kI-JPNdeuw" base_StructuralFeature="_FUPdMJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_FyTSMJQlEei6kI-JPNdeuw" base_StructuralFeature="_FySrIJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_GRRGIZQlEei6kI-JPNdeuw" base_StructuralFeature="_GRQfEJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_HiJfMZQlEei6kI-JPNdeuw" base_StructuralFeature="_HiI4IJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IBHTIpQlEei6kI-JPNdeuw" base_StructuralFeature="_IBHTIJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IdCaIpQlEei6kI-JPNdeuw" base_StructuralFeature="_IdCaIJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_I9VDwpQlEei6kI-JPNdeuw" base_StructuralFeature="_I9VDwJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_JZFysJQlEei6kI-JPNdeuw" base_StructuralFeature="_JZFLoJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_J1YGEpQlEei6kI-JPNdeuw" base_StructuralFeature="_J1YGEJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_KsYmkpQlEei6kI-JPNdeuw" base_StructuralFeature="_KsYmkJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_L2fCMZQlEei6kI-JPNdeuw" base_StructuralFeature="_L2ebIJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Nh-TopQlEei6kI-JPNdeuw" base_StructuralFeature="_Nh-ToJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ORvjsZQlEei6kI-JPNdeuw" base_StructuralFeature="_ORu8oJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_PJkjkpQlEei6kI-JPNdeuw" base_StructuralFeature="_PJkjkJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_PwKpgZQlEei6kI-JPNdeuw" base_StructuralFeature="_PwKCcJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Qpe3IZQlEei6kI-JPNdeuw" base_StructuralFeature="_QpeQEJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_S66HMZQlEei6kI-JPNdeuw" base_StructuralFeature="_S65gIJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Tbx_opQlEei6kI-JPNdeuw" base_StructuralFeature="_Tbx_oJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_UQxG4pQlEei6kI-JPNdeuw" base_StructuralFeature="_UQxG4JQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_UsgAoZQlEei6kI-JPNdeuw" base_StructuralFeature="_UsfZkJQlEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_5dI6EJQpEei6kI-JPNdeuw" base_StructuralFeature="_5dITAJQpEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_6EHagZQpEei6kI-JPNdeuw" base_StructuralFeature="_6EGzcJQpEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_sl3TYpQuEei6kI-JPNdeuw" base_StructuralFeature="_sl3TYJQuEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_tnGG4pQuEei6kI-JPNdeuw" base_StructuralFeature="_tnGG4JQuEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_vThMcpQuEei6kI-JPNdeuw" base_StructuralFeature="_vThMcJQuEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_vxMm8JQuEei6kI-JPNdeuw" base_StructuralFeature="_vxL_4JQuEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_wyu8cpQuEei6kI-JPNdeuw" base_StructuralFeature="_wyu8cJQuEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_xhv-kpQuEei6kI-JPNdeuw" base_StructuralFeature="_xhv-kJQuEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_yW7TEJQuEei6kI-JPNdeuw" base_StructuralFeature="_yW6sAJQuEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_y4u_opQuEei6kI-JPNdeuw" base_StructuralFeature="_y4u_oJQuEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_zZIW8pQuEei6kI-JPNdeuw" base_StructuralFeature="_zZIW8JQuEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_NyfTgJQzEei6kI-JPNdeuw" base_StructuralFeature="_NyescJQzEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_OcpDwpQzEei6kI-JPNdeuw" base_StructuralFeature="_OcpDwJQzEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_V7c6gpQ6Eei6kI-JPNdeuw" base_StructuralFeature="_V7c6gJQ6Eei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_WgYMgZQ6Eei6kI-JPNdeuw" base_StructuralFeature="_WgXlcJQ6Eei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_XKReEZQ6Eei6kI-JPNdeuw" base_StructuralFeature="_XKQ3AJQ6Eei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_XxkHkpQ6Eei6kI-JPNdeuw" base_StructuralFeature="_XxkHkJQ6Eei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_w1_G8JQ9Eei6kI-JPNdeuw" base_StructuralFeature="_w1-f4JQ9Eei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_D0pB8JRBEei6kI-JPNdeuw" base_StructuralFeature="_D0oa4JRBEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ErzTcpRBEei6kI-JPNdeuw" base_StructuralFeature="_ErzTcJRBEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_FY300pRBEei6kI-JPNdeuw" base_StructuralFeature="_FY300JRBEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_GLY24pRBEei6kI-JPNdeuw" base_StructuralFeature="_GLY24JRBEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_hv24gZRBEei6kI-JPNdeuw" base_StructuralFeature="_hv2RcJRBEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ikuD8ZRBEei6kI-JPNdeuw" base_StructuralFeature="_iktc4JRBEei6kI-JPNdeuw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_LZpyoJTdEeiYXO5wr78TUw" base_StructuralFeature="_LZpLkJTdEeiYXO5wr78TUw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_FfjO8JaOEeiGg_moIHe9Sw" base_StructuralFeature="_FfgysJaOEeiGg_moIHe9Sw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_HGafEJaOEeiGg_moIHe9Sw" base_StructuralFeature="_HGZ4AJaOEeiGg_moIHe9Sw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_H1fLkZaOEeiGg_moIHe9Sw" base_StructuralFeature="_H1ekgJaOEeiGg_moIHe9Sw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_JL2hkJaOEeiGg_moIHe9Sw" base_StructuralFeature="_JL16gJaOEeiGg_moIHe9Sw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_xzK_YZaXEeiGg_moIHe9Sw" base_StructuralFeature="_xzKYUJaXEeiGg_moIHe9Sw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_HR8fAJahEeiGg_moIHe9Sw" base_StructuralFeature="_HR738JahEeiGg_moIHe9Sw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_J6eAcpahEeiGg_moIHe9Sw" base_StructuralFeature="_J6eAcJahEeiGg_moIHe9Sw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_KplJMZahEeiGg_moIHe9Sw" base_StructuralFeature="_KpkiIJahEeiGg_moIHe9Sw"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_wTZ74Zc-Eeis0eUbsDSw0w" base_StructuralFeature="_wTZ74Jc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_w5-zsJc-Eeis0eUbsDSw0w" base_StructuralFeature="_w5-MoJc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_xjhf8Jc-Eeis0eUbsDSw0w" base_StructuralFeature="_xjg44Jc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_yI8hMJc-Eeis0eUbsDSw0w" base_StructuralFeature="_yI76IJc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_1YuP4Zc-Eeis0eUbsDSw0w" base_StructuralFeature="_1YuP4Jc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_19gX8Zc-Eeis0eUbsDSw0w" base_StructuralFeature="_19gX8Jc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_2ocyYJc-Eeis0eUbsDSw0w" base_StructuralFeature="_2ocLUJc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_3mxb0Zc-Eeis0eUbsDSw0w" base_StructuralFeature="_3mxb0Jc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_4D4OkZc-Eeis0eUbsDSw0w" base_StructuralFeature="_4D4OkJc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_4lixMZc-Eeis0eUbsDSw0w" base_StructuralFeature="_4lixMJc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_5BEPkZc-Eeis0eUbsDSw0w" base_StructuralFeature="_5BEPkJc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_7YTzwZc-Eeis0eUbsDSw0w" base_StructuralFeature="_7YTzwJc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_7_pgkJc-Eeis0eUbsDSw0w" base_StructuralFeature="_7_o5gJc-Eeis0eUbsDSw0w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_PWBS0JdUEei-sOl6ywWHlg" base_StructuralFeature="_PV-2kJdUEei-sOl6ywWHlg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_VL2WIppnEeidy9iGT_F5-w" base_StructuralFeature="_VL2WIJpnEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_VsHKkZpnEeidy9iGT_F5-w" base_StructuralFeature="_VsGjgJpnEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_WIHKEZpnEeidy9iGT_F5-w" base_StructuralFeature="_WIGjAJpnEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Wj_NwZpnEeidy9iGT_F5-w" base_StructuralFeature="_Wj-msJpnEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_W-fYcJpnEeidy9iGT_F5-w" base_StructuralFeature="_W-exYJpnEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_XXhjgJpnEeidy9iGT_F5-w" base_StructuralFeature="_XXg8cJpnEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_YrKVoppnEeidy9iGT_F5-w" base_StructuralFeature="_YrKVoJpnEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ZW72gZpnEeidy9iGT_F5-w" base_StructuralFeature="_ZW7PcJpnEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ZzjhEJpnEeidy9iGT_F5-w" base_StructuralFeature="_Zzi6AJpnEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_bU1GkppnEeidy9iGT_F5-w" base_StructuralFeature="_bU1GkJpnEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_L72DAJpqEeidy9iGT_F5-w" base_StructuralFeature="_L71b8JpqEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_M9BMIJpqEeidy9iGT_F5-w" base_StructuralFeature="_M9AlEJpqEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_OD8_AppqEeidy9iGT_F5-w" base_StructuralFeature="_OD8_AJpqEeidy9iGT_F5-w"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_JYaBcJzREeiLvPKMh61-Bg" base_StructuralFeature="_JYYzUJzREeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Knu7UZzREeiLvPKMh61-Bg" base_StructuralFeature="_KnuUQJzREeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Lbc3QZzREeiLvPKMh61-Bg" base_StructuralFeature="_LbcQMJzREeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_MP-EcJzREeiLvPKMh61-Bg" base_StructuralFeature="_MP9dYJzREeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_NBoK4JzREeiLvPKMh61-Bg" base_StructuralFeature="_NBnj0JzREeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_fX2CUZzTEeiLvPKMh61-Bg" base_StructuralFeature="_fX1bQJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_f54_cpzTEeiLvPKMh61-Bg" base_StructuralFeature="_f54_cJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_gaDtQJzTEeiLvPKMh61-Bg" base_StructuralFeature="_gaDGMJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_hwG6MpzTEeiLvPKMh61-Bg" base_StructuralFeature="_hwG6MJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_iWVzwpzTEeiLvPKMh61-Bg" base_StructuralFeature="_iWVzwJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_jV7ogJzTEeiLvPKMh61-Bg" base_StructuralFeature="_jV7BcJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_kgWNMpzTEeiLvPKMh61-Bg" base_StructuralFeature="_kgWNMJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_lKBcUpzTEeiLvPKMh61-Bg" base_StructuralFeature="_lKBcUJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_lxd20ZzTEeiLvPKMh61-Bg" base_StructuralFeature="_lxdPwJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_mYn9cJzTEeiLvPKMh61-Bg" base_StructuralFeature="_mYnWYJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_nBD2cZzTEeiLvPKMh61-Bg" base_StructuralFeature="_nBDPYJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_nhiGQJzTEeiLvPKMh61-Bg" base_StructuralFeature="_nhhfMJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_oCtgspzTEeiLvPKMh61-Bg" base_StructuralFeature="_oCtgsJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_oii3UJzTEeiLvPKMh61-Bg" base_StructuralFeature="_oiiQQJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_pFelQpzTEeiLvPKMh61-Bg" base_StructuralFeature="_pFelQJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_pucpwpzTEeiLvPKMh61-Bg" base_StructuralFeature="_pucpwJzTEeiLvPKMh61-Bg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_RRrjMKJVEeibfLkXoC-lBg" base_StructuralFeature="_RRq8IKJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_TGCcwKJVEeibfLkXoC-lBg" base_StructuralFeature="_TGB1sKJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Trf6QaJVEeibfLkXoC-lBg" base_StructuralFeature="_Trf6QKJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_UekV8aJVEeibfLkXoC-lBg" base_StructuralFeature="_UekV8KJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_VXKx4aJVEeibfLkXoC-lBg" base_StructuralFeature="_VXKx4KJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_W9q1oaJVEeibfLkXoC-lBg" base_StructuralFeature="_W9q1oKJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_YAFU4KJVEeibfLkXoC-lBg" base_StructuralFeature="_YAEt0KJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Yr9jcaJVEeibfLkXoC-lBg" base_StructuralFeature="_Yr9jcKJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_ZXlTUaJVEeibfLkXoC-lBg" base_StructuralFeature="_ZXlTUKJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_aM6_4KJVEeibfLkXoC-lBg" base_StructuralFeature="_aM6Y0KJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_a-5PYaJVEeibfLkXoC-lBg" base_StructuralFeature="_a-5PYKJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_cMRogaJVEeibfLkXoC-lBg" base_StructuralFeature="_cMRogKJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_dDI_EaJVEeibfLkXoC-lBg" base_StructuralFeature="_dDI_EKJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_dwvr8aJVEeibfLkXoC-lBg" base_StructuralFeature="_dwvr8KJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_en-O4aJVEeibfLkXoC-lBg" base_StructuralFeature="_en-O4KJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_fZgZgaJVEeibfLkXoC-lBg" base_StructuralFeature="_fZgZgKJVEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_4wuD8aJWEeibfLkXoC-lBg" base_StructuralFeature="_4wuD8KJWEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_5x4mAaJWEeibfLkXoC-lBg" base_StructuralFeature="_5x4mAKJWEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_61QHgaJWEeibfLkXoC-lBg" base_StructuralFeature="_61QHgKJWEeibfLkXoC-lBg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IamB8KVvEeikF6xsfT18UA" base_StructuralFeature="_N61nIDeBEeiIfPeSAqyGdQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IanQEKVvEeikF6xsfT18UA" base_StructuralFeature="_O2y5EDeBEeiIfPeSAqyGdQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IaoeMKVvEeikF6xsfT18UA" base_StructuralFeature="_-b8GcDdPEeiIfPeSAqyGdQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IapsUKVvEeikF6xsfT18UA" base_StructuralFeature="__BqCoDdPEeiIfPeSAqyGdQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Iaq6cKVvEeikF6xsfT18UA" base_StructuralFeature="__o0JQDdPEeiIfPeSAqyGdQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IasIkKVvEeikF6xsfT18UA" base_StructuralFeature="_Ag8rIDdQEeiIfPeSAqyGdQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_IasvoKVvEeikF6xsfT18UA" base_StructuralFeature="_ifaxMDdPEeiIfPeSAqyGdQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Iauk0KVvEeikF6xsfT18UA" base_StructuralFeature="_TsnHUDgXEeiOYfGHew0BGg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_Iavy8KVvEeikF6xsfT18UA" base_StructuralFeature="_W5c2wDgXEeiOYfGHew0BGg"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_lby-4KZBEeily5uFlujj3Q" base_StructuralFeature="_lbyX0KZBEeily5uFlujj3Q"/>
<OpenModel_Profile:Preliminary xmi:id="_RXHEYKZIEeily5uFlujj3Q" base_Element="_Tw79sD2pEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:Preliminary xmi:id="_WB-RAKZIEeily5uFlujj3Q" base_Element="_Tw79tD2pEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:Preliminary xmi:id="_YPresKZIEeily5uFlujj3Q" base_Element="_Tw79uj2pEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:Preliminary xmi:id="_bOWPQKZIEeily5uFlujj3Q" base_Element="_Tw79sj2pEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_7S8mYacHEeiFp-jDq2Hw-A" base_StructuralFeature="_7S8mYKcHEeiFp-jDq2Hw-A"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_76Oo0KcHEeiFp-jDq2Hw-A" base_StructuralFeature="_76OBwKcHEeiFp-jDq2Hw-A"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_8cpZYacHEeiFp-jDq2Hw-A" base_StructuralFeature="_8cpZYKcHEeiFp-jDq2Hw-A"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_E2dKsacNEeiFp-jDq2Hw-A" base_StructuralFeature="_E2dKsKcNEeiFp-jDq2Hw-A"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_FgDhUacNEeiFp-jDq2Hw-A" base_StructuralFeature="_FgDhUKcNEeiFp-jDq2Hw-A"/>
<OpenModel_Profile:OpenModelAttribute xmi:id="_GHjmMacNEeiFp-jDq2Hw-A" base_StructuralFeature="_GHjmMKcNEeiFp-jDq2Hw-A"/>
<OpenModel_Profile:Preliminary xmi:id="_YOFpUKezEeixw5Ke5QD1pQ" base_Element="_VtzSoESyEeiVGPeZpaYNtQ"/>
<OpenModel_Profile:Preliminary xmi:id="_i11R0Ke4Eeixw5Ke5QD1pQ" base_Element="_Tw5PIES0EeiVGPeZpaYNtQ"/>
<OpenModel_Profile:Preliminary xmi:id="_nyvQsKe4Eeixw5Ke5QD1pQ" base_Element="_il0cAES0EeiVGPeZpaYNtQ"/>
<OpenModel_Profile:Preliminary xmi:id="_r54FMKe4Eeixw5Ke5QD1pQ" base_Element="_8naVoES0EeiVGPeZpaYNtQ"/>
<OpenModel_Profile:OpenModelClass xmi:id="_2J-cAKe4Eeixw5Ke5QD1pQ" base_Class="_7pUNEDa7EeivvI-m1BaAbA"/>
<OpenModel_Profile:OpenModelClass xmi:id="_3uaqQKe4Eeixw5Ke5QD1pQ" base_Class="_0AbUYDnBEeiWMf5FLWfdLA"/>
<OpenModel_Profile:Preliminary xmi:id="_6UO18Ke4Eeixw5Ke5QD1pQ" base_Element="_7pUNEDa7EeivvI-m1BaAbA"/>
<OpenModel_Profile:Preliminary xmi:id="_8jVx0Ke4Eeixw5Ke5QD1pQ" base_Element="_0AbUYDnBEeiWMf5FLWfdLA"/>
<OpenModel_Profile:Preliminary xmi:id="__h6bwKe4Eeixw5Ke5QD1pQ" base_Element="_AuYtcDkBEeiWMf5FLWfdLA"/>
<OpenModel_Profile:Preliminary xmi:id="_BU2ZAKe5Eeixw5Ke5QD1pQ" base_Element="_vxJ9ADafEei23_xWdimG9w"/>
<OpenModel_Profile:Preliminary xmi:id="_DMU4AKe5Eeixw5Ke5QD1pQ" base_Element="_z8XDAJQyEei6kI-JPNdeuw"/>
<OpenModel_Profile:Preliminary xmi:id="_Gv66kKe5Eeixw5Ke5QD1pQ" base_Element="_P-qXMD2vEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:Preliminary xmi:id="_IbgSoKe5Eeixw5Ke5QD1pQ" base_Element="_RVZi0D2-Eeiu6I5JfRTxxQ"/>
<OpenModel_Profile:Preliminary xmi:id="_KERAMKe5Eeixw5Ke5QD1pQ" base_Element="_nPNHsD2-Eeiu6I5JfRTxxQ"/>
<OpenModel_Profile:Preliminary xmi:id="_LkXhAKe5Eeixw5Ke5QD1pQ" base_Element="_oXexoD2uEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:Preliminary xmi:id="_NfABsKe5Eeixw5Ke5QD1pQ" base_Element="_YQwQ0D0NEeiWMf5FLWfdLA"/>
<OpenModel_Profile:Preliminary xmi:id="_Pib5EKe5Eeixw5Ke5QD1pQ" base_Element="_8dlAoD0TEeiWMf5FLWfdLA"/>
<OpenModel_Profile:Preliminary xmi:id="_RcSWoKe5Eeixw5Ke5QD1pQ" base_Element="_8rNJgD2uEeiu6I5JfRTxxQ"/>
<OpenModel_Profile:Preliminary xmi:id="_TCEosKe5Eeixw5Ke5QD1pQ" base_Element="_p3EKoDm0EeiWMf5FLWfdLA"/>
<OpenModel_Profile:Preliminary xmi:id="_VA9-UKe5Eeixw5Ke5QD1pQ" base_Element="_2x4t0InuEeiOe-BKGdv_Yg"/>
<OpenModel_Profile:Preliminary xmi:id="_W4FQ8Ke5Eeixw5Ke5QD1pQ" base_Element="_ImxsgDeBEeiIfPeSAqyGdQ"/>
<OpenModel_Profile:Preliminary xmi:id="_YkfvcKe5Eeixw5Ke5QD1pQ" base_Element="_4oResDdPEeiIfPeSAqyGdQ"/>
<OpenModel_Profile:Preliminary xmi:id="_alnSoKe5Eeixw5Ke5QD1pQ" base_Element="_X9TdUDdPEeiIfPeSAqyGdQ"/>
<OpenModel_Profile:Preliminary xmi:id="_clBloKe5Eeixw5Ke5QD1pQ" base_Element="_Dg2QIJaaEeiGg_moIHe9Sw"/>
<OpenModel_Profile:Preliminary xmi:id="_eMQpMKe5Eeixw5Ke5QD1pQ" base_Element="_W7iKYJaeEeiGg_moIHe9Sw"/>
<OpenModel_Profile:Preliminary xmi:id="_fl9AAKe5Eeixw5Ke5QD1pQ" base_Element="_LsX6UDgXEeiOYfGHew0BGg"/>
<OpenModel_Profile:Preliminary xmi:id="_huR-cKe5Eeixw5Ke5QD1pQ" base_Element="_tFQGcDnLEeiWMf5FLWfdLA"/>
<OpenModel_Profile:Preliminary xmi:id="_jLXAcKe5Eeixw5Ke5QD1pQ" base_Element="_7hn1IDd1EeiIfPeSAqyGdQ"/>
<OpenModel_Profile:Preliminary xmi:id="_mWkYMKe5Eeixw5Ke5QD1pQ" base_Element="_Qmf1kDnFEeiWMf5FLWfdLA"/>
<OpenModel_Profile:Preliminary xmi:id="_n2f54Ke5Eeixw5Ke5QD1pQ" base_Element="_PjIasDa9EeivvI-m1BaAbA"/>
<OpenModel_Profile:Preliminary xmi:id="_p4PvMKe5Eeixw5Ke5QD1pQ" base_Element="_2aIggDa9EeivvI-m1BaAbA"/>
<OpenModel_Profile:Preliminary xmi:id="_r0DUkKe5Eeixw5Ke5QD1pQ" base_Element="_tMoywDnJEeiWMf5FLWfdLA"/>
<OpenModel_Profile:Preliminary xmi:id="_t0PDoKe5Eeixw5Ke5QD1pQ" base_Element="_B3kJsDnKEeiWMf5FLWfdLA"/>
</xmi:XMI>
|