summaryrefslogtreecommitdiffstats
path: root/papyrus/ONAP Information Model/Common.uml
blob: f609fc11d5c0880e4768c14ab63cef14515aad01 (plain)
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
<?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:Onap_Profile="http:///schemas/Onap_Profile/_O8WDEHu_EeiiR5bcbqvgpQ/2" xmlns:OpenModel_Profile="http:///schemas/OpenModel_Profile/_JpOasIJYEee3epvelL_xvA/25" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML" xsi:schemaLocation="http:///schemas/Onap_Profile/_O8WDEHu_EeiiR5bcbqvgpQ/2 Onap_Profile.profile.uml#_O8WqIHu_EeiiR5bcbqvgpQ http:///schemas/OpenModel_Profile/_JpOasIJYEee3epvelL_xvA/25 OpenModel_Profile.profile.uml#_JpVIYIJYEee3epvelL_xvA">
  <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.&#xD;
For VnfVirtualLinkDesc, the parent descriptor is the VNFD.&#xD;
For NsVirtualLinkDesc, the parent descriptor is the NSD.&#xD;
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="_Tw79tj2pEeiu6I5JfRTxxQ" name="testAccess">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Tw79tz2pEeiu6I5JfRTxxQ" annotatedElement="_Tw79tj2pEeiu6I5JfRTxxQ">
            <body>Specifies test access facilities expected on the VL (e.g. none, passive monitoring, or active (intrusive) loopbacks at endpoints.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Tw79uD2pEeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Tw79uT2pEeiu6I5JfRTxxQ" value="*"/>
        </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">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Jw1XcJWdEeiBQt0DCQoFTw" annotatedElement="_fvq58IUNEeiRGZJrXkgR0w">
            <body>Specifies the minimum bitrate requirements for the virtual link</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Vnf.uml#_LsX6UDgXEeiOYfGHew0BGg"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_lXNxQIUNEeiRGZJrXkgR0w" name="maxBitRateRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_MYlc0JWdEeiBQt0DCQoFTw" annotatedElement="_lXNxQIUNEeiRGZJrXkgR0w">
            <body>Specifies the maximum bitrate requirements for the virtual link</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Vnf.uml#_LsX6UDgXEeiOYfGHew0BGg"/>
        </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&#xD;
</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">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1RqaAJWbEeiBQt0DCQoFTw" annotatedElement="_n41coIUREeiRGZJrXkgR0w">
            <body>Only present when addressType is MAC address</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Vnf.uml#_X9TdUDdPEeiIfPeSAqyGdQ"/>
          <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">
          <ownedComment xmi:type="uml:Comment" xmi:id="_5QoxAJWbEeiBQt0DCQoFTw" annotatedElement="_fFI88IUSEeiRGZJrXkgR0w">
            <body>Only present when addressType is IP address</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Vnf.uml#_4oResDdPEeiIfPeSAqyGdQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GNTrwJddEei-sOl6ywWHlg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GNeq4JddEei-sOl6ywWHlg" value="1"/>
        </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="_1kdQsIFDEeieQ4zKGFzYtQ">
        <body>Number...</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_lcIFAJQ4Eei6kI-JPNdeuw">
        <body>combined NewState and OldStae into NotificationState</body>
      </ownedComment>
      <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.&#xD;
</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.&#xD;
</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 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.&#xD;
</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.&#xD;
</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).&#xD;
</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.&#xD;
</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>
    <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. &#xD;
</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.&#xD;
</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.&#xD;
&#xD;
Note: in ATTServiceSpecification - VesEventListener v5.4.1 type = field [].&#xD;
</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.&#xD;
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.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:Enumeration" href="model.uml#_tMoywDnJEeiWMf5FLWfdLA"/>
        </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:Enumeration" href="model.uml#_B3kJsDnKEeiWMf5FLWfdLA"/>
        </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="../NfvInformationModel/NfvModel.uml#_b2-3IG3HEeWFtNW2-lnElQ"/>
        </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).&#xD;
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="../NfvInformationModel/NfvModel.uml#_b2-3IG3HEeWFtNW2-lnElQ"/>
          <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 {&#xD;
        pattern&#xD;
          '[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}'; }&#xD;
&#xD;
A Universally Unique IDentifier in the string representation defined in RFC 4122.  The canonical representation uses lowercase characters.&#xD;
&#xD;
The following is an example of a UUID in string representation: f81d4fae-7dec-11d0-a765-00a0c91e6bf6 &quot;;&#xD;
      reference&#xD;
        &quot;RFC 4122: A Universally Unique IDentifier (UUID) URN Namespace&quot;</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;&#xD;
&#xD;
The uri type represents a Uniform Resource Identifier (URI) as defined by STD 66.&#xD;
&#xD;
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.&#xD;
&#xD;
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.&#xD;
&#xD;
Objects using the uri type may restrict the schemes that they permit.  For example, 'data:' and 'urn:' schemes might not be appropriate.&#xD;
&#xD;
A zero-length URI is not a valid URI.  This can be used to express 'URI absent' where required.&#xD;
&#xD;
In the value set and its semantics, this type is equivalent to the Uri SMIv2 textual convention defined in RFC 5017.&#xD;
    reference&#xD;
     &quot;RFC 3986: Uniform Resource Identifier (URI): Generic Syntax&#xD;
      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&#xD;
      RFC 5017: MIB Textual Conventions for Uniform Resource Identifiers (URIs)&quot;</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.&#xD;
</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">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_N61nIDeBEeiIfPeSAqyGdQ" name="layerProtocol">
          <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).&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:Enumeration" href="Vnf.uml#_tFQGcDnLEeiWMf5FLWfdLA"/>
        </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>
    <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.&#xD;
&#xD;
ONAP event messages are serialized as a unicode ASCII character string which may be formatted as JSON, XML, etc... Appropriate schemas will be supplied. &#xD;
</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.&#xD;
</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]&#xD;
</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="_a1gigInuEeiOe-BKGdv_Yg" annotatedElement="_DLbYsH7_EeifJIHxnlj6Cg">
              <body>domain - Event domain enumeration: &#xD;
&#xD;
‘fault’, ‘heartbeat’, ‘measurementsForVfScaling’, ‘mobileFlow’, ‘other’, ‘sipSignaling’, ‘stateChange’, ‘syslog’, ‘thresholdCrossingAlert’, ‘voiceQuality’&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_DkIzoH7_EeifJIHxnlj6Cg" name="eventId">
            <ownedComment xmi:type="uml:Comment" xmi:id="_dlPfMInuEeiOe-BKGdv_Yg" annotatedElement="_DkIzoH7_EeifJIHxnlj6Cg">
              <body>eventId -Event key that is unique to the event source.&#xD;
&#xD;
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.  &#xD;
&#xD;
The eventId should not include whitespaces.  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).&#xD;
</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.&#xD;
&#xD;
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: &#xD;
&#xD;
{DomainAbbreviation}_{NamingCode or ApplicationPlatform}_{DescriptionOfInfoBeingConveyed}&#xD;
&#xD;
Domain abbreviations are derived from the ‘domain’ field in the commonEventHeader, as specified below:&#xD;
‘Fault’ for the fault domain&#xD;
‘Heartbeat’ for the heartbeat domain&#xD;
‘Measurement’ for the measurements domain&#xD;
‘MobileFlow’ for the mobileFlow domain&#xD;
‘Other’ for the other domain&#xD;
‘PnfReg’ for the pnfRegistration domain&#xD;
‘SipSignaling’ for the sipSignaling domain&#xD;
‘StateChange’ for the stateChange domain&#xD;
‘Syslog’ for the syslog domain&#xD;
‘Tca’ for the thresholdCrossingAlert domain&#xD;
‘VoiceQuality’ for the voiceQuality domain&#xD;
</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="_jhCvQInuEeiOe-BKGdv_Yg" annotatedElement="_EU9zoH7_EeifJIHxnlj6Cg">
              <body>eventType - Needs to determine the source generating the event. The valid values are: ‘applicationVnf’, ‘guestOS’, ‘hostOS’, ‘platform’ &#xD;
&#xD;
applicationVNF:  When the event is related to the VNF application.&#xD;
&#xD;
guestOS:  When the event is related to the Operating System of the VM where the VNF is running on. &#xD;
&#xD;
platform:  When the event is related to the platform, hardware of where a VNF might be running on (including Jericho Cisco NCS Switch)&#xD;
&#xD;
hostOS:  When the event is related to the operating system of the hardware&#xD;
</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="_s_Ka4JESEei9Vqs7Ti8Wxg">
            <ownedComment xmi:type="uml:Comment" xmi:id="_iN6e0JESEei9Vqs7Ti8Wxg" annotatedElement="_E-nNkH7_EeifJIHxnlj6Cg">
              <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>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_FVmKMH7_EeifJIHxnlj6Cg" name="nfcNamingCode">
            <ownedComment xmi:type="uml:Comment" xmi:id="_oFBQwInuEeiOe-BKGdv_Yg" annotatedElement="_FVmKMH7_EeifJIHxnlj6Cg">
              <body>nfcNamingCode - Network function component type: 3 characters (aligned with vfc naming standards)&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_GtDsYH7_EeifJIHxnlj6Cg" name="nfNamingCode">
            <ownedComment xmi:type="uml:Comment" xmi:id="_qhTtAInuEeiOe-BKGdv_Yg" annotatedElement="_GtDsYH7_EeifJIHxnlj6Cg">
              <body>nfNamingCode - Network function type: 4 characters (aligned with Vnf naming standards).&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_HT7fIH7_EeifJIHxnlj6Cg" name="priority" type="_2x4t0InuEeiOe-BKGdv_Yg">
            <ownedComment xmi:type="uml:Comment" xmi:id="_sy-NoInuEeiOe-BKGdv_Yg" annotatedElement="_HT7fIH7_EeifJIHxnlj6Cg">
              <body>priority - Processing priority enumeration: ‘High’, ‘Medium’, ‘Normal’, ‘Low’&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_H15jwH7_EeifJIHxnlj6Cg" name="reportingEntityId">
            <ownedComment xmi:type="uml:Comment" xmi:id="_TlSyUInwEeiOe-BKGdv_Yg" annotatedElement="_H15jwH7_EeifJIHxnlj6Cg">
              <body>reportingEntityId - UUID identifying the entity reporting the event or detecting a problem in another xnf/vm or pnf which is experiencing the problem. &#xD;
&#xD;
Note: the AT&amp;T internal enrichment process shall ensure that this field is populated. The reportingEntityId is an id for the reportingEntityName. See reportingEntityName for more information.&#xD;
</body>
            </ownedComment>
            <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. &#xD;
&#xD;
Note: the AT&amp;T internal enrichment process shall ensure that this field is populated. The reportingEntityId is an id for the reportingEntityName. See reportingEntityName for more information.&#xD;
</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="_Vrx9sInwEeiOe-BKGdv_Yg" annotatedElement="_IPK_YH7_EeifJIHxnlj6Cg">
              <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.&#xD;
</body>
            </ownedComment>
            <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.&#xD;
</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="_XtAOkInwEeiOe-BKGdv_Yg" annotatedElement="_Inn7oH7_EeifJIHxnlj6Cg">
              <body>sequence - Ordering of events communicated by an event source instance (or 0 if not needed)&#xD;
</body>
            </ownedComment>
            <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)&#xD;
</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="_ZfzB4InwEeiOe-BKGdv_Yg" annotatedElement="_JDjCoH7_EeifJIHxnlj6Cg">
              <body>sourceId - UUID identifying the entity experiencing the event issue, which may be detected and reported by a separate reporting entity &#xD;
&#xD;
Note: the AT&amp;T internal enrichment process shall ensure that this field is populate). The sourceId is an id for the sourceName. See sourceName for more information.&#xD;
</body>
            </ownedComment>
            <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 &#xD;
&#xD;
Note: the AT&amp;T internal enrichment process shall ensure that this field is populate). The sourceId is an id for the sourceName. See sourceName for more information.&#xD;
</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="_bOiboInwEeiOe-BKGdv_Yg" annotatedElement="_JfMc0H7_EeifJIHxnlj6Cg">
              <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&amp;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.&#xD;
</body>
            </ownedComment>
            <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&amp;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.&#xD;
</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="_s_Ka4JESEei9Vqs7Ti8Wxg">
            <ownedComment xmi:type="uml:Comment" xmi:id="_dQnBEInwEeiOe-BKGdv_Yg" annotatedElement="_J8PlMH7_EeifJIHxnlj6Cg">
              <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…). &#xD;
&#xD;
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).&#xD;
</body>
            </ownedComment>
            <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…). &#xD;
&#xD;
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).&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_KV_h8H7_EeifJIHxnlj6Cg" name="timeZoneOffset">
            <ownedComment xmi:type="uml:Comment" xmi:id="_5VV38JETEei9Vqs7Ti8Wxg" annotatedElement="_KV_h8H7_EeifJIHxnlj6Cg">
              <body>timeZoneOffset - offset to/from GMT to indicate local timezone for device.&#xD;
&#xD;
Example:  +4, -5&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_PAciEH8DEeifJIHxnlj6Cg" name="version" type="_p3EKoDm0EeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_-SFewJETEei9Vqs7Ti8Wxg" annotatedElement="_PAciEH8DEeifJIHxnlj6Cg">
              <body>version - Version of the event header </body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_LZpLkJTdEeiYXO5wr78TUw" name="Kevin"/>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_h_gkMH7vEeifJIHxnlj6Cg" name="eventBody">
          <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.&#xD;
&#xD;
- faultField&#xD;
- heartbeat&#xD;
- measurementFields&#xD;
- mobileFlowFIelds&#xD;
- notificationFields&#xD;
- otherfields&#xD;
- pnfRegistrationFields&#xD;
- sipSignalingFields&#xD;
- stateChangeFields&#xD;
- syslogFields&#xD;
- thresholdCrosssingAlertFields&#xD;
- 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>faultFields - 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>measurementsFields - Fields specific to measurement events.&#xD;
</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>mobileFlowFields - Fields specific to mobilityFlow events.&#xD;
</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>notificationFields - Fields specific to notification events.&#xD;
</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.&#xD;
</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.&#xD;
</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>stateChangeFields - Fields specific to state change events.&#xD;
</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>syslogFields - Fields specific to syslog events.&#xD;
</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>thresholdCrossingAlertFields - 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>voiceQualityFields - Fields specific to voiceQuality events.&#xD;
</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&#xD;
</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.&#xD;
</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.&#xD;
</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>faultFields - Fields specific to fault events&#xD;
</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_U98FwIEoEeieQ4zKGFzYtQ" name="alarmAdditionalInformation" type="_yPR44IEoEeieQ4zKGFzYtQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_twbzYIFGEeieQ4zKGFzYtQ" annotatedElement="_U98FwIEoEeieQ4zKGFzYtQ">
              <body>alarmAdditionalInformation - additional Information related to Alarm, such as Repair Action, Remedy code.&#xD;
&#xD;
May by serialized alarm payload: varbind list, original syslog message, notification parameters, etc. when event is generated via other means, should provide raw detail out of element.&#xD;
</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="_v4PNYIFGEeieQ4zKGFzYtQ" annotatedElement="_YE4okIEoEeieQ4zKGFzYtQ">
              <body>alarmCondition - Short name of the alarm/problem, like trap name. Could be of SPECIFIC_PROBLEM list:&#xD;
(x733_SpecificProblems). &#xD;
&#xD;
Should be string to avoid duplicate dictionary translation. This should be a one word.&#xD;
&#xD;
Indicates the Alarm Condition as reported by the device.  Should be string to avoid duplicate dictionary translation. This would be a alarm description.&#xD;
&#xD;
Data from probableCause (3GPP and MTOSI) would be an alarm summary.&#xD;
</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="_yA478IFGEeieQ4zKGFzYtQ" annotatedElement="_YnPHsIEoEeieQ4zKGFzYtQ">
              <body>alarmInterfaceA - Provide port or channel or interface information when alarm is related with interface faults. Could be card/port, or channel, or interface name.&#xD;
&#xD;
Would represent the interface number the event on the sourceName is reported against, so alarm generated on the device interface could be identified against the far side (alarmInterfaceZ) based on logical or physical topology rather than having the information embedded somewhere else requiring regular expression extract.&#xD;
</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="_zxIxkIFGEeieQ4zKGFzYtQ" annotatedElement="_bAe3AIEoEeieQ4zKGFzYtQ">
              <body>eventCategory - Event category.&#xD;
&#xD;
For example: ‘license’, ‘link’, ‘routing’, ‘security’, ‘signaling’ &#xD;
</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="_-1wqsIFIEeieQ4zKGFzYtQ" annotatedElement="_dJIlkIEoEeieQ4zKGFzYtQ">
              <body>eventSeverity - Event severity enumeration.&#xD;
&#xD;
severity enumeration: &#xD;
‘CRITICAL’, ‘MAJOR’, ‘MINOR’, ‘WARNING’, ‘NORMAL’&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_fs6w8IEoEeieQ4zKGFzYtQ" name="eventSourceType">
            <ownedComment xmi:type="uml:Comment" xmi:id="_ArNwcIFJEeieQ4zKGFzYtQ" annotatedElement="_fs6w8IEoEeieQ4zKGFzYtQ">
              <body>eventSourceType - Provide the type of element the Source might be. This can be network function specific, or application specific.&#xD;
&#xD;
Examples: other, router, switch, host, card, port, slotThreshold, portThreshold, virtual machine, etc…&#xD;
&#xD;
Could also be PCRF, MMSC, NEM, MME, ENB, etc...&#xD;
</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="_CratoIFJEeieQ4zKGFzYtQ" annotatedElement="_gW0pkIEoEeieQ4zKGFzYtQ">
              <body>faultFieldsVersion - version of the faultFields block.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_h9bbAIEoEeieQ4zKGFzYtQ" name="specificProblem">
            <ownedComment xmi:type="uml:Comment" xmi:id="_ETkXMIFJEeieQ4zKGFzYtQ" annotatedElement="_h9bbAIEoEeieQ4zKGFzYtQ">
              <body>specificProblem - short name of the alarm/problem, like trap name. Could be of SPECIFIC_PROBLEM list: (x733_SpecificProblems). Should be string to avoid duplicate dictionary translation. This should be a one word.&#xD;
&#xD;
Example: LinkDown, BFDSessionDown, etc….  SpecificProblem (3GPP) or X733_SpecificProblem (MTOSI)&#xD;
</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="_Ga4pAIFJEeieQ4zKGFzYtQ" annotatedElement="_jH97gIEoEeieQ4zKGFzYtQ">
              <body>vfStatus - Used to report on VF status, both to indicate success/failure of start/stop/prepare to terminate events, but also to allow VF to request termination after unrecoverable errors.&#xD;
&#xD;
Enumeration; valid values are&#xD;
- Idle&#xD;
- Active&#xD;
- Preparing to terminate&#xD;
- Ready to terminate&#xD;
- Requesting termination&#xD;
</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="__y06cIFJEeieQ4zKGFzYtQ" annotatedElement="_suey4H7wEeifJIHxnlj6Cg">
            <body>additionalFields - Additional expansion fields if needed.&#xD;
</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>additionalFields - Additional expansion fields if needed.&#xD;
</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="_5mn24IFJEeieQ4zKGFzYtQ" annotatedElement="_gAWnUIFJEeieQ4zKGFzYtQ">
              <body>heartbeatFieldVersion - version of the heartbeatFields block.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_hCSlcIFJEeieQ4zKGFzYtQ" name="heartbeatInterval">
            <ownedComment xmi:type="uml:Comment" xmi:id="_9gENoIFJEeieQ4zKGFzYtQ" annotatedElement="_hCSlcIFJEeieQ4zKGFzYtQ">
              <body>heartbeatInterval - current heartbeatInterval in seconds.&#xD;
</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&#xD;
</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>additionalFields - Additional measurement fields if needed.&#xD;
&#xD;
</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="_mJP7YIFNEeieQ4zKGFzYtQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_ObQmoIFOEeieQ4zKGFzYtQ" annotatedElement="_Nyuj0IFKEeieQ4zKGFzYtQ">
              <body>additionalMeasurements - Array of named hashMap if needed.&#xD;
</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">
            <ownedComment xmi:type="uml:Comment" xmi:id="_QW8QMIFOEeieQ4zKGFzYtQ" annotatedElement="_ahVkcIFKEeieQ4zKGFzYtQ">
              <body>additionalObjects - Array of JSON objects described by name, schema and other meta-information, if needed.&#xD;
</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>codecUsageArray - array of codecs in use.&#xD;
</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>concurrentSessions - Peak concurrent sessions for the VM or VNF (depending on the context) over the measurementInterval.&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          </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>configuredEntities - 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 &#xD;
</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>cpuUsageArray - Usage of an array of CPUs&#xD;
</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>diskUsageArray - Usage of an array of disks.&#xD;
</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>featureUsageArray - The hashMap key should identify the feature, while the value defines the number of times the identified feature was used.&#xD;
</body>
            </ownedComment>
          </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>filesystemUsageArray - Filesystem usage of the VM on which the VNFC reporting the event is running.&#xD;
</body>
            </ownedComment>
          </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>hugePagesArray - Array of metrics on hugePages&#xD;
</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">
            <ownedComment xmi:type="uml:Comment" xmi:id="_HEH9IIm2EeiOe-BKGdv_Yg" annotatedElement="_g58sUIFKEeieQ4zKGFzYtQ">
              <body>ipmiArray - Array of intelligent platform management interface metrics.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_hlHwQIFKEeieQ4zKGFzYtQ" name="latencyDistribution">
            <ownedComment xmi:type="uml:Comment" xmi:id="_vY6q0JGyEeiUeLUnFxb3Bg" annotatedElement="_hlHwQIFKEeieQ4zKGFzYtQ">
              <body>latencyDistribution - 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.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_i9VgYIFKEeieQ4zKGFzYtQ" name="loadArray">
            <ownedComment xmi:type="uml:Comment" xmi:id="_w2xv8JGyEeiUeLUnFxb3Bg" annotatedElement="_i9VgYIFKEeieQ4zKGFzYtQ">
              <body>loadArray - Array of system load metrics&#xD;
</body>
            </ownedComment>
          </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.&#xD;
</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.&#xD;
</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.&#xD;
</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). &#xD;
</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&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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&#xD;
</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&#xD;
</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.&#xD;
</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&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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&#xD;
</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...&#xD;
</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&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
&#xD;
Note: current data type (String) may be changed to Common Resource Datatype L3AddressData. =[gh]=&#xD;
</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&#xD;
</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...&#xD;
</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&#xD;
</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)&#xD;
</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.&#xD;
&#xD;
Note: current data type (String) may be changed to Common Resource Datatype L3AddressData. =[gh]=&#xD;
&#xD;
</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.&#xD;
</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&#xD;
</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.&#xD;
</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&#xD;
</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&#xD;
</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&#xD;
</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="namedHashMap">
          <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. &#xD;
</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.&#xD;
</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.&#xD;
&#xD;
Note: in ATTServiceSpecification - VesEventListener v5.4.1 type = field [].&#xD;
</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.&#xD;
</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&#xD;
</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.&#xD;
</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.&#xD;
</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. &#xD;
e.g., auto discovery. configuration changed, capability added, capability removed, capability changed, etc.&#xD;
</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.&#xD;
&#xD;
For example: &quot;inService&quot;, &quot;outOfService&quot;, &quot;maintenance&quot;, &quot;completed&quot;, &quot;partial&quot; (for configuration changes)&#xD;
</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.&#xD;
</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.&#xD;
&#xD;
For example: &quot;inService&quot;, &quot;outOfService&quot;, &quot;maintenance&quot;&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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="severity">
          <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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
&#xD;
Note: current data type (String) may be changed to Common Resource Datatype L3AddressData. =[gh]=&#xD;
&#xD;
</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.&#xD;
</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.&#xD;
&#xD;
Note: current data type (String) may be changed to Common Resource Datatype L3AddressData. =[gh]=&#xD;
&#xD;
</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&#xD;
</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.&#xD;
</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).&#xD;
</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.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_2XJ9UH7wEeifJIHxnlj6Cg" name="stateChangeFields"/>
        <packagedElement xmi:type="uml:DataType" xmi:id="_7F_D8H7wEeifJIHxnlj6Cg" name="syslogFields"/>
        <packagedElement xmi:type="uml:DataType" xmi:id="_8IBvwH7wEeifJIHxnlj6Cg" name="thresholdCrossingAlertFields"/>
        <packagedElement xmi:type="uml:Enumeration" xmi:id="_H0pqkIFEEeieQ4zKGFzYtQ" name="vfStatus">
          <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="Requesting termination"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_R38pkIFGEeieQ4zKGFzYtQ" name="Ready to terminate"/>
        </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.&#xD;
</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 &quot;niced&quot;.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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&#xD;
</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.&#xD;
</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 &quot;x Core CPU @ y GHz&quot; (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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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. &#xD;
</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. &#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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&#xD;
</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.&#xD;
</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.&#xD;
</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&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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.&#xD;
</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&#xD;
</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&#xD;
</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.&#xD;
</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).&#xD;
</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: &#xD;
&#xD;
‘fault’, ‘heartbeat’, ‘measurementsForVfScaling’, ‘mobileFlow’, ‘other’, ‘sipSignaling’, ‘stateChange’, ‘syslog’, ‘thresholdCrossingAlert’, ‘voiceQuality’&#xD;
</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="sipSignaling"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_xzSYwInhEeiOe-BKGdv_Yg" name="stateChange"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_y5OGEInhEeiOe-BKGdv_Yg" name="syslog"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_3Eo9oInhEeiOe-BKGdv_Yg" name="thresholdCrossingAlert"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_4T_FoInhEeiOe-BKGdv_Yg" name="voiceQuality"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Enumeration" xmi:id="_VZxGkJQ2Eei6kI-JPNdeuw" name="notificationState">
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_bN1-AJQ2Eei6kI-JPNdeuw" name="inService"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_cnWHkJQ2Eei6kI-JPNdeuw" name="maintenance"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_eugBUJQ2Eei6kI-JPNdeuw" name="outOfService"/>
        </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.&#xD;
</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.&#xD;
</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.&#xD;
</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&#xD;
</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>
    </packagedElement>
  </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-Z8T2pEeiu6I5JfRTxxQ" base_StructuralFeature="_Tw79tj2pEeiu6I5JfRTxxQ"/>
  <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="_Io3nQUSzEeiVGPeZpaYNtQ">
    <base_Class xmi:type="uml:Class" href="Vnf.uml#_Io3nQESzEeiVGPeZpaYNtQ"/>
  </OpenModel_Profile:OpenModelClass>
  <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="_fMPpYES6EeiVGPeZpaYNtQ">
    <base_Class xmi:type="uml:Class" href="Vnf.uml#_fMPCUES6EeiVGPeZpaYNtQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8c11oES6EeiVGPeZpaYNtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Vnf.uml#_8c1OkES6EeiVGPeZpaYNtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjqv8Hu_EeiiR5bcbqvgpQ" base_Class="_Tw79sD2pEeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjslIHu_EeiiR5bcbqvgpQ" base_Property="_Tw79sj2pEeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjtMMHu_EeiiR5bcbqvgpQ" base_Property="_Tw79tD2pEeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjtMMXu_EeiiR5bcbqvgpQ" base_Property="_Tw79tj2pEeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjtzQHu_EeiiR5bcbqvgpQ" base_Property="_Tw79uj2pEeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjtzQXu_EeiiR5bcbqvgpQ" base_Class="_VtzSoESyEeiVGPeZpaYNtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjtzQnu_EeiiR5bcbqvgpQ" base_Class="_Tw5PIES0EeiVGPeZpaYNtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjuaUHu_EeiiR5bcbqvgpQ" base_Property="_vV1x4kS0EeiVGPeZpaYNtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjuaUXu_EeiiR5bcbqvgpQ" base_Class="_il0cAES0EeiVGPeZpaYNtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjuaUnu_EeiiR5bcbqvgpQ" base_Property="_H85nMkS1EeiVGPeZpaYNtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjvBYHu_EeiiR5bcbqvgpQ" base_Class="_8naVoES0EeiVGPeZpaYNtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjvBYXu_EeiiR5bcbqvgpQ" base_Property="_vWZykES0EeiVGPeZpaYNtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjvBYnu_EeiiR5bcbqvgpQ" base_Property="_H9AU4US1EeiVGPeZpaYNtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjvocHu_EeiiR5bcbqvgpQ" base_Property="_P-qXMj2vEeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjvocXu_EeiiR5bcbqvgpQ" base_Property="_P-qXND2vEeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjvocnu_EeiiR5bcbqvgpQ" base_Property="_P-qXNj2vEeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjvoc3u_EeiiR5bcbqvgpQ" base_Property="_RVZi0T2-Eeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjwPgHu_EeiiR5bcbqvgpQ" base_Property="_RVZi0z2-Eeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjwPgXu_EeiiR5bcbqvgpQ" base_Property="_nPNHsj2-Eeiu6I5JfRTxxQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bjwPgnu_EeiiR5bcbqvgpQ" base_Property="_nPNHtD2-Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_PmI1oH7uEeifJIHxnlj6Cg" base_Class="_PmIOkH7uEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_PmJcsH7uEeifJIHxnlj6Cg" base_Class="_PmIOkH7uEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_VhJbgH7uEeifJIHxnlj6Cg" base_Property="_VhI0cH7uEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VhJbgX7uEeifJIHxnlj6Cg" base_StructuralFeature="_VhI0cH7uEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_YlvN4H7uEeifJIHxnlj6Cg" base_Property="_Ylum0H7uEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YlvN4X7uEeifJIHxnlj6Cg" base_StructuralFeature="_Ylum0H7uEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_g60FoX7yEeifJIHxnlj6Cg" base_Property="_g60FoH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_g60Fon7yEeifJIHxnlj6Cg" base_StructuralFeature="_g60FoH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_iviyoX7yEeifJIHxnlj6Cg" base_Property="_iviyoH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ivjZsH7yEeifJIHxnlj6Cg" base_StructuralFeature="_iviyoH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_jaKc8H7yEeifJIHxnlj6Cg" base_Property="_jaJ14H7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jaKc8X7yEeifJIHxnlj6Cg" base_StructuralFeature="_jaJ14H7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_j9YewH7yEeifJIHxnlj6Cg" base_Property="_j9X3sH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_j9YewX7yEeifJIHxnlj6Cg" base_StructuralFeature="_j9X3sH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_kefnwX7yEeifJIHxnlj6Cg" base_Property="_kefnwH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kegO0H7yEeifJIHxnlj6Cg" base_StructuralFeature="_kefnwH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_k8PTsX7yEeifJIHxnlj6Cg" base_Property="_k8PTsH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_k8P6wH7yEeifJIHxnlj6Cg" base_StructuralFeature="_k8PTsH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_lYxesX7yEeifJIHxnlj6Cg" base_Property="_lYxesH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lYxesn7yEeifJIHxnlj6Cg" base_StructuralFeature="_lYxesH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_l1blgH7yEeifJIHxnlj6Cg" base_Property="_l1a-cH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_l1blgX7yEeifJIHxnlj6Cg" base_StructuralFeature="_l1a-cH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_mOxSkX7yEeifJIHxnlj6Cg" base_Property="_mOxSkH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mOxSkn7yEeifJIHxnlj6Cg" base_StructuralFeature="_mOxSkH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_mqtnsH7yEeifJIHxnlj6Cg" base_Property="_mqtAoH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mqtnsX7yEeifJIHxnlj6Cg" base_StructuralFeature="_mqtAoH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_oLQ0cX7yEeifJIHxnlj6Cg" base_Property="_oLQ0cH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oLRbgH7yEeifJIHxnlj6Cg" base_StructuralFeature="_oLQ0cH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_otVmwX7yEeifJIHxnlj6Cg" base_Property="_otVmwH7yEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_otVmwn7yEeifJIHxnlj6Cg" base_StructuralFeature="_otVmwH7yEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_DLbYsX7_EeifJIHxnlj6Cg" base_Property="_DLbYsH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DLbYsn7_EeifJIHxnlj6Cg" base_StructuralFeature="_DLbYsH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_DkIzoX7_EeifJIHxnlj6Cg" base_Property="_DkIzoH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DkIzon7_EeifJIHxnlj6Cg" base_StructuralFeature="_DkIzoH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_D9KXoH7_EeifJIHxnlj6Cg" base_Property="_D9JwkH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_D9KXoX7_EeifJIHxnlj6Cg" base_StructuralFeature="_D9JwkH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_EU9zoX7_EeifJIHxnlj6Cg" base_Property="_EU9zoH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_EU9zon7_EeifJIHxnlj6Cg" base_StructuralFeature="_EU9zoH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_E-nNkX7_EeifJIHxnlj6Cg" base_Property="_E-nNkH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E-nNkn7_EeifJIHxnlj6Cg" base_StructuralFeature="_E-nNkH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_FVmxQH7_EeifJIHxnlj6Cg" base_Property="_FVmKMH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FVmxQX7_EeifJIHxnlj6Cg" base_StructuralFeature="_FVmKMH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_GtETcH7_EeifJIHxnlj6Cg" base_Property="_GtDsYH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GtETcX7_EeifJIHxnlj6Cg" base_StructuralFeature="_GtDsYH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_HT7fIX7_EeifJIHxnlj6Cg" base_Property="_HT7fIH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HT8GMH7_EeifJIHxnlj6Cg" base_StructuralFeature="_HT7fIH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_H15jwX7_EeifJIHxnlj6Cg" base_Property="_H15jwH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H15jwn7_EeifJIHxnlj6Cg" base_StructuralFeature="_H15jwH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_IPK_YX7_EeifJIHxnlj6Cg" base_Property="_IPK_YH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IPK_Yn7_EeifJIHxnlj6Cg" base_StructuralFeature="_IPK_YH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Inn7oX7_EeifJIHxnlj6Cg" base_Property="_Inn7oH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Inn7on7_EeifJIHxnlj6Cg" base_StructuralFeature="_Inn7oH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_JDjCoX7_EeifJIHxnlj6Cg" base_Property="_JDjCoH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JDjCon7_EeifJIHxnlj6Cg" base_StructuralFeature="_JDjCoH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_JfMc0X7_EeifJIHxnlj6Cg" base_Property="_JfMc0H7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JfMc0n7_EeifJIHxnlj6Cg" base_StructuralFeature="_JfMc0H7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_J8PlMX7_EeifJIHxnlj6Cg" base_Property="_J8PlMH7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J8PlMn7_EeifJIHxnlj6Cg" base_StructuralFeature="_J8PlMH7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_KV_h8X7_EeifJIHxnlj6Cg" base_Property="_KV_h8H7_EeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KV_h8n7_EeifJIHxnlj6Cg" base_StructuralFeature="_KV_h8H7_EeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_PAciEX8DEeifJIHxnlj6Cg" base_Property="_PAciEH8DEeifJIHxnlj6Cg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PAdJIH8DEeifJIHxnlj6Cg" base_StructuralFeature="_PAciEH8DEeifJIHxnlj6Cg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_U99T4IEoEeieQ4zKGFzYtQ" base_Property="_U98FwIEoEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_U-BlUIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_U98FwIEoEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_YE5PoIEoEeieQ4zKGFzYtQ" base_Property="_YE4okIEoEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YE52sIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_YE4okIEoEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_YnPHsYEoEeieQ4zKGFzYtQ" base_Property="_YnPHsIEoEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YnPuwIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_YnPHsIEoEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bAe3AYEoEeieQ4zKGFzYtQ" base_Property="_bAe3AIEoEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bAfeEIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_bAe3AIEoEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_dJJMoIEoEeieQ4zKGFzYtQ" base_Property="_dJIlkIEoEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dJJMoYEoEeieQ4zKGFzYtQ" base_StructuralFeature="_dJIlkIEoEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_fs6w8YEoEeieQ4zKGFzYtQ" base_Property="_fs6w8IEoEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fs6w8oEoEeieQ4zKGFzYtQ" base_StructuralFeature="_fs6w8IEoEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_gW0pkYEoEeieQ4zKGFzYtQ" base_Property="_gW0pkIEoEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gW1QoIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_gW0pkIEoEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_h9bbAYEoEeieQ4zKGFzYtQ" base_Property="_h9bbAIEoEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_h9cCEIEoEeieQ4zKGFzYtQ" base_StructuralFeature="_h9bbAIEoEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_jH-ikIEoEeieQ4zKGFzYtQ" base_Property="_jH97gIEoEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jH-ikYEoEeieQ4zKGFzYtQ" base_StructuralFeature="_jH97gIEoEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_k1NrAIEpEeieQ4zKGFzYtQ" base_Property="_k1ND8IEpEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_k1NrAYEpEeieQ4zKGFzYtQ" base_StructuralFeature="_k1ND8IEpEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_rEkJMYEpEeieQ4zKGFzYtQ" base_Property="_rEkJMIEpEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rEkwQIEpEeieQ4zKGFzYtQ" base_StructuralFeature="_rEkJMIEpEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_fTh9kYFJEeieQ4zKGFzYtQ" base_Property="_fTh9kIFJEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fTikoIFJEeieQ4zKGFzYtQ" base_StructuralFeature="_fTh9kIFJEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_gAXOYIFJEeieQ4zKGFzYtQ" base_Property="_gAWnUIFJEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gAXOYYFJEeieQ4zKGFzYtQ" base_StructuralFeature="_gAWnUIFJEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_hCTMgIFJEeieQ4zKGFzYtQ" base_Property="_hCSlcIFJEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hCTMgYFJEeieQ4zKGFzYtQ" base_StructuralFeature="_hCSlcIFJEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_MIUQcYFKEeieQ4zKGFzYtQ" base_Property="_MIUQcIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MIUQcoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_MIUQcIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_NyvK4IFKEeieQ4zKGFzYtQ" base_Property="_Nyuj0IFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NyvK4YFKEeieQ4zKGFzYtQ" base_StructuralFeature="_Nyuj0IFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ahVkcYFKEeieQ4zKGFzYtQ" base_Property="_ahVkcIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ahVkcoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_ahVkcIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_br89cYFKEeieQ4zKGFzYtQ" base_Property="_br89cIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_br89coFKEeieQ4zKGFzYtQ" base_StructuralFeature="_br89cIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_cvnZ4YFKEeieQ4zKGFzYtQ" base_Property="_cvnZ4IFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cvnZ4oFKEeieQ4zKGFzYtQ" base_StructuralFeature="_cvnZ4IFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_daMn8YFKEeieQ4zKGFzYtQ" base_Property="_daMn8IFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_daMn8oFKEeieQ4zKGFzYtQ" base_StructuralFeature="_daMn8IFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_eBMWgYFKEeieQ4zKGFzYtQ" base_Property="_eBMWgIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_eBM9kIFKEeieQ4zKGFzYtQ" base_StructuralFeature="_eBMWgIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_esG7wYFKEeieQ4zKGFzYtQ" base_Property="_esG7wIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_esHi0IFKEeieQ4zKGFzYtQ" base_StructuralFeature="_esG7wIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_fOZJcYFKEeieQ4zKGFzYtQ" base_Property="_fOZJcIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fOZJcoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_fOZJcIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_fzeMcYFKEeieQ4zKGFzYtQ" base_Property="_fzeMcIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fzeMcoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_fzeMcIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_gWrAIYFKEeieQ4zKGFzYtQ" base_Property="_gWrAIIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gWrAIoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_gWrAIIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_g58sUYFKEeieQ4zKGFzYtQ" base_Property="_g58sUIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_g58sUoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_g58sUIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_hlIXUIFKEeieQ4zKGFzYtQ" base_Property="_hlHwQIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hlIXUYFKEeieQ4zKGFzYtQ" base_StructuralFeature="_hlHwQIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_i9VgYYFKEeieQ4zKGFzYtQ" base_Property="_i9VgYIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_i9VgYoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_i9VgYIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_oGLCcYFKEeieQ4zKGFzYtQ" base_Property="_oGLCcIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oGLCcoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_oGLCcIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_pW31UYFKEeieQ4zKGFzYtQ" base_Property="_pW31UIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pW31UoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_pW31UIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_sw_LwYFKEeieQ4zKGFzYtQ" base_Property="_sw_LwIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sw_LwoFKEeieQ4zKGFzYtQ" base_StructuralFeature="_sw_LwIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_uh6W0YFKEeieQ4zKGFzYtQ" base_Property="_uh6W0IFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uh694IFKEeieQ4zKGFzYtQ" base_StructuralFeature="_uh6W0IFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_xB0u0IFKEeieQ4zKGFzYtQ" base_Property="_xB0HwIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xB0u0YFKEeieQ4zKGFzYtQ" base_StructuralFeature="_xB0HwIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_xj0ooYFKEeieQ4zKGFzYtQ" base_Property="_xj0ooIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xj1PsIFKEeieQ4zKGFzYtQ" base_StructuralFeature="_xj0ooIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_zM3qEYFKEeieQ4zKGFzYtQ" base_Property="_zM3qEIFKEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zM4RIIFKEeieQ4zKGFzYtQ" base_StructuralFeature="_zM3qEIFKEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_rPjG0YFNEeieQ4zKGFzYtQ" base_Property="_rPjG0IFNEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rPjt4IFNEeieQ4zKGFzYtQ" base_StructuralFeature="_rPjG0IFNEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_r7owwYFNEeieQ4zKGFzYtQ" base_Property="_r7owwIFNEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_r7owwoFNEeieQ4zKGFzYtQ" base_StructuralFeature="_r7owwIFNEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_0AyfsYFdEeieQ4zKGFzYtQ" base_Property="_0AyfsIFdEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0AyfsoFdEeieQ4zKGFzYtQ" base_StructuralFeature="_0AyfsIFdEeieQ4zKGFzYtQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_0tIBQYFdEeieQ4zKGFzYtQ" base_Property="_0tIBQIFdEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0tIBQoFdEeieQ4zKGFzYtQ" base_StructuralFeature="_0tIBQIFdEeieQ4zKGFzYtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_CITLkIOQEeivtfz_CvwDeA" base_StructuralFeature="_CISkgIOQEeivtfz_CvwDeA"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_CITyoIOQEeivtfz_CvwDeA" base_Property="_CISkgIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DYK4AYOQEeivtfz_CvwDeA" base_StructuralFeature="_DYK4AIOQEeivtfz_CvwDeA"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_DYK4AoOQEeivtfz_CvwDeA" base_Property="_DYK4AIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ECr0oYOQEeivtfz_CvwDeA" base_StructuralFeature="_ECr0oIOQEeivtfz_CvwDeA"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ECsbsIOQEeivtfz_CvwDeA" base_Property="_ECr0oIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Fpc-IYOQEeivtfz_CvwDeA" base_StructuralFeature="_Fpc-IIOQEeivtfz_CvwDeA"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Fpc-IoOQEeivtfz_CvwDeA" base_Property="_Fpc-IIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KS51gYOQEeivtfz_CvwDeA" base_StructuralFeature="_KS51gIOQEeivtfz_CvwDeA"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_KS6ckIOQEeivtfz_CvwDeA" base_Property="_KS51gIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LMkBYYOQEeivtfz_CvwDeA" base_StructuralFeature="_LMkBYIOQEeivtfz_CvwDeA"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_LMkocIOQEeivtfz_CvwDeA" base_Property="_LMkBYIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LuBIoIOQEeivtfz_CvwDeA" base_StructuralFeature="_LuAhkIOQEeivtfz_CvwDeA"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_LuBIoYOQEeivtfz_CvwDeA" base_Property="_LuAhkIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NRP18YOQEeivtfz_CvwDeA" base_StructuralFeature="_NRP18IOQEeivtfz_CvwDeA"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_NRP18oOQEeivtfz_CvwDeA" base_Property="_NRP18IOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OGol0IOQEeivtfz_CvwDeA" base_StructuralFeature="_OGn-wIOQEeivtfz_CvwDeA"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_OGol0YOQEeivtfz_CvwDeA" base_Property="_OGn-wIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fvsIEIUNEeiRGZJrXkgR0w" base_StructuralFeature="_fvq58IUNEeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_fvt9QIUNEeiRGZJrXkgR0w" base_Property="_fvq58IUNEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lXOYUIUNEeiRGZJrXkgR0w" base_StructuralFeature="_lXNxQIUNEeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_lXO_YIUNEeiRGZJrXkgR0w" base_Property="_lXNxQIUNEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mgbcEYUNEeiRGZJrXkgR0w" base_StructuralFeature="_mgbcEIUNEeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_mgcDIIUNEeiRGZJrXkgR0w" base_Property="_mgbcEIUNEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H6eUgIUPEeiRGZJrXkgR0w" base_StructuralFeature="_H6dtcIUPEeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_H6e7kIUPEeiRGZJrXkgR0w" base_Property="_H6dtcIUPEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IZd9oIUPEeiRGZJrXkgR0w" base_StructuralFeature="_IZdWkIUPEeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_IZeksIUPEeiRGZJrXkgR0w" base_Property="_IZdWkIUPEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_I4dmwIUPEeiRGZJrXkgR0w" base_StructuralFeature="_I4c_sIUPEeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_I4dmwYUPEeiRGZJrXkgR0w" base_Property="_I4c_sIUPEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JZP_oIUPEeiRGZJrXkgR0w" base_StructuralFeature="_JZPYkIUPEeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_JZP_oYUPEeiRGZJrXkgR0w" base_Property="_JZPYkIUPEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gQaSsYUREeiRGZJrXkgR0w" base_StructuralFeature="_gQaSsIUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_gQa5wIUREeiRGZJrXkgR0w" base_Property="_gQaSsIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_g3C04YUREeiRGZJrXkgR0w" base_StructuralFeature="_g3C04IUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_g3Db8IUREeiRGZJrXkgR0w" base_Property="_g3C04IUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_haSE0YUREeiRGZJrXkgR0w" base_StructuralFeature="_haSE0IUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_haSE0oUREeiRGZJrXkgR0w" base_Property="_haSE0IUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_h5E5oIUREeiRGZJrXkgR0w" base_StructuralFeature="_h5ESkIUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_h5E5oYUREeiRGZJrXkgR0w" base_Property="_h5ESkIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_idmjAYUREeiRGZJrXkgR0w" base_StructuralFeature="_idmjAIUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_idmjAoUREeiRGZJrXkgR0w" base_Property="_idmjAIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_i5ktUIUREeiRGZJrXkgR0w" base_StructuralFeature="_i5kGQIUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_i5ktUYUREeiRGZJrXkgR0w" base_Property="_i5kGQIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jazyIYUREeiRGZJrXkgR0w" base_StructuralFeature="_jazyIIUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_jazyIoUREeiRGZJrXkgR0w" base_Property="_jazyIIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_j7onQYUREeiRGZJrXkgR0w" base_StructuralFeature="_j7onQIUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_j7onQoUREeiRGZJrXkgR0w" base_Property="_j7onQIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ljD4EYUREeiRGZJrXkgR0w" base_StructuralFeature="_ljD4EIUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ljEfIIUREeiRGZJrXkgR0w" base_Property="_ljD4EIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_l-B80YUREeiRGZJrXkgR0w" base_StructuralFeature="_l-B80IUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_l-B80oUREeiRGZJrXkgR0w" base_Property="_l-B80IUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mYlK0YUREeiRGZJrXkgR0w" base_StructuralFeature="_mYlK0IUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_mYlK0oUREeiRGZJrXkgR0w" base_Property="_mYlK0IUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mw0rsYUREeiRGZJrXkgR0w" base_StructuralFeature="_mw0rsIUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_mw1SwIUREeiRGZJrXkgR0w" base_Property="_mw0rsIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nJ1ooIUREeiRGZJrXkgR0w" base_StructuralFeature="_nJ1BkIUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_nJ1ooYUREeiRGZJrXkgR0w" base_Property="_nJ1BkIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n42DsIUREeiRGZJrXkgR0w" base_StructuralFeature="_n41coIUREeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_n42DsYUREeiRGZJrXkgR0w" base_Property="_n41coIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fFI88YUSEeiRGZJrXkgR0w" base_StructuralFeature="_fFI88IUSEeiRGZJrXkgR0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_fFJkAIUSEeiRGZJrXkgR0w" base_Property="_fFI88IUSEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MAG38IbiEei-x_BD9U-ssQ" base_StructuralFeature="_MAGQ4IbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_MAHfAIbiEei-x_BD9U-ssQ" base_Property="_MAGQ4IbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NvX2IYbiEei-x_BD9U-ssQ" base_StructuralFeature="_NvX2IIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_NvYdMIbiEei-x_BD9U-ssQ" base_Property="_NvX2IIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OUhKkIbiEei-x_BD9U-ssQ" base_StructuralFeature="_OUgjgIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_OUhKkYbiEei-x_BD9U-ssQ" base_Property="_OUgjgIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QoSkAYbiEei-x_BD9U-ssQ" base_StructuralFeature="_QoSkAIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_QoTLEIbiEei-x_BD9U-ssQ" base_Property="_QoSkAIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_S7iZAYbiEei-x_BD9U-ssQ" base_StructuralFeature="_S7iZAIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_S7iZAobiEei-x_BD9U-ssQ" base_Property="_S7iZAIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TdtR8YbiEei-x_BD9U-ssQ" base_StructuralFeature="_TdtR8IbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Tdt5AIbiEei-x_BD9U-ssQ" base_Property="_TdtR8IbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UCG_gIbiEei-x_BD9U-ssQ" base_StructuralFeature="_UCGYcIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_UCG_gYbiEei-x_BD9U-ssQ" base_Property="_UCGYcIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UgasIIbiEei-x_BD9U-ssQ" base_StructuralFeature="_UgaFEIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_UgasIYbiEei-x_BD9U-ssQ" base_Property="_UgaFEIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VASfAYbiEei-x_BD9U-ssQ" base_StructuralFeature="_VASfAIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_VASfAobiEei-x_BD9U-ssQ" base_Property="_VASfAIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ViLEEYbiEei-x_BD9U-ssQ" base_StructuralFeature="_ViLEEIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ViLrIIbiEei-x_BD9U-ssQ" base_Property="_ViLEEIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WBJfEYbiEei-x_BD9U-ssQ" base_StructuralFeature="_WBJfEIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_WBJfEobiEei-x_BD9U-ssQ" base_Property="_WBJfEIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WZyBgYbiEei-x_BD9U-ssQ" base_StructuralFeature="_WZyBgIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_WZyBgobiEei-x_BD9U-ssQ" base_Property="_WZyBgIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_W5dAEYbiEei-x_BD9U-ssQ" base_StructuralFeature="_W5dAEIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_W5dAEobiEei-x_BD9U-ssQ" base_Property="_W5dAEIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XgoU0IbiEei-x_BD9U-ssQ" base_StructuralFeature="_XgntwIbiEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_XgoU0YbiEei-x_BD9U-ssQ" base_Property="_XgntwIbiEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ku_sMYblEei-x_BD9U-ssQ" base_StructuralFeature="_ku_sMIblEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ku_sMoblEei-x_BD9U-ssQ" base_Property="_ku_sMIblEei-x_BD9U-ssQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_levuIIblEei-x_BD9U-ssQ" base_StructuralFeature="_levHEIblEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_levuIYblEei-x_BD9U-ssQ" base_Property="_levHEIblEei-x_BD9U-ssQ"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ppPtYIkOEeiddpojVtQ0Hg" base_Property="_ppPGUIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ppQ7gIkOEeiddpojVtQ0Hg" base_StructuralFeature="_ppPGUIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_qoYPIIkOEeiddpojVtQ0Hg" base_Property="_qoXoEIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qoYPIYkOEeiddpojVtQ0Hg" base_StructuralFeature="_qoXoEIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_wNHqEIkOEeiddpojVtQ0Hg" base_Property="_wNHDAIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wNHqEYkOEeiddpojVtQ0Hg" base_StructuralFeature="_wNHDAIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_w4cfAIkOEeiddpojVtQ0Hg" base_Property="_w4b38IkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_w4cfAYkOEeiddpojVtQ0Hg" base_StructuralFeature="_w4b38IkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_yfCpYIkOEeiddpojVtQ0Hg" base_Property="_yfCCUIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yfCpYYkOEeiddpojVtQ0Hg" base_StructuralFeature="_yfCCUIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_1Lm9UYkOEeiddpojVtQ0Hg" base_Property="_1Lm9UIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1LnkYIkOEeiddpojVtQ0Hg" base_StructuralFeature="_1Lm9UIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_2RzwYYkOEeiddpojVtQ0Hg" base_Property="_2RzwYIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2RzwYokOEeiddpojVtQ0Hg" base_StructuralFeature="_2RzwYIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_3Y4GIYkOEeiddpojVtQ0Hg" base_Property="_3Y4GIIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3Y4GIokOEeiddpojVtQ0Hg" base_StructuralFeature="_3Y4GIIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_4OwlQYkOEeiddpojVtQ0Hg" base_Property="_4OwlQIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4OwlQokOEeiddpojVtQ0Hg" base_StructuralFeature="_4OwlQIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_5DemwIkOEeiddpojVtQ0Hg" base_Property="_5Dd_sIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5DemwYkOEeiddpojVtQ0Hg" base_StructuralFeature="_5Dd_sIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_7AlzsYkOEeiddpojVtQ0Hg" base_Property="_7AlzsIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7AlzsokOEeiddpojVtQ0Hg" base_StructuralFeature="_7AlzsIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_8ZLXQYkOEeiddpojVtQ0Hg" base_Property="_8ZLXQIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8ZL-UIkOEeiddpojVtQ0Hg" base_StructuralFeature="_8ZLXQIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_9A--IYkOEeiddpojVtQ0Hg" base_Property="_9A--IIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9A--IokOEeiddpojVtQ0Hg" base_StructuralFeature="_9A--IIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_9tdpoIkOEeiddpojVtQ0Hg" base_Property="_9tdCkIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9tdpoYkOEeiddpojVtQ0Hg" base_StructuralFeature="_9tdCkIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_-TDqAIkOEeiddpojVtQ0Hg" base_Property="_-TDC8IkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-TDqAYkOEeiddpojVtQ0Hg" base_StructuralFeature="_-TDC8IkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="__B-lgYkOEeiddpojVtQ0Hg" base_Property="__B-lgIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__B-lgokOEeiddpojVtQ0Hg" base_StructuralFeature="__B-lgIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="__zaCcIkOEeiddpojVtQ0Hg" base_Property="__zZbYIkOEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__zaCcYkOEeiddpojVtQ0Hg" base_StructuralFeature="__zZbYIkOEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_EC_oUIkPEeiddpojVtQ0Hg" base_Property="_EC_BQIkPEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_EC_oUYkPEeiddpojVtQ0Hg" base_StructuralFeature="_EC_BQIkPEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_FCgkkYkPEeiddpojVtQ0Hg" base_Property="_FCgkkIkPEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FCgkkokPEeiddpojVtQ0Hg" base_StructuralFeature="_FCgkkIkPEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_FwTesYkPEeiddpojVtQ0Hg" base_Property="_FwTesIkPEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FwUFwIkPEeiddpojVtQ0Hg" base_StructuralFeature="_FwTesIkPEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_GinscYkPEeiddpojVtQ0Hg" base_Property="_GinscIkPEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GioTgIkPEeiddpojVtQ0Hg" base_StructuralFeature="_GinscIkPEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_IbFp8IkPEeiddpojVtQ0Hg" base_Property="_IbFC4IkPEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IbFp8YkPEeiddpojVtQ0Hg" base_StructuralFeature="_IbFC4IkPEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_JLOtcYkPEeiddpojVtQ0Hg" base_Property="_JLOtcIkPEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JLOtcokPEeiddpojVtQ0Hg" base_StructuralFeature="_JLOtcIkPEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Jxv64YkPEeiddpojVtQ0Hg" base_Property="_Jxv64IkPEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Jxwh8IkPEeiddpojVtQ0Hg" base_StructuralFeature="_Jxv64IkPEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_KVHGoYkPEeiddpojVtQ0Hg" base_Property="_KVHGoIkPEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KVHGookPEeiddpojVtQ0Hg" base_StructuralFeature="_KVHGoIkPEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Dy0FAYkUEeiddpojVtQ0Hg" base_Property="_Dy0FAIkUEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Dy0FAokUEeiddpojVtQ0Hg" base_StructuralFeature="_Dy0FAIkUEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_9Ry9IYkVEeiddpojVtQ0Hg" base_Property="_9Ry9IIkVEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9RzkMIkVEeiddpojVtQ0Hg" base_StructuralFeature="_9Ry9IIkVEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_-CmH8YkVEeiddpojVtQ0Hg" base_Property="_-CmH8IkVEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-CmH8okVEeiddpojVtQ0Hg" base_StructuralFeature="_-CmH8IkVEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_-u8QkYkVEeiddpojVtQ0Hg" base_Property="_-u8QkIkVEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-u83oIkVEeiddpojVtQ0Hg" base_StructuralFeature="_-u8QkIkVEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="__9iKoIkVEeiddpojVtQ0Hg" base_Property="__9hjkIkVEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__9iKoYkVEeiddpojVtQ0Hg" base_StructuralFeature="__9hjkIkVEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_AkUd0IkWEeiddpojVtQ0Hg" base_Property="_AkT2wIkWEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_AkUd0YkWEeiddpojVtQ0Hg" base_StructuralFeature="_AkT2wIkWEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Bt4t8YkWEeiddpojVtQ0Hg" base_Property="_Bt4t8IkWEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Bt4t8okWEeiddpojVtQ0Hg" base_StructuralFeature="_Bt4t8IkWEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_CafVQYkWEeiddpojVtQ0Hg" base_Property="_CafVQIkWEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Caf8UIkWEeiddpojVtQ0Hg" base_StructuralFeature="_CafVQIkWEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_DCfJYYkWEeiddpojVtQ0Hg" base_Property="_DCfJYIkWEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DCfJYokWEeiddpojVtQ0Hg" base_StructuralFeature="_DCfJYIkWEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_zlPGUYkXEeiddpojVtQ0Hg" base_Property="_zlPGUIkXEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zlPtYIkXEeiddpojVtQ0Hg" base_StructuralFeature="_zlPGUIkXEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_0yvbQYkXEeiddpojVtQ0Hg" base_Property="_0yvbQIkXEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0ywCUIkXEeiddpojVtQ0Hg" base_StructuralFeature="_0yvbQIkXEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_1kwHAIkXEeiddpojVtQ0Hg" base_Property="_1kvf8IkXEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1kwHAYkXEeiddpojVtQ0Hg" base_StructuralFeature="_1kvf8IkXEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_579X0YkXEeiddpojVtQ0Hg" base_Property="_579X0IkXEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_579-4IkXEeiddpojVtQ0Hg" base_StructuralFeature="_579X0IkXEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_W66acIkYEeiddpojVtQ0Hg" base_Property="_W65zYIkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_W66acYkYEeiddpojVtQ0Hg" base_StructuralFeature="_W65zYIkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_YYWo0YkYEeiddpojVtQ0Hg" base_Property="_YYWo0IkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YYWo0okYEeiddpojVtQ0Hg" base_StructuralFeature="_YYWo0IkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ZJNeAYkYEeiddpojVtQ0Hg" base_Property="_ZJNeAIkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZJNeAokYEeiddpojVtQ0Hg" base_StructuralFeature="_ZJNeAIkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_aSI08YkYEeiddpojVtQ0Hg" base_Property="_aSI08IkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aSI08okYEeiddpojVtQ0Hg" base_StructuralFeature="_aSI08IkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_gsTcAYkYEeiddpojVtQ0Hg" base_Property="_gsTcAIkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gsTcAokYEeiddpojVtQ0Hg" base_StructuralFeature="_gsTcAIkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_hUHp8IkYEeiddpojVtQ0Hg" base_Property="_hUHC4IkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hUHp8YkYEeiddpojVtQ0Hg" base_StructuralFeature="_hUHC4IkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_h2ohIIkYEeiddpojVtQ0Hg" base_Property="_h2n6EIkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_h2ohIYkYEeiddpojVtQ0Hg" base_StructuralFeature="_h2n6EIkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_i0fQgYkYEeiddpojVtQ0Hg" base_Property="_i0fQgIkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_i0f3kIkYEeiddpojVtQ0Hg" base_StructuralFeature="_i0fQgIkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_jXfP4YkYEeiddpojVtQ0Hg" base_Property="_jXfP4IkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jXf28IkYEeiddpojVtQ0Hg" base_StructuralFeature="_jXfP4IkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_j36cYYkYEeiddpojVtQ0Hg" base_Property="_j36cYIkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_j37DcIkYEeiddpojVtQ0Hg" base_StructuralFeature="_j36cYIkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_kYzi8YkYEeiddpojVtQ0Hg" base_Property="_kYzi8IkYEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kYzi8okYEeiddpojVtQ0Hg" base_StructuralFeature="_kYzi8IkYEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_tfINQIkjEeiddpojVtQ0Hg" base_Property="_tfHmMIkjEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tfINQYkjEeiddpojVtQ0Hg" base_StructuralFeature="_tfHmMIkjEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_uaMHUYkjEeiddpojVtQ0Hg" base_Property="_uaMHUIkjEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uaMHUokjEeiddpojVtQ0Hg" base_StructuralFeature="_uaMHUIkjEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_pTjSwYklEeiddpojVtQ0Hg" base_Property="_pTjSwIklEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pTjSwoklEeiddpojVtQ0Hg" base_StructuralFeature="_pTjSwIklEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_qCL6YYklEeiddpojVtQ0Hg" base_Property="_qCL6YIklEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qCL6YoklEeiddpojVtQ0Hg" base_StructuralFeature="_qCL6YIklEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_qub8YYklEeiddpojVtQ0Hg" base_Property="_qub8YIklEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qucjcIklEeiddpojVtQ0Hg" base_StructuralFeature="_qub8YIklEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ra5ZwYklEeiddpojVtQ0Hg" base_Property="_ra5ZwIklEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ra5ZwoklEeiddpojVtQ0Hg" base_StructuralFeature="_ra5ZwIklEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_sFP-UYklEeiddpojVtQ0Hg" base_Property="_sFP-UIklEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sFP-UoklEeiddpojVtQ0Hg" base_StructuralFeature="_sFP-UIklEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_uF_uEYklEeiddpojVtQ0Hg" base_Property="_uF_uEIklEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uF_uEoklEeiddpojVtQ0Hg" base_StructuralFeature="_uF_uEIklEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_u2AOsIklEeiddpojVtQ0Hg" base_Property="_u1_noIklEeiddpojVtQ0Hg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_u2AOsYklEeiddpojVtQ0Hg" base_StructuralFeature="_u1_noIklEeiddpojVtQ0Hg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_5wjnkYmwEeiOe-BKGdv_Yg" base_Property="_5wjnkImwEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5wlcwImwEeiOe-BKGdv_Yg" base_StructuralFeature="_5wjnkImwEeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_7sPRIImwEeiOe-BKGdv_Yg" base_Property="_7sOqEImwEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7sPRIYmwEeiOe-BKGdv_Yg" base_StructuralFeature="_7sOqEImwEeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_8fCnEYmwEeiOe-BKGdv_Yg" base_Property="_8fCnEImwEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8fDOIImwEeiOe-BKGdv_Yg" base_StructuralFeature="_8fCnEImwEeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_9NclMYmwEeiOe-BKGdv_Yg" base_Property="_9NclMImwEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9NdMQImwEeiOe-BKGdv_Yg" base_StructuralFeature="_9NclMImwEeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_-Wc0oYmwEeiOe-BKGdv_Yg" base_Property="_-Wc0oImwEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-Wc0oomwEeiOe-BKGdv_Yg" base_StructuralFeature="_-Wc0oImwEeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="__92QQYmwEeiOe-BKGdv_Yg" base_Property="__92QQImwEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__923UImwEeiOe-BKGdv_Yg" base_StructuralFeature="__92QQImwEeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_AqOOEYmxEeiOe-BKGdv_Yg" base_Property="_AqOOEImxEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_AqOOEomxEeiOe-BKGdv_Yg" base_StructuralFeature="_AqOOEImxEeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_dRMcQIm2EeiOe-BKGdv_Yg" base_Property="_dRL1MIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dRMcQYm2EeiOe-BKGdv_Yg" base_StructuralFeature="_dRL1MIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_etCvMYm2EeiOe-BKGdv_Yg" base_Property="_etCvMIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_etDWQIm2EeiOe-BKGdv_Yg" base_StructuralFeature="_etCvMIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_fceBAYm2EeiOe-BKGdv_Yg" base_Property="_fceBAIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fceBAom2EeiOe-BKGdv_Yg" base_StructuralFeature="_fceBAIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_g6Q0sIm2EeiOe-BKGdv_Yg" base_Property="_g6QNoIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_g6Q0sYm2EeiOe-BKGdv_Yg" base_StructuralFeature="_g6QNoIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_hj_HIYm2EeiOe-BKGdv_Yg" base_Property="_hj_HIIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hj_HIom2EeiOe-BKGdv_Yg" base_StructuralFeature="_hj_HIIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_iyBnkYm2EeiOe-BKGdv_Yg" base_Property="_iyBnkIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_iyBnkom2EeiOe-BKGdv_Yg" base_StructuralFeature="_iyBnkIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_j-UbkYm2EeiOe-BKGdv_Yg" base_Property="_j-UbkIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_j-VCoIm2EeiOe-BKGdv_Yg" base_StructuralFeature="_j-UbkIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_lAj7sYm2EeiOe-BKGdv_Yg" base_Property="_lAj7sIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lAj7som2EeiOe-BKGdv_Yg" base_StructuralFeature="_lAj7sIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_lzrasYm2EeiOe-BKGdv_Yg" base_Property="_lzrasIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lzsBwIm2EeiOe-BKGdv_Yg" base_StructuralFeature="_lzrasIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_mihdsIm2EeiOe-BKGdv_Yg" base_Property="_mig2oIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mihdsYm2EeiOe-BKGdv_Yg" base_StructuralFeature="_mig2oIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_n7IPYYm2EeiOe-BKGdv_Yg" base_Property="_n7IPYIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n7IPYom2EeiOe-BKGdv_Yg" base_StructuralFeature="_n7IPYIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_okqUkYm2EeiOe-BKGdv_Yg" base_Property="_okqUkIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_okqUkom2EeiOe-BKGdv_Yg" base_StructuralFeature="_okqUkIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_pOy2sYm2EeiOe-BKGdv_Yg" base_Property="_pOy2sIm2EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pOy2som2EeiOe-BKGdv_Yg" base_StructuralFeature="_pOy2sIm2EeiOe-BKGdv_Yg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bqoiUJGyEeiUeLUnFxb3Bg" base_Property="_bqn7QJGyEeiUeLUnFxb3Bg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bqoiUZGyEeiUeLUnFxb3Bg" base_StructuralFeature="_bqn7QJGyEeiUeLUnFxb3Bg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ciU_UZGyEeiUeLUnFxb3Bg" base_Property="_ciU_UJGyEeiUeLUnFxb3Bg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ciU_UpGyEeiUeLUnFxb3Bg" base_StructuralFeature="_ciU_UJGyEeiUeLUnFxb3Bg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_dGL6UZGyEeiUeLUnFxb3Bg" base_Property="_dGL6UJGyEeiUeLUnFxb3Bg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dGL6UpGyEeiUeLUnFxb3Bg" base_StructuralFeature="_dGL6UJGyEeiUeLUnFxb3Bg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_69EOAJQkEei6kI-JPNdeuw" base_Property="_69Dm8JQkEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_69GDMJQkEei6kI-JPNdeuw" base_StructuralFeature="_69Dm8JQkEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_8IT5IZQkEei6kI-JPNdeuw" base_Property="_8IT5IJQkEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8IUgMJQkEei6kI-JPNdeuw" base_StructuralFeature="_8IT5IJQkEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_8qkRoJQkEei6kI-JPNdeuw" base_Property="_8qjqkJQkEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8qkRoZQkEei6kI-JPNdeuw" base_StructuralFeature="_8qjqkJQkEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_9J8VQZQkEei6kI-JPNdeuw" base_Property="_9J8VQJQkEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9J88UJQkEei6kI-JPNdeuw" base_StructuralFeature="_9J8VQJQkEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_9pZ4cZQkEei6kI-JPNdeuw" base_Property="_9pZ4cJQkEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9pafgJQkEei6kI-JPNdeuw" base_StructuralFeature="_9pZ4cJQkEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_-GrDQZQkEei6kI-JPNdeuw" base_Property="_-GrDQJQkEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-GrDQpQkEei6kI-JPNdeuw" base_StructuralFeature="_-GrDQJQkEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_-qdFwZQkEei6kI-JPNdeuw" base_Property="_-qdFwJQkEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-qdFwpQkEei6kI-JPNdeuw" base_StructuralFeature="_-qdFwJQkEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="__NT7MZQkEei6kI-JPNdeuw" base_Property="__NT7MJQkEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__NVwYJQkEei6kI-JPNdeuw" base_StructuralFeature="__NT7MJQkEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_AK9PMZQlEei6kI-JPNdeuw" base_Property="_AK9PMJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_AK92QJQlEei6kI-JPNdeuw" base_StructuralFeature="_AK9PMJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Bs7_UZQlEei6kI-JPNdeuw" base_Property="_Bs7_UJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Bs8mYJQlEei6kI-JPNdeuw" base_StructuralFeature="_Bs7_UJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_EzzpoZQlEei6kI-JPNdeuw" base_Property="_EzzpoJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Ez0QsJQlEei6kI-JPNdeuw" base_StructuralFeature="_EzzpoJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_FUQEQJQlEei6kI-JPNdeuw" base_Property="_FUPdMJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FUQEQZQlEei6kI-JPNdeuw" base_StructuralFeature="_FUPdMJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_FySrIZQlEei6kI-JPNdeuw" base_Property="_FySrIJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FyTSMJQlEei6kI-JPNdeuw" base_StructuralFeature="_FySrIJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_GRRGIJQlEei6kI-JPNdeuw" base_Property="_GRQfEJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GRRGIZQlEei6kI-JPNdeuw" base_StructuralFeature="_GRQfEJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_HiJfMJQlEei6kI-JPNdeuw" base_Property="_HiI4IJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HiJfMZQlEei6kI-JPNdeuw" base_StructuralFeature="_HiI4IJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_IBHTIZQlEei6kI-JPNdeuw" base_Property="_IBHTIJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IBHTIpQlEei6kI-JPNdeuw" base_StructuralFeature="_IBHTIJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_IdCaIZQlEei6kI-JPNdeuw" base_Property="_IdCaIJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IdCaIpQlEei6kI-JPNdeuw" base_StructuralFeature="_IdCaIJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_I9VDwZQlEei6kI-JPNdeuw" base_Property="_I9VDwJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_I9VDwpQlEei6kI-JPNdeuw" base_StructuralFeature="_I9VDwJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_JZFLoZQlEei6kI-JPNdeuw" base_Property="_JZFLoJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JZFysJQlEei6kI-JPNdeuw" base_StructuralFeature="_JZFLoJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_J1YGEZQlEei6kI-JPNdeuw" base_Property="_J1YGEJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J1YGEpQlEei6kI-JPNdeuw" base_StructuralFeature="_J1YGEJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_KsYmkZQlEei6kI-JPNdeuw" base_Property="_KsYmkJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KsYmkpQlEei6kI-JPNdeuw" base_StructuralFeature="_KsYmkJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_L2fCMJQlEei6kI-JPNdeuw" base_Property="_L2ebIJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_L2fCMZQlEei6kI-JPNdeuw" base_StructuralFeature="_L2ebIJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Nh-ToZQlEei6kI-JPNdeuw" base_Property="_Nh-ToJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Nh-TopQlEei6kI-JPNdeuw" base_StructuralFeature="_Nh-ToJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ORvjsJQlEei6kI-JPNdeuw" base_Property="_ORu8oJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ORvjsZQlEei6kI-JPNdeuw" base_StructuralFeature="_ORu8oJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_PJkjkZQlEei6kI-JPNdeuw" base_Property="_PJkjkJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PJkjkpQlEei6kI-JPNdeuw" base_StructuralFeature="_PJkjkJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_PwKpgJQlEei6kI-JPNdeuw" base_Property="_PwKCcJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PwKpgZQlEei6kI-JPNdeuw" base_StructuralFeature="_PwKCcJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Qpe3IJQlEei6kI-JPNdeuw" base_Property="_QpeQEJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Qpe3IZQlEei6kI-JPNdeuw" base_StructuralFeature="_QpeQEJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_S66HMJQlEei6kI-JPNdeuw" base_Property="_S65gIJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_S66HMZQlEei6kI-JPNdeuw" base_StructuralFeature="_S65gIJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Tbx_oZQlEei6kI-JPNdeuw" base_Property="_Tbx_oJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Tbx_opQlEei6kI-JPNdeuw" base_StructuralFeature="_Tbx_oJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_UQxG4ZQlEei6kI-JPNdeuw" base_Property="_UQxG4JQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UQxG4pQlEei6kI-JPNdeuw" base_StructuralFeature="_UQxG4JQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_UsgAoJQlEei6kI-JPNdeuw" base_Property="_UsfZkJQlEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UsgAoZQlEei6kI-JPNdeuw" base_StructuralFeature="_UsfZkJQlEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_5dITAZQpEei6kI-JPNdeuw" base_Property="_5dITAJQpEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5dI6EJQpEei6kI-JPNdeuw" base_StructuralFeature="_5dITAJQpEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_6EHagJQpEei6kI-JPNdeuw" base_Property="_6EGzcJQpEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6EHagZQpEei6kI-JPNdeuw" base_StructuralFeature="_6EGzcJQpEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_sl3TYZQuEei6kI-JPNdeuw" base_Property="_sl3TYJQuEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sl3TYpQuEei6kI-JPNdeuw" base_StructuralFeature="_sl3TYJQuEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_tnGG4ZQuEei6kI-JPNdeuw" base_Property="_tnGG4JQuEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tnGG4pQuEei6kI-JPNdeuw" base_StructuralFeature="_tnGG4JQuEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_vThMcZQuEei6kI-JPNdeuw" base_Property="_vThMcJQuEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vThMcpQuEei6kI-JPNdeuw" base_StructuralFeature="_vThMcJQuEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_vxL_4ZQuEei6kI-JPNdeuw" base_Property="_vxL_4JQuEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vxMm8JQuEei6kI-JPNdeuw" base_StructuralFeature="_vxL_4JQuEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_wyu8cZQuEei6kI-JPNdeuw" base_Property="_wyu8cJQuEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wyu8cpQuEei6kI-JPNdeuw" base_StructuralFeature="_wyu8cJQuEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_xhv-kZQuEei6kI-JPNdeuw" base_Property="_xhv-kJQuEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xhv-kpQuEei6kI-JPNdeuw" base_StructuralFeature="_xhv-kJQuEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_yW6sAZQuEei6kI-JPNdeuw" base_Property="_yW6sAJQuEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yW7TEJQuEei6kI-JPNdeuw" base_StructuralFeature="_yW6sAJQuEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_y4u_oZQuEei6kI-JPNdeuw" base_Property="_y4u_oJQuEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_y4u_opQuEei6kI-JPNdeuw" base_StructuralFeature="_y4u_oJQuEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_zZIW8ZQuEei6kI-JPNdeuw" base_Property="_zZIW8JQuEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zZIW8pQuEei6kI-JPNdeuw" base_StructuralFeature="_zZIW8JQuEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_NyescZQzEei6kI-JPNdeuw" base_Property="_NyescJQzEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NyfTgJQzEei6kI-JPNdeuw" base_StructuralFeature="_NyescJQzEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_OcpDwZQzEei6kI-JPNdeuw" base_Property="_OcpDwJQzEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OcpDwpQzEei6kI-JPNdeuw" base_StructuralFeature="_OcpDwJQzEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_V7c6gZQ6Eei6kI-JPNdeuw" base_Property="_V7c6gJQ6Eei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_V7c6gpQ6Eei6kI-JPNdeuw" base_StructuralFeature="_V7c6gJQ6Eei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_WgYMgJQ6Eei6kI-JPNdeuw" base_Property="_WgXlcJQ6Eei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WgYMgZQ6Eei6kI-JPNdeuw" base_StructuralFeature="_WgXlcJQ6Eei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_XKReEJQ6Eei6kI-JPNdeuw" base_Property="_XKQ3AJQ6Eei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XKReEZQ6Eei6kI-JPNdeuw" base_StructuralFeature="_XKQ3AJQ6Eei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_XxkHkZQ6Eei6kI-JPNdeuw" base_Property="_XxkHkJQ6Eei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XxkHkpQ6Eei6kI-JPNdeuw" base_StructuralFeature="_XxkHkJQ6Eei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_w1-f4ZQ9Eei6kI-JPNdeuw" base_Property="_w1-f4JQ9Eei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_w1_G8JQ9Eei6kI-JPNdeuw" base_StructuralFeature="_w1-f4JQ9Eei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_D0oa4ZRBEei6kI-JPNdeuw" base_Property="_D0oa4JRBEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_D0pB8JRBEei6kI-JPNdeuw" base_StructuralFeature="_D0oa4JRBEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ErzTcZRBEei6kI-JPNdeuw" base_Property="_ErzTcJRBEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ErzTcpRBEei6kI-JPNdeuw" base_StructuralFeature="_ErzTcJRBEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_FY300ZRBEei6kI-JPNdeuw" base_Property="_FY300JRBEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FY300pRBEei6kI-JPNdeuw" base_StructuralFeature="_FY300JRBEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_GLY24ZRBEei6kI-JPNdeuw" base_Property="_GLY24JRBEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GLY24pRBEei6kI-JPNdeuw" base_StructuralFeature="_GLY24JRBEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_hv24gJRBEei6kI-JPNdeuw" base_Property="_hv2RcJRBEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hv24gZRBEei6kI-JPNdeuw" base_StructuralFeature="_hv2RcJRBEei6kI-JPNdeuw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ikuD8JRBEei6kI-JPNdeuw" base_Property="_iktc4JRBEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ikuD8ZRBEei6kI-JPNdeuw" base_StructuralFeature="_iktc4JRBEei6kI-JPNdeuw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LZpyoJTdEeiYXO5wr78TUw" base_StructuralFeature="_LZpLkJTdEeiYXO5wr78TUw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_LZpyoZTdEeiYXO5wr78TUw" base_Property="_LZpLkJTdEeiYXO5wr78TUw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Ffin4JaOEeiGg_moIHe9Sw" base_Property="_FfgysJaOEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FfjO8JaOEeiGg_moIHe9Sw" base_StructuralFeature="_FfgysJaOEeiGg_moIHe9Sw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_HGZ4AZaOEeiGg_moIHe9Sw" base_Property="_HGZ4AJaOEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HGafEJaOEeiGg_moIHe9Sw" base_StructuralFeature="_HGZ4AJaOEeiGg_moIHe9Sw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_H1fLkJaOEeiGg_moIHe9Sw" base_Property="_H1ekgJaOEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H1fLkZaOEeiGg_moIHe9Sw" base_StructuralFeature="_H1ekgJaOEeiGg_moIHe9Sw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_JL16gZaOEeiGg_moIHe9Sw" base_Property="_JL16gJaOEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JL2hkJaOEeiGg_moIHe9Sw" base_StructuralFeature="_JL16gJaOEeiGg_moIHe9Sw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_xzK_YJaXEeiGg_moIHe9Sw" base_Property="_xzKYUJaXEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xzK_YZaXEeiGg_moIHe9Sw" base_StructuralFeature="_xzKYUJaXEeiGg_moIHe9Sw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_HR738ZahEeiGg_moIHe9Sw" base_Property="_HR738JahEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HR8fAJahEeiGg_moIHe9Sw" base_StructuralFeature="_HR738JahEeiGg_moIHe9Sw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_J6eAcZahEeiGg_moIHe9Sw" base_Property="_J6eAcJahEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J6eAcpahEeiGg_moIHe9Sw" base_StructuralFeature="_J6eAcJahEeiGg_moIHe9Sw"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_KplJMJahEeiGg_moIHe9Sw" base_Property="_KpkiIJahEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KplJMZahEeiGg_moIHe9Sw" base_StructuralFeature="_KpkiIJahEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wTZ74Zc-Eeis0eUbsDSw0w" base_StructuralFeature="_wTZ74Jc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_wTai8Jc-Eeis0eUbsDSw0w" base_Property="_wTZ74Jc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_w5-zsJc-Eeis0eUbsDSw0w" base_StructuralFeature="_w5-MoJc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_w5-zsZc-Eeis0eUbsDSw0w" base_Property="_w5-MoJc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xjhf8Jc-Eeis0eUbsDSw0w" base_StructuralFeature="_xjg44Jc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_xjhf8Zc-Eeis0eUbsDSw0w" base_Property="_xjg44Jc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yI8hMJc-Eeis0eUbsDSw0w" base_StructuralFeature="_yI76IJc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_yI8hMZc-Eeis0eUbsDSw0w" base_Property="_yI76IJc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1YuP4Zc-Eeis0eUbsDSw0w" base_StructuralFeature="_1YuP4Jc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_1YuP4pc-Eeis0eUbsDSw0w" base_Property="_1YuP4Jc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_19gX8Zc-Eeis0eUbsDSw0w" base_StructuralFeature="_19gX8Jc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_19gX8pc-Eeis0eUbsDSw0w" base_Property="_19gX8Jc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2ocyYJc-Eeis0eUbsDSw0w" base_StructuralFeature="_2ocLUJc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_2odZcJc-Eeis0eUbsDSw0w" base_Property="_2ocLUJc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3mxb0Zc-Eeis0eUbsDSw0w" base_StructuralFeature="_3mxb0Jc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_3myC4Jc-Eeis0eUbsDSw0w" base_Property="_3mxb0Jc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4D4OkZc-Eeis0eUbsDSw0w" base_StructuralFeature="_4D4OkJc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_4D4Okpc-Eeis0eUbsDSw0w" base_Property="_4D4OkJc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4lixMZc-Eeis0eUbsDSw0w" base_StructuralFeature="_4lixMJc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_4ljYQJc-Eeis0eUbsDSw0w" base_Property="_4lixMJc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5BEPkZc-Eeis0eUbsDSw0w" base_StructuralFeature="_5BEPkJc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_5BE2oJc-Eeis0eUbsDSw0w" base_Property="_5BEPkJc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7YTzwZc-Eeis0eUbsDSw0w" base_StructuralFeature="_7YTzwJc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_7YTzwpc-Eeis0eUbsDSw0w" base_Property="_7YTzwJc-Eeis0eUbsDSw0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7_pgkJc-Eeis0eUbsDSw0w" base_StructuralFeature="_7_o5gJc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_7_pgkZc-Eeis0eUbsDSw0w" base_Property="_7_o5gJc-Eeis0eUbsDSw0w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_PV_doJdUEei-sOl6ywWHlg" base_Property="_PV-2kJdUEei-sOl6ywWHlg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PWBS0JdUEei-sOl6ywWHlg" base_StructuralFeature="_PV-2kJdUEei-sOl6ywWHlg"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_VL2WIZpnEeidy9iGT_F5-w" base_Property="_VL2WIJpnEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VL2WIppnEeidy9iGT_F5-w" base_StructuralFeature="_VL2WIJpnEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_VsHKkJpnEeidy9iGT_F5-w" base_Property="_VsGjgJpnEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VsHKkZpnEeidy9iGT_F5-w" base_StructuralFeature="_VsGjgJpnEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_WIHKEJpnEeidy9iGT_F5-w" base_Property="_WIGjAJpnEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WIHKEZpnEeidy9iGT_F5-w" base_StructuralFeature="_WIGjAJpnEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Wj_NwJpnEeidy9iGT_F5-w" base_Property="_Wj-msJpnEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Wj_NwZpnEeidy9iGT_F5-w" base_StructuralFeature="_Wj-msJpnEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_W-exYZpnEeidy9iGT_F5-w" base_Property="_W-exYJpnEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_W-fYcJpnEeidy9iGT_F5-w" base_StructuralFeature="_W-exYJpnEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_XXg8cZpnEeidy9iGT_F5-w" base_Property="_XXg8cJpnEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XXhjgJpnEeidy9iGT_F5-w" base_StructuralFeature="_XXg8cJpnEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_YrKVoZpnEeidy9iGT_F5-w" base_Property="_YrKVoJpnEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YrKVoppnEeidy9iGT_F5-w" base_StructuralFeature="_YrKVoJpnEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_ZW72gJpnEeidy9iGT_F5-w" base_Property="_ZW7PcJpnEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZW72gZpnEeidy9iGT_F5-w" base_StructuralFeature="_ZW7PcJpnEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_Zzi6AZpnEeidy9iGT_F5-w" base_Property="_Zzi6AJpnEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZzjhEJpnEeidy9iGT_F5-w" base_StructuralFeature="_Zzi6AJpnEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_bU1GkZpnEeidy9iGT_F5-w" base_Property="_bU1GkJpnEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bU1GkppnEeidy9iGT_F5-w" base_StructuralFeature="_bU1GkJpnEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_L71b8ZpqEeidy9iGT_F5-w" base_Property="_L71b8JpqEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_L72DAJpqEeidy9iGT_F5-w" base_StructuralFeature="_L71b8JpqEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_M9AlEZpqEeidy9iGT_F5-w" base_Property="_M9AlEJpqEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_M9BMIJpqEeidy9iGT_F5-w" base_StructuralFeature="_M9AlEJpqEeidy9iGT_F5-w"/>
  <Onap_Profile:OnapModelLifecycle xmi:id="_OD8_AZpqEeidy9iGT_F5-w" base_Property="_OD8_AJpqEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OD8_AppqEeidy9iGT_F5-w" base_StructuralFeature="_OD8_AJpqEeidy9iGT_F5-w"/>
</xmi:XMI>