summaryrefslogtreecommitdiffstats
path: root/ONAP_Information_Model/Ns.uml
blob: 946eedd541785b89858a3b3c583d9f9dea1843df (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
<?xml version="1.0" encoding="UTF-8"?>
<xmi:XMI xmi:version="20131001" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:OpenModel_Profile="http:///schemas/OpenModel_Profile/_2Rm7cDkrEemjyLkBMGZA1g/27" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML" xsi:schemaLocation="http:///schemas/OpenModel_Profile/_2Rm7cDkrEemjyLkBMGZA1g/27 OpenModel_Profile.profile.uml#_2RzvwDkrEemjyLkBMGZA1g">
  <uml:Package xmi:id="_4Nx7cBg1EembeqMx64UEWQ" name="Ns">
    <packagedElement xmi:type="uml:Package" xmi:id="_XHfakBg2EembeqMx64UEWQ" name="Associations">
      <packagedElement xmi:type="uml:Association" xmi:id="_-82fMD2yEeiu6I5JfRTxxQ" name="NsDfHasNsLevel" memberEnd="_-83tUj2yEeiu6I5JfRTxxQ _-85igT2yEeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_-83tUD2yEeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_-83tUT2yEeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_-85igT2yEeiu6I5JfRTxxQ" name="_nsdf" type="_13gdcDzEEeiWMf5FLWfdLA" association="_-82fMD2yEeiu6I5JfRTxxQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_acr4cD2zEeiu6I5JfRTxxQ" name="NsDfHasAffinityOrAntiAffinityGroup" memberEnd="_actGkj2zEeiu6I5JfRTxxQ _acwJ4T2zEeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_actGkD2zEeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_actGkT2zEeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_acwJ4T2zEeiu6I5JfRTxxQ" name="_nsdf" type="_13gdcDzEEeiWMf5FLWfdLA" association="_acr4cD2zEeiu6I5JfRTxxQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="__KYIYD2zEeiu6I5JfRTxxQ" name="NsDfHasScalingAspect" memberEnd="__KZ9kD2zEeiu6I5JfRTxxQ __KbywT2zEeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="__KZWgD2zEeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="__KZWgT2zEeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="__KbywT2zEeiu6I5JfRTxxQ" name="_nsdf" type="_13gdcDzEEeiWMf5FLWfdLA" association="__KYIYD2zEeiu6I5JfRTxxQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_hPmhQD20Eeiu6I5JfRTxxQ" name="NsDfHasPnfProfile" memberEnd="_hPo9gD20Eeiu6I5JfRTxxQ _hQ6I0D20Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_hPoWcD20Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_hPoWcT20Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_hQ6I0D20Eeiu6I5JfRTxxQ" name="_nsdf" type="_13gdcDzEEeiWMf5FLWfdLA" association="_hPmhQD20Eeiu6I5JfRTxxQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_VJf1oD21Eeiu6I5JfRTxxQ" name="NsDfHasNsProfile" memberEnd="_VJhq0j21Eeiu6I5JfRTxxQ _VJkHET21Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_VJhq0D21Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_VJhq0T21Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_VJkHET21Eeiu6I5JfRTxxQ" name="_nsdf" type="_13gdcDzEEeiWMf5FLWfdLA" association="_VJf1oD21Eeiu6I5JfRTxxQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_r-EZoD21Eeiu6I5JfRTxxQ" name="NsProfileAppliesToApplicableNsDf" memberEnd="_r-GO0T21Eeiu6I5JfRTxxQ _r-7VQD21Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_r-FnwD21Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_r-GO0D21Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_r-7VQD21Eeiu6I5JfRTxxQ" name="_nsProfile" type="_GY8PcDzFEeiWMf5FLWfdLA" association="_r-EZoD21Eeiu6I5JfRTxxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GOpxgD22Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GP0PID22Eeiu6I5JfRTxxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_LJD2AD22Eeiu6I5JfRTxxQ" name="NsProfileHasApplicableNsLevel" memberEnd="_LJFEIj22Eeiu6I5JfRTxxQ _LJdeoD22Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_LJFEID22Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_LJFEIT22Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_LJdeoD22Eeiu6I5JfRTxxQ" name="_nsProfile" type="_GY8PcDzFEeiWMf5FLWfdLA" association="_LJD2AD22Eeiu6I5JfRTxxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fMrVUD22Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fM2UcD22Eeiu6I5JfRTxxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_0f2YAD22Eeiu6I5JfRTxxQ" name="NsDfHasVnfProfile" memberEnd="_0f3mIj22Eeiu6I5JfRTxxQ _0f6CYj22Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_0f3mID22Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_0f3mIT22Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_0f6CYj22Eeiu6I5JfRTxxQ" name="_nsdf" type="_13gdcDzEEeiWMf5FLWfdLA" association="_0f2YAD22Eeiu6I5JfRTxxQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_kyvUAD24Eeiu6I5JfRTxxQ" name="NsDfHasProfileDependencies" memberEnd="_kyxJMj24Eeiu6I5JfRTxxQ _kzQ4cD24Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_kyxJMD24Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_kyxJMT24Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_kyxJMj24Eeiu6I5JfRTxxQ" name="_nsdf" type="_13gdcDzEEeiWMf5FLWfdLA" association="_kyvUAD24Eeiu6I5JfRTxxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ky6TID24Eeiu6I5JfRTxxQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_kzFSQD24Eeiu6I5JfRTxxQ" value="1"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_PKhjgD26Eeiu6I5JfRTxxQ" name="NsProfileRefersToNsd" memberEnd="_PKixoj26Eeiu6I5JfRTxxQ _PK26sT26Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_PKixoD26Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_PKixoT26Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_PK26sT26Eeiu6I5JfRTxxQ" name="_nsProfile" type="_GY8PcDzFEeiWMf5FLWfdLA" association="_PKhjgD26Eeiu6I5JfRTxxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_a7CkMD26Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_a7R0wD26Eeiu6I5JfRTxxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_nOy00D26Eeiu6I5JfRTxxQ" name="NsDfHasVirtualLinkProfile" memberEnd="_nO14IT26Eeiu6I5JfRTxxQ _nO4UYT26Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_nO1RED26Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_nO14ID26Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_nO4UYT26Eeiu6I5JfRTxxQ" name="_nsDf" type="_13gdcDzEEeiWMf5FLWfdLA" association="_nOy00D26Eeiu6I5JfRTxxQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_Cs71wJmhEeiSm9XNElOsxQ" name="NsDfHasDefaultNsLevel" memberEnd="_CtSbEJmhEeiSm9XNElOsxQ _CtVeYJmhEeiSm9XNElOsxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_CtPXwJmhEeiSm9XNElOsxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_CtP-0JmhEeiSm9XNElOsxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_CtVeYJmhEeiSm9XNElOsxQ" name="_nsdf" type="_13gdcDzEEeiWMf5FLWfdLA" association="_Cs71wJmhEeiSm9XNElOsxQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_fGKukD2_Eeiu6I5JfRTxxQ" name="NsScalingAspectHasNsLevel" memberEnd="_fGNK0D2_Eeiu6I5JfRTxxQ _fGPAAj2_Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_fGMjwD2_Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_fGMjwT2_Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_fGPAAj2_Eeiu6I5JfRTxxQ" name="_nsScalingAspect" type="_GYmRMDzFEeiWMf5FLWfdLA" association="_fGKukD2_Eeiu6I5JfRTxxQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_wc9LUD2rEeiu6I5JfRTxxQ" name="NsdReferencesPnfd" memberEnd="_wdAOoD2rEeiu6I5JfRTxxQ _wdCq4D2rEeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_wc_nkD2rEeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_wc_nkT2rEeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_wdCq4D2rEeiu6I5JfRTxxQ" name="_nsd" type="_13KfMDzEEeiWMf5FLWfdLA" association="_wc9LUD2rEeiu6I5JfRTxxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_7dEp0D2rEeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_7ezvMD2rEeiu6I5JfRTxxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_YX6TYD2qEeiu6I5JfRTxxQ" name="NsdHasVirtualLinkDesc" memberEnd="_YX8Ikj2qEeiu6I5JfRTxxQ _YX-k0D2qEeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_YX8IkD2qEeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_YX8IkT2qEeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_YX-k0D2qEeiu6I5JfRTxxQ" name="_nsd" type="_13KfMDzEEeiWMf5FLWfdLA" association="_YX6TYD2qEeiu6I5JfRTxxQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_JDAwgD2rEeiu6I5JfRTxxQ" name="NsdReferencesVnfd" memberEnd="_JDB-oj2rEeiu6I5JfRTxxQ _JDEa4D2rEeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_JDB-oD2rEeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_JDB-oT2rEeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_JDEa4D2rEeiu6I5JfRTxxQ" name="_nsd" type="_13KfMDzEEeiWMf5FLWfdLA" association="_JDAwgD2rEeiu6I5JfRTxxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ZNpMED2rEeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ZQCYwD2rEeiu6I5JfRTxxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_sIS00O38EeqoIpAKV26OqA" name="NsdHasNestedNsd" memberEnd="_sIXtUO38EeqoIpAKV26OqA _sIiFYu38EeqoIpAKV26OqA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_sIWfMO38EeqoIpAKV26OqA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_sIWfMe38EeqoIpAKV26OqA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_sIiFYu38EeqoIpAKV26OqA" name="nsd" type="_13KfMDzEEeiWMf5FLWfdLA" association="_sIS00O38EeqoIpAKV26OqA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_DK-JcO4BEeqoIpAKV26OqA" name="NsdHasSapd" memberEnd="_DK-wge4BEeqoIpAKV26OqA _DLDB8e4BEeqoIpAKV26OqA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_DK-Jce4BEeqoIpAKV26OqA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_DK-wgO4BEeqoIpAKV26OqA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_DLDB8e4BEeqoIpAKV26OqA" name="networkservicedescriptor" type="_13KfMDzEEeiWMf5FLWfdLA" association="_DK-JcO4BEeqoIpAKV26OqA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_x7ymAO4TEeqoIpAKV26OqA" name="NsdHasVnffgd" memberEnd="_x7ymA-4TEeqoIpAKV26OqA _x71pUu4TEeqoIpAKV26OqA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_x7ymAe4TEeqoIpAKV26OqA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_x7ymAu4TEeqoIpAKV26OqA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_x71pUu4TEeqoIpAKV26OqA" name="networkservicedescriptor" type="_13KfMDzEEeiWMf5FLWfdLA" association="_x7ymAO4TEeqoIpAKV26OqA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_h_wxsO4UEeqoIpAKV26OqA" name="NsdHasNsDf" memberEnd="_h_xYwe4UEeqoIpAKV26OqA _h_0cEu4UEeqoIpAKV26OqA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_h_wxse4UEeqoIpAKV26OqA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_h_xYwO4UEeqoIpAKV26OqA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_h_0cEu4UEeqoIpAKV26OqA" name="networkservicedescriptor" type="_13KfMDzEEeiWMf5FLWfdLA" association="_h_wxsO4UEeqoIpAKV26OqA"/>
      </packagedElement>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_XHgosBg2EembeqMx64UEWQ" name="Diagrams"/>
    <packagedElement xmi:type="uml:Package" xmi:id="_XHh20Bg2EembeqMx64UEWQ" name="ObjectClasses">
      <packagedElement xmi:type="uml:Class" xmi:id="_13KfMDzEEeiWMf5FLWfdLA" name="NSD">
        <ownedComment xmi:type="uml:Comment" xmi:id="_13KfMTzEEeiWMf5FLWfdLA" annotatedElement="_13KfMDzEEeiWMf5FLWfdLA">
          <body>The NSD information element is a deployment template whose instances are used by the NFVO for the lifecycle management of NSs.&#xD;
For all attributes in this class, the Producer is SDC and the Consumer is SDC/UUI/VFC&#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13KfMjzEEeiWMf5FLWfdLA" name="nsdIdentifier">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13KfMzzEEeiWMf5FLWfdLA" annotatedElement="_13KfMjzEEeiWMf5FLWfdLA">
            <body>Identifier of this NSD class. It globally uniquely identifies an instance of the NSD</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13KfNDzEEeiWMf5FLWfdLA" name="designer">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13KfNTzEEeiWMf5FLWfdLA" annotatedElement="_13KfNDzEEeiWMf5FLWfdLA">
            <body>Identifies the designer of the NSD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13KfNjzEEeiWMf5FLWfdLA" name="version">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13KfNzzEEeiWMf5FLWfdLA" annotatedElement="_13KfNjzEEeiWMf5FLWfdLA">
            <body>Identifies the version of the NSD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_oXexoD2uEeiu6I5JfRTxxQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13LGQDzEEeiWMf5FLWfdLA" name="nsdName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13LGQTzEEeiWMf5FLWfdLA" annotatedElement="_13LGQDzEEeiWMf5FLWfdLA">
            <body>Provides the human readable name of the NSD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13LGQjzEEeiWMf5FLWfdLA" name="nsdInvariantId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13LGQzzEEeiWMf5FLWfdLA" annotatedElement="_13LGQjzEEeiWMf5FLWfdLA">
            <body>Identifies an NSD in a version independent manner. This attribute is invariant across versions of NSD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_sIXtUO38EeqoIpAKV26OqA" name="NestedNsdId" type="_13KfMDzEEeiWMf5FLWfdLA" aggregation="shared" association="_sIS00O38EeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_u1m6MO39EeqoIpAKV26OqA">
            <body>References the NSD of a constituent nested NS.
At least one between nestedNsd and vnfdId attributes shall be present.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_sIiFYO38EeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_sIiFYe38EeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_JDB-oj2rEeiu6I5JfRTxxQ" name="vnfdId" aggregation="shared" association="_JDAwgD2rEeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_FG3BgEPhEeiVGPeZpaYNtQ" annotatedElement="_JDB-oj2rEeiu6I5JfRTxxQ">
            <body>References the VNFD of a constituent VNF.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Vnf.uml#_aaEZADOREeiHat9KcP8uWA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_JDDz0D2rEeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_JDDz0T2rEeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_wdAOoD2rEeiu6I5JfRTxxQ" name="pnfdId" aggregation="shared" association="_wc9LUD2rEeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_JkKTQEPhEeiVGPeZpaYNtQ" annotatedElement="_wdAOoD2rEeiu6I5JfRTxxQ">
            <body>References the PNFD of a constituent PNF.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Pnf.uml#_13TCEDzEEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_wdCD0D2rEeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_wdCD0T2rEeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DK-wge4BEeqoIpAKV26OqA" name="sapd" type="_d5UGQO3_EeqoIpAKV26OqA" aggregation="composite" association="_DK-JcO4BEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_bjMmoO4DEeqoIpAKV26OqA">
            <body>Provides the descriptor of a service access point of the network service.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DLCa4O4BEeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DLDB8O4BEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_YX8Ikj2qEeiu6I5JfRTxxQ" name="virtualLinkDesc" type="_13WFYDzEEeiWMf5FLWfdLA" aggregation="composite" association="_YX6TYD2qEeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_SK3qYEPhEeiVGPeZpaYNtQ" annotatedElement="_YX8Ikj2qEeiu6I5JfRTxxQ">
            <body>Provides the constituent VLDs.&#xD;
Cardinality of 0 means that the NS is a NF set with unspecified connectivity.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YX99wD2qEeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YX99wT2qEeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_x7ymA-4TEeqoIpAKV26OqA" name="vnffgd" type="_Np5hQO4TEeqoIpAKV26OqA" aggregation="composite" association="_x7ymAO4TEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_P_KTAO4UEeqoIpAKV26OqA">
            <body>Provides the descriptors of the 	applicable forwarding graphs.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_x71pUO4TEeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_x71pUe4TEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13LGYDzEEeiWMf5FLWfdLA" name="autoScalingRule">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13LGYTzEEeiWMf5FLWfdLA" annotatedElement="_13LGYDzEEeiWMf5FLWfdLA">
            <body>Specifies a rule to trigger a scaling action on a NS instantiated according to the NSD.&#xD;
NOTE 1: 	The rule is based on a combination of assertions on the values of virtualised resource-related performance metrics and VNF Indicators identified by the monitoredInfo attribute.&#xD;
NOTE 2: 	There may be multiple data sources (each identified as monitoredInfo) per rule&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_8rNJgD2uEeiu6I5JfRTxxQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_13LGYjzEEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_13LGYzzEEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13LGZDzEEeiWMf5FLWfdLA" name="lifeCycleManagementScript" type="_kEaPVjzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13LGZTzEEeiWMf5FLWfdLA" annotatedElement="_13LGZDzEEeiWMf5FLWfdLA">
            <body>Provides a life cycle management script written in a Domain Specific Language (DSL).</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_13LGZjzEEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_13LGZzzEEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_h_xYwe4UEeqoIpAKV26OqA" name="nsdf" type="_13gdcDzEEeiWMf5FLWfdLA" aggregation="composite" association="_h_wxsO4UEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_-JGlgO4VEeqoIpAKV26OqA">
            <body>Specifies a DF within the scope of an NSD.</body>
          </ownedComment>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_h_0cEe4UEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_WSqxEO4XEeqoIpAKV26OqA" name="security" type="_PppEEO4WEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_zwUh4O4XEeqoIpAKV26OqA">
            <body>Provides a signature to prevent 	tampering.</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_13WFYDzEEeiWMf5FLWfdLA" name="NsVirtualLinkDesc">
        <ownedComment xmi:type="uml:Comment" xmi:id="_13WFYTzEEeiWMf5FLWfdLA" annotatedElement="_13WFYDzEEeiWMf5FLWfdLA">
          <body>The NsVirtualLinkDesc class provides general information enabling the instantiation of virtual links.&#xD;
For all attributes in this class the Producer is SDC and the Consumer is SDC/UUI/VFC.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_k_3H0D2pEeiu6I5JfRTxxQ">
          <general xmi:type="uml:Class" href="Common.uml#_Tw79sD2pEeiu6I5JfRTxxQ"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_BAA_YPHTEeqoIpAKV26OqA" name="virtualLinkDescId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_W0JaEPHTEeqoIpAKV26OqA">
            <body>Identifier of the NsVirtualLinkDesc information element. It uniquely identifies a VLD.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_E3pYQPHTEeqoIpAKV26OqA" name="connectivityType">
          <ownedComment xmi:type="uml:Comment" xmi:id="_cXeGcPHYEeqoIpAKV26OqA">
            <body>The ConnectivityType information element 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="_13WFaTzEEeiWMf5FLWfdLA" name="virtualLinkDf" type="_kEZBoTzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13WFajzEEeiWMf5FLWfdLA" annotatedElement="_13WFaTzEEeiWMf5FLWfdLA">
            <body>Specifies properties for instantiating a VL according to a specific flavour.  </body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_13WFazzEEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_13WFbDzEEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_J9VfsPHTEeqoIpAKV26OqA" name="testAccess">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GNuysPHZEeqoIpAKV26OqA">
            <body>Specifies test access facilities expected on the VL (e.g. none, passive monitoring, or active (intrusive) loopbacks at endpoints).</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_NxUusPHTEeqoIpAKV26OqA" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_JzqXkPHZEeqoIpAKV26OqA">
            <body>Provides human-readable information on the purpose of the virtual link (e.g. VL for control plane traffic).</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_13gdcDzEEeiWMf5FLWfdLA" name="NsDf">
        <ownedComment xmi:type="uml:Comment" xmi:id="_13gdcTzEEeiWMf5FLWfdLA" annotatedElement="_13gdcDzEEeiWMf5FLWfdLA">
          <body>The NsDf class specifies the properties of a variant of an NS.&#xD;
NOTE:	Every VNF, VL and nested NS whose descriptor is referenced by the NS DF shall be involved in an NS instantiation level of the parent NS. If no instances of a given VNF/nested NS have to be deployed at NS instantiation time, the numberOfInstances attribute in the corresponding VnfToLevelMapping/NsToLevelMapping datatype shall be set to 0.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13gdcjzEEeiWMf5FLWfdLA" name="nsDfId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13gdczzEEeiWMf5FLWfdLA" annotatedElement="_13gdcjzEEeiWMf5FLWfdLA">
            <body>Identifies this NsDf class. It identifies a NS DF within the NSD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13gddDzEEeiWMf5FLWfdLA" name="flavourKey">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13gddTzEEeiWMf5FLWfdLA" annotatedElement="_13gddDzEEeiWMf5FLWfdLA">
            <body>Assurance parameter against which this flavour is being described. The key can be a combination of multiple assurance parameters with a logical relationship between them. The parameters should be present as a monitoredInfo attribute in the NSD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_0f3mIj22Eeiu6I5JfRTxxQ" name="vnfProfile" type="_45XE4DzEEeiWMf5FLWfdLA" aggregation="composite" association="_0f2YAD22Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_bbAZYJmeEeiSm9XNElOsxQ" annotatedElement="_0f3mIj22Eeiu6I5JfRTxxQ">
            <body>VNF profile to be used for the NS flavour.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_0f6CYD22Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_0f6CYT22Eeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_hPo9gD20Eeiu6I5JfRTxxQ" name="pnfProfile" type="_GYYOwDzFEeiWMf5FLWfdLA" aggregation="composite" association="_hPmhQD20Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_igKoYEPiEeiVGPeZpaYNtQ" annotatedElement="_hPo9gD20Eeiu6I5JfRTxxQ">
            <body>PNF profile to be used for the NS flavour.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_hQ5hwD20Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_hQ5hwT20Eeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_nO14IT26Eeiu6I5JfRTxxQ" name="virtualLinkprofile" type="_45bWUDzEEeiWMf5FLWfdLA" aggregation="composite" association="_nOy00D26Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_UDjqsJmeEeiSm9XNElOsxQ" annotatedElement="_nO14IT26Eeiu6I5JfRTxxQ">
            <body>VL profile to be used for the NS flavour.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_nO3tUD26Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_nO4UYD26Eeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="__KZ9kD2zEeiu6I5JfRTxxQ" name="scalingAspect" type="_GYmRMDzFEeiWMf5FLWfdLA" aggregation="composite" association="__KYIYD2zEeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_e9QiUEPiEeiVGPeZpaYNtQ" annotatedElement="__KZ9kD2zEeiu6I5JfRTxxQ">
            <body>The scaling aspects supported by this DF of the NS.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="__KbLsD2zEeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="__KbywD2zEeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_actGkj2zEeiu6I5JfRTxxQ" name="affinityOrAntiAffinitygroup" aggregation="composite" association="_acr4cD2zEeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_cByPsEPiEeiVGPeZpaYNtQ" annotatedElement="_actGkj2zEeiu6I5JfRTxxQ">
            <body>Specifies affinity or anti-affinity relationship applicable between the VNF instances created using different VNFDs, the Virtual Link instances created using different NsVirtualLinkDescs or the nested NS instances created using different NSDs in the same affinity or anti-affinity group.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Common.uml#_0AbUYDnBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_acvi0D2zEeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_acwJ4D2zEeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_-83tUj2yEeiu6I5JfRTxxQ" name="nsInstantiationLevel" type="_GYs-4DzFEeiWMf5FLWfdLA" aggregation="composite" association="_-82fMD2yEeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_VsHHEEPiEeiVGPeZpaYNtQ" annotatedElement="_-83tUj2yEeiu6I5JfRTxxQ">
            <body>Describes the details of an NS level.&#xD;
NOTE: Every VNF, VL and nested NS whose descriptor is referenced by the NS DF shall be involved in an NS instantiation level of the parent NS. If no instances of a given VNF/nested NS have to be deployed at NS instantiation time, the numberOfInstances attribute in the corresponding VnfToLevelMapping/NsToLevelMapping datatype shall be set to 0.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_-847cD2yEeiu6I5JfRTxxQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-85igD2yEeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_CtSbEJmhEeiSm9XNElOsxQ" name="defaultNsInstantiationLevel" type="_GYs-4DzFEeiWMf5FLWfdLA" aggregation="composite" association="_Cs71wJmhEeiSm9XNElOsxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_CtUQQJmhEeiSm9XNElOsxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_CtU3UJmhEeiSm9XNElOsxQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_cRPisO6jEeqoIpAKV26OqA" name="nsLcmAdditionalParams" type="_ltgMUO6kEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_HMe6AO6kEeqoIpAKV26OqA">
            <body>Additional parameters for NS Lifecycle Management operations.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_PjQ3YO6nEeqoIpAKV26OqA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_VJhq0j21Eeiu6I5JfRTxxQ" name="nsProfile" type="_GY8PcDzFEeiWMf5FLWfdLA" aggregation="composite" association="_VJf1oD21Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_oZrZcEPiEeiVGPeZpaYNtQ" annotatedElement="_VJhq0j21Eeiu6I5JfRTxxQ">
            <body>Specifies a NS Profile supported by this NS DF.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_VJjgAD21Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_VJkHED21Eeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kzQ4cD24Eeiu6I5JfRTxxQ" name="dependencies" type="_beE2IDzFEeiWMf5FLWfdLA" association="_kyvUAD24Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_fCDYkJmeEeiSm9XNElOsxQ" annotatedElement="_kzQ4cD24Eeiu6I5JfRTxxQ">
            <body>Specifies the order in which instances of the VNFs and/or nested NSs have to be created.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_-P98UD24Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-Qh9AD24Eeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_OGFC0JmiEeiSm9XNElOsxQ" name="monitoredInfo" visibility="public" type="_kEZoSDzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_XGghgJmiEeiSm9XNElOsxQ" annotatedElement="_OGFC0JmiEeiSm9XNElOsxQ">
            <body>Identifies either a virtualised resource-related performance metric or a VNF Indicator.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YgQisJmiEeiSm9XNElOsxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YgtOoJmiEeiSm9XNElOsxQ" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_45XE4DzEEeiWMf5FLWfdLA" name="VnfProfile">
        <ownedComment xmi:type="uml:Comment" xmi:id="_45XE4TzEEeiWMf5FLWfdLA" annotatedElement="_45XE4DzEEeiWMf5FLWfdLA">
          <body>The VnfProfile class specifies a profile for instantiating VNFs of a particular NS DF according to a specific VNFD and VNF DF.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45XE4zzEEeiWMf5FLWfdLA" name="vnfProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45XE5DzEEeiWMf5FLWfdLA" annotatedElement="_45XE4zzEEeiWMf5FLWfdLA">
            <body>Identifier of this vnfProfile class. It uniquely identifies a VnfProfile.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_zlIC4j27Eeiu6I5JfRTxxQ" name="vnfdId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_V6cokEPjEeiVGPeZpaYNtQ" annotatedElement="_zlIC4j27Eeiu6I5JfRTxxQ">
            <body>Reference to the VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Vnf.uml#_aaEZADOREeiHat9KcP8uWA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_zlJRAD27Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_zlJ4ED27Eeiu6I5JfRTxxQ" value="1"/>
          <association xmi:type="uml:Association" href="Vnf.uml#_zlG0wD27Eeiu6I5JfRTxxQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DquKQD24Eeiu6I5JfRTxxQ" name="flavourId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_QWJ5kEPjEeiVGPeZpaYNtQ" annotatedElement="_DquKQD24Eeiu6I5JfRTxxQ">
            <body>Identifies a flavour within the VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Vnf.uml#_p0UVsDQvEeixv_sLOod4lQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DqvYYD24Eeiu6I5JfRTxxQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Dqv_cD24Eeiu6I5JfRTxxQ" value="1"/>
          <association xmi:type="uml:Association" href="Vnf.uml#_DqruAD24Eeiu6I5JfRTxxQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45XE6zzEEeiWMf5FLWfdLA" name="instantiationLevel">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45XE7DzEEeiWMf5FLWfdLA" annotatedElement="_45XE6zzEEeiWMf5FLWfdLA">
            <body>Identifier of the instantiation level of the VNF DF to be used for instantiation. &#xD;
If not present, the default instantiation level as declared in the VNFD shall be used.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_45XE7TzEEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_45XE7jzEEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45XE7zzEEeiWMf5FLWfdLA" name="minNumberOfInstances">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45XE8DzEEeiWMf5FLWfdLA" annotatedElement="_45XE7zzEEeiWMf5FLWfdLA">
            <body>Minimum number of instances of the VNF based on this VNFD that is permitted to exist for this VnfProfile.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45XE8TzEEeiWMf5FLWfdLA" name="maxNumberOfInstances">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45XE8jzEEeiWMf5FLWfdLA" annotatedElement="_45XE8TzEEeiWMf5FLWfdLA">
            <body>Maximum number of instances of the VNF based on this VNFD that is permitted to exist for this VnfProfile.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45XE8zzEEeiWMf5FLWfdLA" name="localAffinityOrAntiAffinityRule">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45XE9DzEEeiWMf5FLWfdLA" annotatedElement="_45XE8zzEEeiWMf5FLWfdLA">
            <body>Specifies affinity and anti-affinity rules applicable between VNF instances created from this profile. </body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_7hn1IDd1EeiIfPeSAqyGdQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_45XE9TzEEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_45XE9jzEEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45XE9zzEEeiWMf5FLWfdLA" name="affinityOrAntiAffinityGroupId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45XE-DzEEeiWMf5FLWfdLA" annotatedElement="_45XE9zzEEeiWMf5FLWfdLA">
            <body>Identifier(s) of the affinity or anti-affinity group(s) the VnfProfile belongs to. &#xD;
NOTE: Each identifier references an affinity or anti-affinity group which expresses affinity or anti-affinity relationships between the VNF instance(s) created using this VnfProfile and the VNF instance(s) created using other VnfProfile(s) in the same group.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45XE-zzEEeiWMf5FLWfdLA" name="nsVirtualLinkConnectivity" type="_kEZorTzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45XE_DzEEeiWMf5FLWfdLA" annotatedElement="_45XE-zzEEeiWMf5FLWfdLA">
            <body>Defines the connection information of the VNF, it contains connection relationship between a VNF connection point and a NS virtual Link.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_45XE_TzEEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_45XE_jzEEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_GYYOwDzFEeiWMf5FLWfdLA" name="PnfProfile">
        <ownedComment xmi:type="uml:Comment" xmi:id="_GYYOwTzFEeiWMf5FLWfdLA" annotatedElement="_GYYOwDzFEeiWMf5FLWfdLA">
          <body>The PnfProfile class describes additional data for a given PNF instance used in a DF.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GYYOwjzFEeiWMf5FLWfdLA" name="pnfProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GYYOwzzFEeiWMf5FLWfdLA" annotatedElement="_GYYOwjzFEeiWMf5FLWfdLA">
            <body>Identifier of this PnfProfile class. It uniquely identifies a PnfProfile.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Bhwf8O6xEeqoIpAKV26OqA" name="pnfdId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_KVUnUO6xEeqoIpAKV26OqA">
            <body>References a PNFD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GYYOxDzFEeiWMf5FLWfdLA" name="pnfVirtualLinkConnectivity" type="_kEZorTzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GYYOxTzFEeiWMf5FLWfdLA" annotatedElement="_GYYOxDzFEeiWMf5FLWfdLA">
            <body>Defines the connection information of the PNF, it contains connection relationship between a PNF connection point and a NS virtual Link.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GYYOxjzFEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GYYOxzzFEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_45bWUDzEEeiWMf5FLWfdLA" name="VirtualLinkProfile">
        <ownedComment xmi:type="uml:Comment" xmi:id="_45bWUTzEEeiWMf5FLWfdLA" annotatedElement="_45bWUDzEEeiWMf5FLWfdLA">
          <body>The VirtualLinkProfile class specifies a profile for instantiating VLs of a particular NS DF according to a specific VLD and VL DF. </body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWUjzEEeiWMf5FLWfdLA" name="virtualLinkProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45bWUzzEEeiWMf5FLWfdLA" annotatedElement="_45bWUjzEEeiWMf5FLWfdLA">
            <body>Uniquely identifies this VirtualLinkProfile class.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_PAQXwj27Eeiu6I5JfRTxxQ" name="virtualLinkDescId" type="_13WFYDzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_pFTMgEPmEeiVGPeZpaYNtQ" annotatedElement="_PAQXwj27Eeiu6I5JfRTxxQ">
            <body>Uniquely references a VLD.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_PASM8D27Eeiu6I5JfRTxxQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_PASM8T27Eeiu6I5JfRTxxQ" value="1"/>
          <association xmi:type="uml:Association" href="Service.uml#_PAOikD27Eeiu6I5JfRTxxQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWVDzEEeiWMf5FLWfdLA" name="flavourId" type="_kEZBoTzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45bWVTzEEeiWMf5FLWfdLA" annotatedElement="_45bWVDzEEeiWMf5FLWfdLA">
            <body>Identifies a flavour within the VLD.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWVjzEEeiWMf5FLWfdLA" name="localAffinityOrAntiAffinityRule ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45bWVzzEEeiWMf5FLWfdLA" annotatedElement="_45bWVjzEEeiWMf5FLWfdLA">
            <body>Specifies affinity and anti-affinity rules applicable between VLs instantiated from the referenced VLD. </body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_7hn1IDd1EeiIfPeSAqyGdQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_45bWWDzEEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_45bWWTzEEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWWjzEEeiWMf5FLWfdLA" name="affinityOrAntiAffinityGroupId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45bWWzzEEeiWMf5FLWfdLA" annotatedElement="_45bWWjzEEeiWMf5FLWfdLA">
            <body>Identifies an affinity or anti-affinity group the VLs instantiated according to the VlProfile belong to. &#xD;
NOTE : 	Each identifier references an affinity or anti-affinity group which expresses affinity or anti-affinity relationship between the VL(s) using this VirtualLinkProfile and the VL(s) using other VirtualLinkProfile(s) in the same group.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Common.uml#_0AbUYDnBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_45bWXDzEEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_45bWXTzEEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWXjzEEeiWMf5FLWfdLA" name="maxBitrateRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45bWXzzEEeiWMf5FLWfdLA" annotatedElement="_45bWXjzEEeiWMf5FLWfdLA">
            <body>Specifies the maximum bitrate requirements for a VL instantiated according to this profile. &#xD;
NOTE: 	These attributes are used to control scaling boundaries.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_LsX6UDgXEeiOYfGHew0BGg"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWYDzEEeiWMf5FLWfdLA" name="minBitrateRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45bWYTzEEeiWMf5FLWfdLA" annotatedElement="_45bWYDzEEeiWMf5FLWfdLA">
            <body>Specifies the minimum bitrate requirements for a VL instantiated according to this profile.&#xD;
NOTE: 	These attributes are used to control scaling boundaries.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_LsX6UDgXEeiOYfGHew0BGg"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_GYmRMDzFEeiWMf5FLWfdLA" name="NsScalingAspect">
        <ownedComment xmi:type="uml:Comment" xmi:id="_GYmRMTzFEeiWMf5FLWfdLA" annotatedElement="_GYmRMDzFEeiWMf5FLWfdLA">
          <body>The NsScalingAspect class describes the details of an NS scaling aspect. An NS scaling aspect is an abstraction representing a particular &quot;dimension&quot; or &quot;property&quot; along which a given NS can be scaled.&#xD;
 Defining NS levels, in this context also known as NS scale levels, within an NS scaling aspect allows to scale NS instances &quot;by steps&quot;, i.e. to increase/decrease their capacity in a discrete manner moving from one NS scale level to another. &#xD;
Scaling by a single step does not imply that exactly one instance of each entity involved in the NS scale level is created or removed.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GYmRMjzFEeiWMf5FLWfdLA" name="nsScalingAspectId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GYmRMzzFEeiWMf5FLWfdLA" annotatedElement="_GYmRMjzFEeiWMf5FLWfdLA">
            <body>Identifier of this NsScalingAspect class.  It Uniquely identifies the NS scaling aspect in an NSD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GYmRNDzFEeiWMf5FLWfdLA" name="name">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GYmRNTzFEeiWMf5FLWfdLA" annotatedElement="_GYmRNDzFEeiWMf5FLWfdLA">
            <body>Provides a human readable name of the NS scaling aspect.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GYmRNjzFEeiWMf5FLWfdLA" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GYmRNzzFEeiWMf5FLWfdLA" annotatedElement="_GYmRNjzFEeiWMf5FLWfdLA">
            <body>Provides a human readable description of the NS scaling aspect.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fGNK0D2_Eeiu6I5JfRTxxQ" name="nsScalingLevel" type="_GYs-4DzFEeiWMf5FLWfdLA" association="_fGKukD2_Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_AKltEEPnEeiVGPeZpaYNtQ" annotatedElement="_fGNK0D2_Eeiu6I5JfRTxxQ">
            <body>Describes the details of an NS level.&#xD;
NOTE:  Only a subset of the VNFs, VLs and nested NSs whose descriptor is referenced by the NS DF may be involved in an NS scale level of the parent NS.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fGPAAD2_Eeiu6I5JfRTxxQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fGPAAT2_Eeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_GYs-4DzFEeiWMf5FLWfdLA" name="NsLevel">
        <ownedComment xmi:type="uml:Comment" xmi:id="_GYs-4TzFEeiWMf5FLWfdLA" annotatedElement="_GYs-4DzFEeiWMf5FLWfdLA">
          <body>The NsLevel class describes the details of an NS level. An NS level consists of a list of involved entities, i.e. VNFs, VLs and/or nested NSs. &#xD;
For each involved VNF/nested NS, the number of instances required by the NS level is specified. For each involved VL, the bitrate requirements corresponding to the NS level are specified.&#xD;
NS levels shall be used in the context of NS instantiation and in this case they are referred to as NS instantiation levels. &#xD;
Every VNF, VL and nested NS whose descriptor is referenced by the NS DF shall be involved in an NS instantiation level of the parent NS. If no instances of a given VNF/nested NS have to be deployed at NS instantiation time, the numberOfInstances attribute in the corresponding VnfToLevelMapping/NsToLevelMapping datatype shall be set to 0.&#xD;
NS levels may be used in the context of NS scaling and in this case they are referred to as NS scale levels.&#xD;
 Only a subset of the VNFs, VLs and nested NSs whose descriptor is referenced by the NS DF may be involved in an NS scale level of the parent NS.&#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GYs-4jzFEeiWMf5FLWfdLA" name="nsLevelId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GYs-4zzFEeiWMf5FLWfdLA" annotatedElement="_GYs-4jzFEeiWMf5FLWfdLA">
            <body>Identifier of this NsLevel class. It uniquely identifies an NS level within the DF.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GYs-5DzFEeiWMf5FLWfdLA" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GYs-5TzFEeiWMf5FLWfdLA" annotatedElement="_GYs-5DzFEeiWMf5FLWfdLA">
            <body>Human readable description of the NS level.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GYs-5jzFEeiWMf5FLWfdLA" name="vnfToLevelMapping" type="_kEZowTzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GYs-5zzFEeiWMf5FLWfdLA" annotatedElement="_GYs-5jzFEeiWMf5FLWfdLA">
            <body>Specifies the profile of the VNFs involved in this NS level and, for each of them, the required number of instances. </body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GYs-6DzFEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GYs-6TzFEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GYs-6jzFEeiWMf5FLWfdLA" name="virtualLinkToLevelMapping" type="_kEZoxzzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GYs-6zzFEeiWMf5FLWfdLA" annotatedElement="_GYs-6jzFEeiWMf5FLWfdLA">
            <body>Specifies the profile of the VLs involved in this NS level and, for each of them, the needed bandwidth. </body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GYs-7DzFEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GYs-7TzFEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GYs-7jzFEeiWMf5FLWfdLA" name="nsToLevelMapping" type="_kEZozTzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GYs-7zzFEeiWMf5FLWfdLA" annotatedElement="_GYs-7jzFEeiWMf5FLWfdLA">
            <body>Specifies the profile of the nested NSs involved in this NS level and, for each of them, the required number of instances. </body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GYs-8DzFEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GYs-8TzFEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_GY8PcDzFEeiWMf5FLWfdLA" name="NsProfile">
        <ownedComment xmi:type="uml:Comment" xmi:id="_GY8PcTzFEeiWMf5FLWfdLA" annotatedElement="_GY8PcDzFEeiWMf5FLWfdLA">
          <body>The NsProfile class specifies the profile to be used for a nested NS.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GY8PczzFEeiWMf5FLWfdLA" name="nsProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GY8PdDzFEeiWMf5FLWfdLA" annotatedElement="_GY8PczzFEeiWMf5FLWfdLA">
            <body>Identifies an NS profile.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_PKixoj26Eeiu6I5JfRTxxQ" name="nsdId" type="_13KfMDzEEeiWMf5FLWfdLA" association="_PKhjgD26Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_b9yHMEPnEeiVGPeZpaYNtQ" annotatedElement="_PKixoj26Eeiu6I5JfRTxxQ">
            <body>Identifies the NSD applicable to NS instantiated according to this profile.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_PK2ToD26Eeiu6I5JfRTxxQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_PK26sD26Eeiu6I5JfRTxxQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_r-GO0T21Eeiu6I5JfRTxxQ" name="nsDfId" type="_13gdcDzEEeiWMf5FLWfdLA" association="_r-EZoD21Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Tf8_QEPnEeiVGPeZpaYNtQ" annotatedElement="_r-GO0T21Eeiu6I5JfRTxxQ">
            <body>Identifies the applicable NS DF within the scope of the NSD.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_r-rdoD21Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_r-0AgD21Eeiu6I5JfRTxxQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_LJFEIj22Eeiu6I5JfRTxxQ" name="nsInstantiationLevelId" type="_GYs-4DzFEeiWMf5FLWfdLA" association="_LJD2AD22Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Xlc1AEPnEeiVGPeZpaYNtQ" annotatedElement="_LJFEIj22Eeiu6I5JfRTxxQ">
            <body>Identifies the NS level within the referenced NS DF to be used in the context of the parent NS instantiation. If not present, the default NS instantiation level as declared in the referenced NSD shall be used.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_LJMY4D22Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_LJVi0D22Eeiu6I5JfRTxxQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GY8PeTzFEeiWMf5FLWfdLA" name="minNumberOfInstances">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GY8PejzFEeiWMf5FLWfdLA" annotatedElement="_GY8PeTzFEeiWMf5FLWfdLA">
            <body>Minimum number of nested NS instances based on the referenced NSD that is permitted to exist for this NsProfile.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GY8PezzFEeiWMf5FLWfdLA" name="maxNumberOfInstances">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GY8PfDzFEeiWMf5FLWfdLA" annotatedElement="_GY8PezzFEeiWMf5FLWfdLA">
            <body>Maximum number of nested NS instances based on the referenced NSD that is permitted to exist for this NsProfile.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GY8PfTzFEeiWMf5FLWfdLA" name="affinityOrAntiaffinityGroupId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GY8PfjzFEeiWMf5FLWfdLA" annotatedElement="_GY8PfTzFEeiWMf5FLWfdLA">
            <body>Identifies an affinity or anti-affinity group the NSs created according to this NsProfile belong to. </body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Common.uml#_0AbUYDnBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GY8PfzzFEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GY8PgDzFEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_JFrrwO6uEeqoIpAKV26OqA" name="nsVirtualLinkConnectivity" type="_kEZorTzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_rOBqEO6uEeqoIpAKV26OqA">
            <body>Defines the connection information of the NS, it contains connection relationship between an NS SAP and a NS virtual Link of the composite NS.</body>
          </ownedComment>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_TjZn0O6uEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_d5UGQO3_EeqoIpAKV26OqA" name="Sapd">
        <ownedComment xmi:type="uml:Comment" xmi:id="_d5UGQe3_EeqoIpAKV26OqA" annotatedElement="_d5UGQO3_EeqoIpAKV26OqA">
          <body>The SAPD class specifies the information used to instantiate the service access points of an NS. A Sapd inherits from the Cpd class. All attributes of the Cpd are also attributes of the Sapd.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_d5UGQu3_EeqoIpAKV26OqA">
          <general xmi:type="uml:Class" href="Common.uml#_7pUNEDa7EeivvI-m1BaAbA"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_d5UGRe3_EeqoIpAKV26OqA" name="associatedCpdId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_d5UGRu3_EeqoIpAKV26OqA" annotatedElement="_d5UGRe3_EeqoIpAKV26OqA">
            <body>References the descriptor of VNF external connection points or the descriptor of PNF external connection points or the descriptor of the SAP of a nested NS of this NS, which the SAPs instantiated from this SAPD are mapped to.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Common.uml#_7pUNEDa7EeivvI-m1BaAbA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_d5UGR-3_EeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_d5UGSO3_EeqoIpAKV26OqA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_d5UGSe3_EeqoIpAKV26OqA" name="nsVirtualLinkDescId" visibility="public" type="_13WFYDzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_d5UGSu3_EeqoIpAKV26OqA" annotatedElement="_d5UGSe3_EeqoIpAKV26OqA">
            <body>References the descriptor of the NS VL instance to which the SAP instantiated from this SAPD connects to.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_d5UGS-3_EeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_d5UGTO3_EeqoIpAKV26OqA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_Np5hQO4TEeqoIpAKV26OqA" name="Vnffgd">
        <ownedComment xmi:type="uml:Comment" xmi:id="_Np5hQe4TEeqoIpAKV26OqA" annotatedElement="_Np5hQO4TEeqoIpAKV26OqA">
          <body>The Vnffgd information element specifies a topology of connectivity of a NS and optionally forwarding rules applicable to the traffic conveyed over this topology.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Np5hQu4TEeqoIpAKV26OqA" name="vnffgdId" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Np5hQ-4TEeqoIpAKV26OqA" annotatedElement="_Np5hQu4TEeqoIpAKV26OqA">
            <body>Identifier of this Vnffgd information element. It uniquely identifies a VNFFGD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Np5hRO4TEeqoIpAKV26OqA" name="vnfProfileId" type="_45XE4DzEEeiWMf5FLWfdLA" aggregation="shared">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Np5hRe4TEeqoIpAKV26OqA" annotatedElement="_Np5hRO4TEeqoIpAKV26OqA">
            <body>References the VnfProfile of a constituent VNF.&#xD;
NOTE 1: 	The list of constituent VNFs, PNFs, and nested NS SAPs of a VNFFG can be identical to the list of constituent VNFs, PNFs and nested NSs of the parent NSD, or can be a subset of it.&#xD;
NOTE 2:	The presence of a VNFD or PNFD identifier in a VNFFGD does not imply that all connection points instantiated from all embedded CPDs are connected to the VNFFG instantiated using the VNFFGD.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Np5hRu4TEeqoIpAKV26OqA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Np5hR-4TEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ilYfoO62EeqoIpAKV26OqA" name="pnfProfileId" type="_GYYOwDzFEeiWMf5FLWfdLA" aggregation="shared">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ilYfoe62EeqoIpAKV26OqA" annotatedElement="_ilYfoO62EeqoIpAKV26OqA">
            <body>References the pnfProfile of a constituent PNF.&#xD;
NOTE 1: 	The list of constituent VNFs, PNFs, and nested NS SAPs of a VNFFG can be identical to the list of constituent VNFs, PNFs and nested NSs of the parent NSD, or can be a subset of it.&#xD;
NOTE 2:	The presence of a VNFD or PNFD identifier in a VNFFGD does not imply that all connection points instantiated from all embedded CPDs are connected to the VNFFG instantiated using the VNFFGD.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ilYfou62EeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ilYfo-62EeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_0Vz0UO62EeqoIpAKV26OqA" name="nestedNsProfileId" type="_GY8PcDzFEeiWMf5FLWfdLA" aggregation="shared">
          <ownedComment xmi:type="uml:Comment" xmi:id="_0Vz0Ue62EeqoIpAKV26OqA" annotatedElement="_0Vz0UO62EeqoIpAKV26OqA">
            <body>References the nsProfile of a constituent NS.&#xD;
NOTE 1: 	The list of constituent VNFs, PNFs, and nested NS SAPs of a VNFFG can be identical to the list of constituent VNFs, PNFs and nested NSs of the parent NSD, or can be a subset of it.&#xD;
NOTE 2:	The presence of a VNFD or PNFD identifier in a VNFFGD does not imply that all connection points instantiated from all embedded CPDs are connected to the VNFFG instantiated using the VNFFGD.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_0Vz0Uu62EeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_0Vz0U-62EeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_0p4m4O62EeqoIpAKV26OqA" name="virtualLinkProfileId" type="_45bWUDzEEeiWMf5FLWfdLA" aggregation="shared">
          <ownedComment xmi:type="uml:Comment" xmi:id="_0p4m4e62EeqoIpAKV26OqA" annotatedElement="_0p4m4O62EeqoIpAKV26OqA">
            <body>References the virtualLinkProfile of a constituent VL.&#xD;
NOTE 1: 	The list of constituent VNFs, PNFs, and nested NS SAPs of a VNFFG can be identical to the list of constituent VNFs, PNFs and nested NSs of the parent NSD, or can be a subset of it.&#xD;
NOTE 2:	The presence of a VNFD or PNFD identifier in a VNFFGD does not imply that all connection points instantiated from all embedded CPDs are connected to the VNFFG instantiated using the VNFFGD.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_0p4m4u62EeqoIpAKV26OqA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_0p4m4-62EeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_CHXDMO64EeqoIpAKV26OqA" name="nfpPositionElement" type="_SqVGQO64EeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_TI9tkO65EeqoIpAKV26OqA">
            <body>NfpPositionElement associated with one of the constituent VNF Profile, PNF Profile or NS Profile of a nested NS.</body>
          </ownedComment>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_F_6CEO64EeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Np5hTO4TEeqoIpAKV26OqA" name="nfpd" type="_13eBMDzEEeiWMf5FLWfdLA" aggregation="composite">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Np5hTe4TEeqoIpAKV26OqA" annotatedElement="_Np5hTO4TEeqoIpAKV26OqA">
            <body>The network forwarding path associated to the VNFFG.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ZQXJoO65EeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Np5hT-4TEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_PppEEO4WEeqoIpAKV26OqA" name="SecurityParameters">
        <ownedComment xmi:type="uml:Comment" xmi:id="_k1pu0O4WEeqoIpAKV26OqA">
          <body>The SecurityParameters information element contains the signature of an NSD instance together with information required to validate the signature.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_pIA74O4WEeqoIpAKV26OqA" name="signature">
          <ownedComment xmi:type="uml:Comment" xmi:id="_tjV3sO4WEeqoIpAKV26OqA">
            <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="_ycjCUO4WEeqoIpAKV26OqA" name="algorithm">
          <ownedComment xmi:type="uml:Comment" xmi:id="_42e_4O4WEeqoIpAKV26OqA">
            <body>Specifies 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="_1s7N8O4WEeqoIpAKV26OqA" name="certificate">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9Dpj4O4WEeqoIpAKV26OqA">
            <body>Provides a certificate or a reference to a certificate to validate the signature.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_BrAJgO4XEeqoIpAKV26OqA"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_13eBMDzEEeiWMf5FLWfdLA" name="Nfpd">
        <ownedComment xmi:type="uml:Comment" xmi:id="_13eBMTzEEeiWMf5FLWfdLA" annotatedElement="_13eBMDzEEeiWMf5FLWfdLA">
          <body>The Nfpd class associates traffic flow criteria to a list of descriptors associated to the connection points and service access points to be visited by traffic flows matching these criteria. </body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13eBMjzEEeiWMf5FLWfdLA" name="nfpdId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13eBMzzEEeiWMf5FLWfdLA" annotatedElement="_13eBMjzEEeiWMf5FLWfdLA">
            <body>Identifies this nfpd class within a VNFFGD.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13eBNDzEEeiWMf5FLWfdLA" name="nfpRule">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13eBNTzEEeiWMf5FLWfdLA" annotatedElement="_13eBNDzEEeiWMf5FLWfdLA">
            <body>Provides an NFP classification and selection rule. &#xD;
The rule may be expressed as a criteria constructed out of atomic assertions linked by Boolean operators AND, OR and NOT. &#xD;
NOTE: 	Examples of atomic assertions are assertions on packet header fields’ values, date and time ranges, etc.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13eBODzEEeiWMf5FLWfdLA" name="nfpPositionDesc" type="_PoBPAO68EeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13eBOTzEEeiWMf5FLWfdLA" annotatedElement="_13eBODzEEeiWMf5FLWfdLA">
            <body>References the descriptor of a connection point to be traversed by the traffic flows matching the criteria. This shall be a connection point attached to one of the constituent VNFs and PNFs of the parent VNFFG, or a SAP of one of the constituent nested NSs of the parent VNFFG.&#xD;
NOTE: 	When multiple values are provided, the order is significant and specifies the sequence of connection points to be traversed.</body>
          </ownedComment>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_oZdS4O69EeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_LOkJAO6cEeqoIpAKV26OqA" name="VnfIndicatorData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_VvkpoO6cEeqoIpAKV26OqA">
          <body>The VnfIndicatorData information element identifies a VNF indicator in a VNFD.	</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZSSicO6cEeqoIpAKV26OqA" name="vnfdId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_fv-XkO6cEeqoIpAKV26OqA">
            <body>Identifies a VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ibNOwO6cEeqoIpAKV26OqA" name="vnfIndicator">
          <ownedComment xmi:type="uml:Comment" xmi:id="_vCW8gO6cEeqoIpAKV26OqA">
            <body>Identifies a VNF indicator within the VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_7IkgYO6cEeqoIpAKV26OqA" name="MonitoringParameter">
        <ownedComment xmi:type="uml:Comment" xmi:id="_FG05QO6dEeqoIpAKV26OqA">
          <body>The MonitoringParameter information element specifies a virtualised resource related performance metric to be monitored.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Iwz3sO6dEeqoIpAKV26OqA" name="monitoriingParameterId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_QEDb0O6dEeqoIpAKV26OqA">
            <body>Unique identifier of this monitoring parameter information element.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_UV4dYO6dEeqoIpAKV26OqA" name="name">
          <ownedComment xmi:type="uml:Comment" xmi:id="_YzDzUO6dEeqoIpAKV26OqA">
            <body>Human readable name of the monitoring parameter.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_cpstsO6dEeqoIpAKV26OqA" name="performanceMetric">
          <ownedComment xmi:type="uml:Comment" xmi:id="_g8CsoO6dEeqoIpAKV26OqA">
            <body>Defines the virtualised resource-related performance metric.
NOTE: The NFVO collects the performance reports corresponding to metric defined in this attribute from the VIMs and VNFMs using one or more PM Jobs.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_qK5o4O6dEeqoIpAKV26OqA" name="collectionPeriod">
          <ownedComment xmi:type="uml:Comment" xmi:id="_vMM_kO6dEeqoIpAKV26OqA">
            <body>An attribute that describes the periodicity at which to collect the performance information.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_ltgMUO6kEeqoIpAKV26OqA" name="NsLcmAdditionalParams">
        <ownedComment xmi:type="uml:Comment" xmi:id="_87jnUO6kEeqoIpAKV26OqA">
          <body>This information element is a container for all additional parameters that affect the invocation of NS Lifecycle Management operations, structured by operation.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_BZJ0AO6lEeqoIpAKV26OqA" name="instantiateNsAdditionalParams" type="_b0gRcO6lEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_POTl8O6lEeqoIpAKV26OqA">
            <body>Additional parameters for the Instantiate NS operation.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_H-BPMO6lEeqoIpAKV26OqA" name="scaleNsAdditionalParams" type="_wW_eEO6lEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_T6hdcO6lEeqoIpAKV26OqA">
            <body>Additional parameters for the Scale NS operation.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_IQ_1kO6lEeqoIpAKV26OqA" name="healNsAdditionalParams" type="_xndncO6lEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_WYOO8O6lEeqoIpAKV26OqA">
            <body>Additional parameters for the Heal NS operation.</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_b0gRcO6lEeqoIpAKV26OqA" name="InstantiateNsAdditionalParams">
        <ownedComment xmi:type="uml:Comment" xmi:id="_iCvVUO6lEeqoIpAKV26OqA">
          <body>This information element defines attributes that represent additional parameters for invocation of the Instantiate Ns operation.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_IySvUO6mEeqoIpAKV26OqA" name="nsAdditionalParam">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xXYHkO6mEeqoIpAKV26OqA">
            <body>Array of KVP requirements for additional parameters of NS to be passed when invoking the Instantiate Ns operation.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OSir0O6mEeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OSnkUO6mEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_wW_eEO6lEeqoIpAKV26OqA" name="ScaleNsAdditionalParams">
        <ownedComment xmi:type="uml:Comment" xmi:id="_wW_eEe6lEeqoIpAKV26OqA">
          <body>This information element defines attributes that represent additional parameters for invocation of the Scale Ns operation.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_3UMrUO6mEeqoIpAKV26OqA" name="nsAdditionalParam">
          <ownedComment xmi:type="uml:Comment" xmi:id="_3UMrUe6mEeqoIpAKV26OqA">
            <body>Array of KVP requirements for additional parameters of NS to be passed when invoking the Instantiate Ns operation.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_3UMrUu6mEeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_3UMrU-6mEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_xndncO6lEeqoIpAKV26OqA" name="HealNsAdditionalParams">
        <ownedComment xmi:type="uml:Comment" xmi:id="_xndnce6lEeqoIpAKV26OqA">
          <body>This information element defines attributes that represent additional parameters for invocation of the Heal Ns operation.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4O4x8O6mEeqoIpAKV26OqA" name="nsAdditionalParam">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4O4x8e6mEeqoIpAKV26OqA">
            <body>Array of KVP requirements for additional parameters of NS to be passed when invoking the Instantiate Ns operation.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_4O4x8u6mEeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_4O4x8-6mEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_hUm8oO6oEeqoIpAKV26OqA" name="CpdInConstituentElement">
        <ownedComment xmi:type="uml:Comment" xmi:id="_nmpicO6oEeqoIpAKV26OqA">
          <body>The CpdInConstituentElement information element enables identifying a CPD or SAPD in the context of an NS constituent.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_sIzfAO6oEeqoIpAKV26OqA" name="constituentBaseElementId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_3hBUcO6oEeqoIpAKV26OqA">
            <body>References the profile of an NS constituent.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_6RX8MO6oEeqoIpAKV26OqA" name="constituentCpdId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_-0PDYO6oEeqoIpAKV26OqA">
            <body>References the VNF external CPD for a given VnfProfile, or the PNF external CPD for a given PnfProfile, or a NS SAPD for a given NsProfile identified by the constituentBaseElementId.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_beE2IDzFEeiWMf5FLWfdLA" name="Dependencies">
        <ownedComment xmi:type="uml:Comment" xmi:id="_beE2ITzFEeiWMf5FLWfdLA" annotatedElement="_beE2IDzFEeiWMf5FLWfdLA">
          <body>The Dependencies information element provides indications on the order in which VNFs associated to different VNF Profiles and/or nested NSs associated to different NS Profiles are to be instantiated.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_IhnyUT25Eeiu6I5JfRTxxQ" name="primaryId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_PgqCsEPoEeiVGPeZpaYNtQ" annotatedElement="_IhnyUT25Eeiu6I5JfRTxxQ">
            <body>References a VnfProfile or NsProfile.&#xD;
NOTE:  NFV Management and Orchestration functions shall instantiate VNFs from the VnfProfile and/or nested NSs from the NsProfile referenced in the primary attribute before instantiating VNFs from the VnfProfile and/or nested NSs from the NsProfile referenced in the secondary attribute.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_IhqOkD25Eeiu6I5JfRTxxQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_IhqOkT25Eeiu6I5JfRTxxQ" value="*"/>
          <association xmi:type="uml:Association" href="Service.uml#_Ihl9ID25Eeiu6I5JfRTxxQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_g9ay0T25Eeiu6I5JfRTxxQ" name="secondaryId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ThCH4EPoEeiVGPeZpaYNtQ" annotatedElement="_g9ay0T25Eeiu6I5JfRTxxQ">
            <body>References a VnfProfile or NsProfile.&#xD;
NOTE:  NFV Management and Orchestration functions shall instantiate VNFs from the VnfProfile and/or nested NSs from the NsProfile referenced in the primary attribute before instantiating VNFs from the VnfProfile and/or nested NSs from the NsProfile referenced in the secondary attribute&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_g9cA8D25Eeiu6I5JfRTxxQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_g9coAD25Eeiu6I5JfRTxxQ" value="*"/>
          <association xmi:type="uml:Association" href="Service.uml#_g9Y9oD25Eeiu6I5JfRTxxQ"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_6GPSQDzFEeiWMf5FLWfdLA" name="NsVirtualLink">
        <ownedComment xmi:type="uml:Comment" xmi:id="_6GPSQTzFEeiWMf5FLWfdLA" annotatedElement="_6GPSQDzFEeiWMf5FLWfdLA">
          <body>This class provides run-time information about an NS VL instance.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_kqYp4ES2EeiVGPeZpaYNtQ">
          <general xmi:type="uml:Class" href="Common.uml#_Tw5PIES0EeiVGPeZpaYNtQ"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_6GPSQzzFEeiWMf5FLWfdLA" name="virtualNetwork">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6GPSRDzFEeiWMf5FLWfdLA" annotatedElement="_6GPSQzzFEeiWMf5FLWfdLA">
            <body>Virtualised network resource(s) realizing this VL.</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_BJMXoDzGEeiWMf5FLWfdLA" name="NsLinkPort">
        <ownedComment xmi:type="uml:Comment" xmi:id="_BJMXoTzGEeiWMf5FLWfdLA" annotatedElement="_BJMXoDzGEeiWMf5FLWfdLA">
          <body>Respresents the port of a NS VL. </body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_1WWbsDzFEeiWMf5FLWfdLA" name="NetworkServiceInstance">
        <ownedComment xmi:type="uml:Comment" xmi:id="_1WWbsTzFEeiWMf5FLWfdLA" annotatedElement="_1WWbsDzFEeiWMf5FLWfdLA">
          <body>A composition of Network Functions and defined by its functional and behavioural specification. &#xD;
NOTE: The Network Service (NS) contributes to the behaviour of the higher layer service, which is characterized by at least performance, dependability, and security specifications. The end-to-end network service behaviour is the result of the combination of the individual network function behaviours as well as the behaviours of the network infrastructure composition mechanism.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WWbsjzFEeiWMf5FLWfdLA" name="nsInstanceId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WWbszzFEeiWMf5FLWfdLA" annotatedElement="_1WWbsjzFEeiWMf5FLWfdLA">
            <body>Identifier of this NetworkService, identifying the NS instance.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WWbtDzFEeiWMf5FLWfdLA" name="nsName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WWbtTzFEeiWMf5FLWfdLA" annotatedElement="_1WWbtDzFEeiWMf5FLWfdLA">
            <body>Human readable name of the NS instance.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WWbtjzFEeiWMf5FLWfdLA" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WWbtzzFEeiWMf5FLWfdLA" annotatedElement="_1WWbtjzFEeiWMf5FLWfdLA">
            <body>Human readable description of the NS instance</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fJyE4ESyEeiVGPeZpaYNtQ" name="_nf" aggregation="shared">
          <ownedComment xmi:type="uml:Comment" xmi:id="_m4JFcES3EeiVGPeZpaYNtQ" annotatedElement="_fJyE4ESyEeiVGPeZpaYNtQ">
            <body>Reference to consistituent VNFs and PNFs on this NS.&#xD;
NOTE: Cardinality of zero is only valid for a non-instantiated NS.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Nf.uml#_VtzSoESyEeiVGPeZpaYNtQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fKR0IESyEeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fKf2kESyEeiVGPeZpaYNtQ" value="*"/>
          <association xmi:type="uml:Association" href="Service.uml#_fHipMESyEeiVGPeZpaYNtQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_y4vGUUSzEeiVGPeZpaYNtQ" name="_nsVirtualLink" type="_6GPSQDzFEeiWMf5FLWfdLA" aggregation="composite">
          <ownedComment xmi:type="uml:Comment" xmi:id="_q9a4wES3EeiVGPeZpaYNtQ" annotatedElement="_y4vGUUSzEeiVGPeZpaYNtQ">
            <body>Information on the VLs of this NS.&#xD;
NOTE: Cardinality of zero is only valid for a non-instantiated NS.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_y4-98ESzEeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_y5PcoESzEeiVGPeZpaYNtQ" value="*"/>
          <association xmi:type="uml:Association" href="Service.uml#_y4VdsESzEeiVGPeZpaYNtQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_MCMWsES3EeiVGPeZpaYNtQ" name="_sap" type="_1Wb7QDzFEeiWMf5FLWfdLA" aggregation="composite">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ucMswES3EeiVGPeZpaYNtQ" annotatedElement="_MCMWsES3EeiVGPeZpaYNtQ">
            <body>Information on the SAPs of this NS.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_MCOL4ES3EeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_MCOy8ES3EeiVGPeZpaYNtQ" value="*"/>
          <association xmi:type="uml:Association" href="Service.uml#_MCJ6cES3EeiVGPeZpaYNtQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_zHBdIUS3EeiVGPeZpaYNtQ" name="_nestedNsi" type="_1WWbsDzFEeiWMf5FLWfdLA" aggregation="shared">
          <ownedComment xmi:type="uml:Comment" xmi:id="_MWzfUES4EeiVGPeZpaYNtQ" annotatedElement="_zHBdIUS3EeiVGPeZpaYNtQ">
            <body>Reference to information on nested NSs of this NS.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_zHTJ8ES3EeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_zHeJEES3EeiVGPeZpaYNtQ" value="*"/>
          <association xmi:type="uml:Association" href="Service.uml#_zG_A4ES3EeiVGPeZpaYNtQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_bnAS8kS4EeiVGPeZpaYNtQ" name="_vnffg" aggregation="composite">
          <ownedComment xmi:type="uml:Comment" xmi:id="_zppMkES4EeiVGPeZpaYNtQ" annotatedElement="_bnAS8kS4EeiVGPeZpaYNtQ">
            <body>Information on the VNFFGs of this NS.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Vnf.uml#_1WdwcDzFEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bnGZkES4EeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bnGZkUS4EeiVGPeZpaYNtQ" value="*"/>
          <association xmi:type="uml:Association" href="Service.uml#_bm_E0ES4EeiVGPeZpaYNtQ"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_1Wb7QDzFEeiWMf5FLWfdLA" name="Sap">
        <ownedComment xmi:type="uml:Comment" xmi:id="_1Wb7QTzFEeiWMf5FLWfdLA" annotatedElement="_1Wb7QDzFEeiWMf5FLWfdLA">
          <body>Provides information on a Service Access Point (SAP) of a NS</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_B4dtoES3EeiVGPeZpaYNtQ">
          <general xmi:type="uml:Class" href="Common.uml#_8naVoES0EeiVGPeZpaYNtQ"/>
        </generalization>
      </packagedElement>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_XHjE8Bg2EembeqMx64UEWQ" name="TypeDefinitions">
      <packagedElement xmi:type="uml:DataType" xmi:id="_kEaPVjzEEeiWMf5FLWfdLA" name="NsLifeCycleManagementScript">
        <ownedComment xmi:type="uml:Comment" xmi:id="_kEaPVzzEEeiWMf5FLWfdLA" annotatedElement="_kEaPVjzEEeiWMf5FLWfdLA">
          <body>The LifeCycleManagementScript information element specifies a script for the NS.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEaPWDzEEeiWMf5FLWfdLA" name="event">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEaPWTzEEeiWMf5FLWfdLA" annotatedElement="_kEaPWDzEEeiWMf5FLWfdLA">
            <body>Describes NS lifecycle event(s) or an external stimulus detected on an NFVO reference point. &#xD;
NOTE 1:	A minimum set of NS lifecycle events triggered internally by the NFVO includes: start instantiation, end instantiation, start scaling, end scaling, start healing, end healing, start termination, end termination, start update, end update.&#xD;
NOTE 2:	A minimum set of external stimulus includes: the receipt of request message of instantiation, scaling, healing, termination, update of NS.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_kEaPWjzEEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_kEaPWzzEEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEaPXDzEEeiWMf5FLWfdLA" name="script">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEaPXTzEEeiWMf5FLWfdLA" annotatedElement="_kEaPXDzEEeiWMf5FLWfdLA">
            <body>Includes an NS LCM script (e.g., written in a DSL) triggered to react to one of the events listed in the event attribute.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_kEZBoTzEEeiWMf5FLWfdLA" name="VirtualLinkDf">
        <ownedComment xmi:type="uml:Comment" xmi:id="_kEZBojzEEeiWMf5FLWfdLA" annotatedElement="_kEZBoTzEEeiWMf5FLWfdLA">
          <body>The VirtualLinkDf datatype specifies properties for instantiating a VL according to a specific flavour.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZBozzEEeiWMf5FLWfdLA" name="flavourId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZBpDzEEeiWMf5FLWfdLA" annotatedElement="_kEZBozzEEeiWMf5FLWfdLA">
            <body>Identifies this VirtualLinkDF datatype within a VLD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZBpTzEEeiWMf5FLWfdLA" name="qos" type="_kEZo-DzEEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZBpjzEEeiWMf5FLWfdLA" annotatedElement="_kEZBpTzEEeiWMf5FLWfdLA">
            <body>Specifies quality of service parameters applicable to a VL.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_kEZBpzzEEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_kEZBqDzEEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZBqTzEEeiWMf5FLWfdLA" name="serviceAvaibilityLevel" type="_xl3E0KY9Eeixw5Ke5QD1pQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZBqjzEEeiWMf5FLWfdLA" annotatedElement="_kEZBqTzEEeiWMf5FLWfdLA">
            <body>Specifies one of the three levels defined in ETSI GS NFV-REL 001:&#xD;
•	Level 1&#xD;
•	Level 2&#xD;
•	Level 3</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_kEZBqzzEEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_kEZBrDzEEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_kEZo-DzEEeiWMf5FLWfdLA" name="NsQoS">
        <ownedComment xmi:type="uml:Comment" xmi:id="_kEZo-TzEEeiWMf5FLWfdLA" annotatedElement="_kEZo-DzEEeiWMf5FLWfdLA">
          <body>The NsQoS datatype specifies quality of service parameters applicable to a NS VL.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_nlCDoKY-Eeixw5Ke5QD1pQ">
          <general xmi:type="uml:DataType" href="Common.uml#_B1G2UDd_EeiIfPeSAqyGdQ"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_tCfy8PHQEeqoIpAKV26OqA" name="latency">
          <ownedComment xmi:type="uml:Comment" xmi:id="_R8FJ0PHREeqoIpAKV26OqA">
            <body>Specifies the maximum latency in ms.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_AqrTcPHREeqoIpAKV26OqA" name="packetDelayVariation">
          <ownedComment xmi:type="uml:Comment" xmi:id="_UXFzsPHREeqoIpAKV26OqA">
            <body>Specifies the maximum jitter in ms.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GsK70PHREeqoIpAKV26OqA" name="packetLossRatio">
          <ownedComment xmi:type="uml:Comment" xmi:id="_W2o_UPHREeqoIpAKV26OqA">
            <body>Specifies the maximum packet loss ratio.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_MgwJkPHREeqoIpAKV26OqA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZo-zzEEeiWMf5FLWfdLA" name="priority">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZo_DzEEeiWMf5FLWfdLA" annotatedElement="_kEZo-zzEEeiWMf5FLWfdLA">
            <body>Specifies the priority level in case of congestion on the underlying physical links.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_kEZo_TzEEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_kEZo_jzEEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_kEZoSDzEEeiWMf5FLWfdLA" name="MonitoredData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_kEZoSTzEEeiWMf5FLWfdLA" annotatedElement="_kEZoSDzEEeiWMf5FLWfdLA">
          <body>The MonitoredData datatype identifies information to be monitored during the lifetime of a network service instance.
NOTE: One and only one of the attributes shall be included (i.e. there is a XOR relationship between the attributes).</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DPfV4O4pEeqoIpAKV26OqA" name="vnfindicatorinfo" type="_LOkJAO6cEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_PfYMAO6eEeqoIpAKV26OqA">
            <body>Provides information on a VNF Indicator to be monitored.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_freAIO6eEeqoIpAKV26OqA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Jx5S8O4pEeqoIpAKV26OqA" name="monitoringParameter" type="_7IkgYO6cEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_bYlOoO6eEeqoIpAKV26OqA">
            <body>Specifies the virtualised resource related performance metric to be monitored on an NS level or VNF level.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_mCo9kO6eEeqoIpAKV26OqA"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_kEZowTzEEeiWMf5FLWfdLA" name="VnfToLevelMapping">
        <ownedComment xmi:type="uml:Comment" xmi:id="_kEZowjzEEeiWMf5FLWfdLA" annotatedElement="_kEZowTzEEeiWMf5FLWfdLA">
          <body>The VnfToLevelMapping datatype specifies the profile to be used for a VNF involved in a given NS level and the required number of instances.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZowzzEEeiWMf5FLWfdLA" name="vnfProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZoxDzEEeiWMf5FLWfdLA" annotatedElement="_kEZowzzEEeiWMf5FLWfdLA">
            <body>Identifies the profile to be used for a VNF involved in an NS level.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZoxTzEEeiWMf5FLWfdLA" name="numberOfInstances">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZoxjzEEeiWMf5FLWfdLA" annotatedElement="_kEZoxTzEEeiWMf5FLWfdLA">
            <body>Specifies the number of VNF instances required for an NS level.&#xD;
NOTE 1: 	It shall be in the range of minNumberOfInstances-maxNumberOfInstances, as specified in the referenced VnfProfile.&#xD;
NOTE 2: 	When the corresponding NS level is used in the context of NS instantiation, the numberOfInstances attribute specifies the number of VNF instances to be deployed.&#xD;
NOTE 3: 	When the corresponding NS level is used in the context of NS scaling, the numberOfInstances attribute does not specify the number of VNF instances to be added/removed when reaching that NS scale level. The actual number of VNF instances to be added/removed can be derived by subtracting the numberOfInstances declared in the source NS scale level from the numberOfInstances declared in the target NS level of the scaling request.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_kEZozTzEEeiWMf5FLWfdLA" name="NsToLevelMapping">
        <ownedComment xmi:type="uml:Comment" xmi:id="_kEZozjzEEeiWMf5FLWfdLA" annotatedElement="_kEZozTzEEeiWMf5FLWfdLA">
          <body>The NsToLevelMapping datatype specifies the profile to be used for a nested NS involved in a given NS level and the required number of instances.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZozzzEEeiWMf5FLWfdLA" name="nsProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZo0DzEEeiWMf5FLWfdLA" annotatedElement="_kEZozzzEEeiWMf5FLWfdLA">
            <body>Identifies the profile to be used for a nested NS involved in the NS level.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZo0TzEEeiWMf5FLWfdLA" name="numberOfInstances">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZo0jzEEeiWMf5FLWfdLA" annotatedElement="_kEZo0TzEEeiWMf5FLWfdLA">
            <body>Specifies the number of nested NS instances required for the NS scale level.&#xD;
NOTE 1:	It shall be in the range of minNumberOfInstances-maxNumberOfInstances, as specified in the referenced NsProfile.&#xD;
NOTE 2: 	When the corresponding NS level is used in the context of NS instantiation, the numberOfInstances attribute specifies the number of nested NS instances to be deployed.&#xD;
NOTE 3: 	When the corresponding NS level is used in the context of NS scaling, the numberOfInstances attribute does not specify the number of nested NS instances to be added/removed when reaching that NS scale level. The actual number of nested NS instances to be added/removed can be derived by subtracting the numberOfInstances declared in the source NS scale level from the numberOfInstances declared in the target NS level of the scaling request.&#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="_kEZoxzzEEeiWMf5FLWfdLA" name="VirtualLinkToLevelMapping">
        <ownedComment xmi:type="uml:Comment" xmi:id="_kEZoyDzEEeiWMf5FLWfdLA" annotatedElement="_kEZoxzzEEeiWMf5FLWfdLA">
          <body>The VirtualLinkToLevelMapping datatype specifies the profile to be used for a VL involved in a given NS level and bitrate requirements.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZoyTzEEeiWMf5FLWfdLA" name="virtualLinkProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZoyjzEEeiWMf5FLWfdLA" annotatedElement="_kEZoyTzEEeiWMf5FLWfdLA">
            <body>Identifies the profile to be used for a VL involved in an NS level.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZoyzzEEeiWMf5FLWfdLA" name="bitRateRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZozDzEEeiWMf5FLWfdLA" annotatedElement="_kEZoyzzEEeiWMf5FLWfdLA">
            <body>Specifies the bit rate requirements for the NS level.&#xD;
NOTE: 	It shall be in the range of minBitrateRequirements - maxBitrateRequirements, as specified in the referenced VirtualLinkProfile.</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_kEZorTzEEeiWMf5FLWfdLA" name="NsVirtualLinkConnectivity">
        <ownedComment xmi:type="uml:Comment" xmi:id="_kEZorjzEEeiWMf5FLWfdLA" annotatedElement="_kEZorTzEEeiWMf5FLWfdLA">
          <body>The NsVirtuallLinkConnectivity datatype describes connection information between a connection point and a NS virtual Link.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZorzzEEeiWMf5FLWfdLA" name="virtualLinkProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZosDzEEeiWMf5FLWfdLA" annotatedElement="_kEZorzzEEeiWMf5FLWfdLA">
            <body>Reference an NS VL profile.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZosTzEEeiWMf5FLWfdLA" name="constituentCpdId" type="_hUm8oO6oEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZosjzEEeiWMf5FLWfdLA" annotatedElement="_kEZosTzEEeiWMf5FLWfdLA">
            <body>References the descriptor of a connection point on a VNF/PNF or a SAP which connects to virtual links instantiated from the profile identified in the virtualLinkProfileId attribute.</body>
          </ownedComment>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_lLvbsO6nEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_SqVGQO64EeqoIpAKV26OqA" name="NfpPositionElement">
        <ownedComment xmi:type="uml:Comment" xmi:id="_cMIMoO64EeqoIpAKV26OqA">
          <body>The NfpPositionElement information element references one or two CPD(s) or SAPD(s) for a given VnfProfile, PnfProfile or NsProfile.
The usage of profiles enables differentiating the CPDs or SAPDs specified in the same VNFD/PNFD/NSD that are applicable to different VNF/PNF/NS instances derived from the same VNFD/PNFD/NSD.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_l38KoO64EeqoIpAKV26OqA" name="nfpPositionElementId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_tPsbUO64EeqoIpAKV26OqA">
            <body>Identifier of this NfpPositionElement information element. It uniquely identifies an NfpPositionElemen.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_18U0QO64EeqoIpAKV26OqA" name="nfpPositionElementDesc" type="_hUm8oO6oEeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_EsQzcO65EeqoIpAKV26OqA">
            <body>Specifies a CPD or SAPD in the context of a profile of an NS constituent element
When only one value is provided, the ingress and egress traffic is associated to a single CPD or SAPD.&#xD;When two values are provided, the ingress CP/SAP is associated to the first value and the egress CP/SAP is associated to the second value</body>
          </ownedComment>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Cya88O65EeqoIpAKV26OqA" value="2"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_PoBPAO68EeqoIpAKV26OqA" name="NfpPositionDesc">
        <ownedComment xmi:type="uml:Comment" xmi:id="_WYPloO68EeqoIpAKV26OqA">
          <body>The NfpPositionDesc information element references one or more CPDs or SAPDs and provides rules on how to route traffic flows among CP or SAP instances instantiated from these descriptors.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_aqT3wO68EeqoIpAKV26OqA" name="nfpPositionDescId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_r77JgO68EeqoIpAKV26OqA">
            <body>Identifier of this NfpPositionDesc element.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fZzFsO68EeqoIpAKV26OqA" name="nfpPositionElementId" type="_SqVGQO64EeqoIpAKV26OqA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xCMfwO68EeqoIpAKV26OqA">
            <body>References one or a pair of CPDs or SAPDs</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ihdaMO68EeqoIpAKV26OqA" name="forwardingBehaviour">
          <ownedComment xmi:type="uml:Comment" xmi:id="_WMbhwO69EeqoIpAKV26OqA">
            <body>Specifies a rule to apply to forward traffic to CP or SAP instances corresponding to the referenced CPD(s) and SAPD(s).&#xD;The minimum list of rules to be supported shall include:&#xD;• ALL = Traffic flows shall be forwarded simultaneously to all CP or SAP instances created from the referenced CP profile(s).&#xD;• LB = Traffic flows shall be forwarded to one CP or SAP instance created from the referenced CP profile(s) selected based on a load-balancing algorithm.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_nB3qUO68EeqoIpAKV26OqA" name="forwardingBehaviorInputParameters">
          <ownedComment xmi:type="uml:Comment" xmi:id="_-t-6UO68EeqoIpAKV26OqA">
            <body>Provides input parameters to configure the forwarding behaviour (e.g. identifies a load balancing algorithm).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_dzULoPHTEeqoIpAKV26OqA" name="ConnectivityType">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_s_dlsPHTEeqoIpAKV26OqA" name="layerProtocol">
          <ownedComment xmi:type="uml:Comment" xmi:id="_z5upIPHTEeqoIpAKV26OqA">
            <body>Specifies the protocols that the VL uses (Ethernet, MPLS, ODU2, IPV4, IPV6, Pseudo-Wire).</body>
          </ownedComment>
          <type xmi:type="uml:Enumeration" href="Common.uml#_tFQGcDnLEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-VzmcPHTEeqoIpAKV26OqA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_wRPfgPHTEeqoIpAKV26OqA" name="flowPattern">
          <ownedComment xmi:type="uml:Comment" xmi:id="_3xIYgPHTEeqoIpAKV26OqA">
            <body>Specifies the flow pattern of the connectivity (Line, Tree, Mesh, etc.).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_xl3E0KY9Eeixw5Ke5QD1pQ" name="ServiceAvailabilityLevel">
        <ownedComment xmi:type="uml:Comment" xmi:id="_30piUKY9Eeixw5Ke5QD1pQ" annotatedElement="_xl3E0KY9Eeixw5Ke5QD1pQ">
          <body>Specifies one of the three levels defined in ETSI GS NFV-REL 001:&#xD;
• Level 1&#xD;
• Level 2&#xD;
• Level 3&#xD;
</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_6KjCsKY9Eeixw5Ke5QD1pQ" name="LEVEL_1"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_9VdfgKY9Eeixw5Ke5QD1pQ" name="LEVEL_2"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_AOydEKY-Eeixw5Ke5QD1pQ" name="LEVEL_3"/>
      </packagedElement>
    </packagedElement>
    <profileApplication xmi:type="uml:ProfileApplication" xmi:id="_Epmi8Bg2EembeqMx64UEWQ">
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_BavMADksEemjyLkBMGZA1g" source="PapyrusVersion">
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BavMATksEemjyLkBMGZA1g" key="Version" value="0.2.15"/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BavMAjksEemjyLkBMGZA1g" key="Comment" value=""/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BavMAzksEemjyLkBMGZA1g" key="Copyright" value=""/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BavMBDksEemjyLkBMGZA1g" key="Date" value="2019-02-25"/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BavMBTksEemjyLkBMGZA1g" key="Author" value=""/>
      </eAnnotations>
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_Epmi9xg2EembeqMx64UEWQ" source="http://www.eclipse.org/uml2/2.0.0/UML">
        <references xmi:type="ecore:EPackage" href="OpenModel_Profile.profile.uml#_2RzvwDkrEemjyLkBMGZA1g"/>
      </eAnnotations>
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_EpnxEBg2EembeqMx64UEWQ" source="duplicatedProfile"/>
      <appliedProfile xmi:type="uml:Profile" href="OpenModel_Profile.profile.uml#_m1xqsHBgEd6FKu9XX1078A"/>
    </profileApplication>
    <profileApplication xmi:type="uml:ProfileApplication" xmi:id="_EppmQBg2EembeqMx64UEWQ">
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_EppmQRg2EembeqMx64UEWQ" source="http://www.eclipse.org/uml2/2.0.0/UML">
        <references xmi:type="ecore:EPackage" href="pathmap://PAPYRUS_ACTIONLANGUAGE_PROFILE/ActionLanguage-Profile.profile.uml#_Kv8EIKFXEeS_KNX0nfvIVQ"/>
      </eAnnotations>
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_Epq0YBg2EembeqMx64UEWQ" source="duplicatedProfile"/>
      <appliedProfile xmi:type="uml:Profile" href="pathmap://PAPYRUS_ACTIONLANGUAGE_PROFILE/ActionLanguage-Profile.profile.uml#ActionLanguage"/>
    </profileApplication>
  </uml:Package>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2g3v4BhEEembeqMx64UEWQ" base_StructuralFeature="_wdCq4D2rEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6DI8wBhEEembeqMx64UEWQ" base_StructuralFeature="_YX-k0D2qEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-Ptq4BhEEembeqMx64UEWQ" base_StructuralFeature="_JDEa4D2rEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_PnCKsKZEEeixw5Ke5QD1pQ" base_Element="_JDB-oj2rEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_cuz5QKZEEeixw5Ke5QD1pQ" base_Element="_YX8Ikj2qEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_-lF3MKZEEeixw5Ke5QD1pQ" base_Element="_kEZBozzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_AR1s4KZFEeixw5Ke5QD1pQ" base_Element="_kEZBpTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_BwNvYKZFEeixw5Ke5QD1pQ" base_Element="_kEZBqTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_G98_kKZFEeixw5Ke5QD1pQ" base_Element="_kEZo-zzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_u3XCMK0XEeirrO9guYUuGw" base_Element="_13KfNDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_xlOWoK0XEeirrO9guYUuGw" base_Element="_13KfNjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_1I1nUK0XEeirrO9guYUuGw" base_Element="_13LGQDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_4TtA0K0XEeirrO9guYUuGw" base_Element="_13LGQjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n0q_0Ke3Eeixw5Ke5QD1pQ" base_StructuralFeature="_kEZBozzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n0wfYKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_kEZBpTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n01X4Ke3Eeixw5Ke5QD1pQ" base_StructuralFeature="_kEZBqTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kGSekDzEEeiWMf5FLWfdLA" base_StructuralFeature="_kEZorzzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kGSekTzEEeiWMf5FLWfdLA" base_StructuralFeature="_kEZosTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kGTsszzEEeiWMf5FLWfdLA" base_StructuralFeature="_kEZozzzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kGUTwDzEEeiWMf5FLWfdLA" base_StructuralFeature="_kEZo0TzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n063cKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_kEZo-zzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n0jrEKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_kEaPWDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n0nVcKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_kEaPXDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_nSCz4Ke3Eeixw5Ke5QD1pQ" base_Class="_13KfMDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ntW24Ke3Eeixw5Ke5QD1pQ" base_StructuralFeature="_13KfMjzEEeiWMf5FLWfdLA" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nuTSEKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_13KfNDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nue4QKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_13KfNjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nurskKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_13LGQDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nu5vAKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_13LGQjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nvEHEKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_13LGYDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nvVz4Ke3Eeixw5Ke5QD1pQ" base_StructuralFeature="_13LGZDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_nve90ae3Eeixw5Ke5QD1pQ" base_Class="_13WFYDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nvtAQKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_13WFaTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_nwm_MKe3Eeixw5Ke5QD1pQ" base_Class="_13gdcDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nwviEKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_13gdcjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nw9kgKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_13gddDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_GYnfUDzFEeiWMf5FLWfdLA" base_Class="_GYmRMDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GYotcDzFEeiWMf5FLWfdLA" base_StructuralFeature="_GYmRMjzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GYpUgDzFEeiWMf5FLWfdLA" base_StructuralFeature="_GYmRNDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GYpUgTzFEeiWMf5FLWfdLA" base_StructuralFeature="_GYmRNjzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_GYtl8DzFEeiWMf5FLWfdLA" base_Class="_GYs-4DzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GYuNADzFEeiWMf5FLWfdLA" base_StructuralFeature="_GYs-4jzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GYu0EDzFEeiWMf5FLWfdLA" base_StructuralFeature="_GYs-5DzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GYvbIDzFEeiWMf5FLWfdLA" base_StructuralFeature="_GYs-5jzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GYvbITzFEeiWMf5FLWfdLA" base_StructuralFeature="_GYs-6jzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GYwCMDzFEeiWMf5FLWfdLA" base_StructuralFeature="_GYs-7jzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_GY9dkDzFEeiWMf5FLWfdLA" base_Class="_GY8PcDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GY-EoDzFEeiWMf5FLWfdLA" base_StructuralFeature="_GY8PczzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GY-rsTzFEeiWMf5FLWfdLA" base_StructuralFeature="_GY8PeTzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GY-rsjzFEeiWMf5FLWfdLA" base_StructuralFeature="_GY8PezzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GY-rszzFEeiWMf5FLWfdLA" base_StructuralFeature="_GY8PfTzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_6GP5UDzFEeiWMf5FLWfdLA" base_Class="_6GPSQDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6GQgYDzFEeiWMf5FLWfdLA" base_StructuralFeature="_6GPSQzzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_BJM-sDzGEeiWMf5FLWfdLA" base_Class="_BJMXoDzGEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nvasYKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_YX8Ikj2qEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nvbTcae3Eeixw5Ke5QD1pQ" base_StructuralFeature="_JDB-oj2rEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nvchkae3Eeixw5Ke5QD1pQ" base_StructuralFeature="_wdAOoD2rEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nxa3gKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_-83tUj2yEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-85igj2yEeiu6I5JfRTxxQ" base_StructuralFeature="_-85igT2yEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nxz5EKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_actGkj2zEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_acww8D2zEeiu6I5JfRTxxQ" base_StructuralFeature="_acwJ4T2zEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nx-4MKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="__KZ9kD2zEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__Kbywj2zEeiu6I5JfRTxxQ" base_StructuralFeature="__KbywT2zEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nyJ3UKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_hPo9gD20Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hQ6I0T20Eeiu6I5JfRTxxQ" base_StructuralFeature="_hQ6I0D20Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nyU2cKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_VJhq0j21Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VJkuID21Eeiu6I5JfRTxxQ" base_StructuralFeature="_VJkHET21Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_r-GO0j21Eeiu6I5JfRTxxQ" base_StructuralFeature="_r-GO0T21Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_r-78UD21Eeiu6I5JfRTxxQ" base_StructuralFeature="_r-7VQD21Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LJFrMD22Eeiu6I5JfRTxxQ" base_StructuralFeature="_LJFEIj22Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LJdeoT22Eeiu6I5JfRTxxQ" base_StructuralFeature="_LJdeoD22Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nyfOgKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_0f3mIj22Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0f6CYz22Eeiu6I5JfRTxxQ" base_StructuralFeature="_0f6CYj22Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kyxJMz24Eeiu6I5JfRTxxQ" base_StructuralFeature="_kyxJMj24Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nypmkKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_kzQ4cD24Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PKjYsD26Eeiu6I5JfRTxxQ" base_StructuralFeature="_PKixoj26Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PK26sj26Eeiu6I5JfRTxxQ" base_StructuralFeature="_PK26sT26Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ny43IKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_nO14IT26Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nO4UYj26Eeiu6I5JfRTxxQ" base_StructuralFeature="_nO4UYT26Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fGNK0T2_Eeiu6I5JfRTxxQ" base_StructuralFeature="_fGNK0D2_Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fGPnED2_Eeiu6I5JfRTxxQ" base_StructuralFeature="_fGPAAj2_Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:PassedByReference xmi:id="_nvb6gKe3Eeixw5Ke5QD1pQ" base_Property="_JDB-oj2rEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nvdIoKe3Eeixw5Ke5QD1pQ" base_Element="_wdAOoD2rEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:PassedByReference xmi:id="_nvdvsKe3Eeixw5Ke5QD1pQ" base_Property="_wdAOoD2rEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nwrQoKe3Eeixw5Ke5QD1pQ" base_Element="_13gdcDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_nw5TEKe3Eeixw5Ke5QD1pQ" base_Element="_13gdcjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_nxH8kKe3Eeixw5Ke5QD1pQ" base_Element="_13gddDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_nxlPkKe3Eeixw5Ke5QD1pQ" base_Element="_-83tUj2yEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nx7N0Ke3Eeixw5Ke5QD1pQ" base_Element="_actGkj2zEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nyFl4Ke3Eeixw5Ke5QD1pQ" base_Element="__KZ9kD2zEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nyRMEKe3Eeixw5Ke5QD1pQ" base_Element="_hPo9gD20Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nybkIKe3Eeixw5Ke5QD1pQ" base_Element="_VJhq0j21Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nyl8MKe3Eeixw5Ke5QD1pQ" base_Element="_0f3mIj22Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nyyJcKe3Eeixw5Ke5QD1pQ" base_Element="_kzQ4cD24Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nzCBEKe3Eeixw5Ke5QD1pQ" base_Element="_nO14IT26Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nxphAKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_CtSbEJmhEeiSm9XNElOsxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_CtWFcJmhEeiSm9XNElOsxQ" base_StructuralFeature="_CtVeYJmhEeiSm9XNElOsxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nxxc0Ke3Eeixw5Ke5QD1pQ" base_Element="_CtSbEJmhEeiSm9XNElOsxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nxM1EKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_OGFC0JmiEeiSm9XNElOsxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nxWmEKe3Eeixw5Ke5QD1pQ" base_Element="_OGFC0JmiEeiSm9XNElOsxQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_ntTzkKe3Eeixw5Ke5QD1pQ" base_Element="_13KfMDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_nuPAoKe3Eeixw5Ke5QD1pQ" base_Element="_13KfMjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_nvLb0Ke3Eeixw5Ke5QD1pQ" base_Element="_13LGYDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_nvWa8Ke3Eeixw5Ke5QD1pQ" base_Element="_13LGZDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_nvfk4Ke3Eeixw5Ke5QD1pQ" base_Element="_13WFYDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_nvzt8Ke3Eeixw5Ke5QD1pQ" base_Element="_13WFaTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Future xmi:id="_d5BTMKewEeixw5Ke5QD1pQ" base_Element="_6GPSQDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Future xmi:id="_fug1MKewEeixw5Ke5QD1pQ" base_Element="_BJMXoDzGEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sIYUYO38EeqoIpAKV26OqA" base_StructuralFeature="_sIXtUO38EeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_qQSU4O39EeqoIpAKV26OqA" base_Element="_sIXtUO38EeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_qQnsEO39EeqoIpAKV26OqA" base_Element="_sIXtUO38EeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_d5UGTe3_EeqoIpAKV26OqA" base_Class="_d5UGQO3_EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_d5XwoO3_EeqoIpAKV26OqA" base_StructuralFeature="_d5UGRe3_EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_d5Xwoe3_EeqoIpAKV26OqA" base_StructuralFeature="_d5UGSe3_EeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_d5Zl0O3_EeqoIpAKV26OqA" base_Element="_d5UGQO3_EeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_d5cCEO3_EeqoIpAKV26OqA" base_Element="_d5UGRe3_EeqoIpAKV26OqA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_d5cCEe3_EeqoIpAKV26OqA" base_Property="_d5UGRe3_EeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_d5dQMO3_EeqoIpAKV26OqA" base_Element="_d5UGSe3_EeqoIpAKV26OqA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_d5d3QO3_EeqoIpAKV26OqA" base_Property="_d5UGSe3_EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DK-wgu4BEeqoIpAKV26OqA" base_StructuralFeature="_DK-wge4BEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_JBwt8O4SEeqoIpAKV26OqA" base_Element="_DK-wge4BEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_JCE3AO4SEeqoIpAKV26OqA" base_Element="_DK-wge4BEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Reference xmi:id="_fXojwO4SEeqoIpAKV26OqA" base_Element="_d5UGQO3_EeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_Np6IUO4TEeqoIpAKV26OqA" base_Class="_Np5hQO4TEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Np8kkO4TEeqoIpAKV26OqA" base_StructuralFeature="_Np5hQu4TEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Np9LoO4TEeqoIpAKV26OqA" base_StructuralFeature="_Np5hRO4TEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Np9Lou4TEeqoIpAKV26OqA" base_StructuralFeature="_Np5hTO4TEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_Np-ZwO4TEeqoIpAKV26OqA" base_Element="_Np5hQO4TEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_Np_A0O4TEeqoIpAKV26OqA" base_Element="_Np5hQu4TEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_x7zNEO4TEeqoIpAKV26OqA" base_StructuralFeature="_x7ymA-4TEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_LE-Q8O4UEeqoIpAKV26OqA" base_Element="_x7ymA-4TEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_LFToIO4UEeqoIpAKV26OqA" base_Element="_x7ymA-4TEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_h_xYwu4UEeqoIpAKV26OqA" base_StructuralFeature="_h_xYwe4UEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_E1gokO4VEeqoIpAKV26OqA" base_Element="_13gdcDzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Experimental xmi:id="_6t-icO4VEeqoIpAKV26OqA" base_Element="_h_xYwe4UEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_6uSrgO4VEeqoIpAKV26OqA" base_Element="_h_xYwe4UEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_PpprIO4WEeqoIpAKV26OqA" base_Class="_PppEEO4WEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_XCpR8O4WEeqoIpAKV26OqA" base_Element="_PppEEO4WEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_XC8z8O4WEeqoIpAKV26OqA" base_Element="_PppEEO4WEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pIA74e4WEeqoIpAKV26OqA" base_StructuralFeature="_pIA74O4WEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ycjpYO4WEeqoIpAKV26OqA" base_StructuralFeature="_ycjCUO4WEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1s7N8e4WEeqoIpAKV26OqA" base_StructuralFeature="_1s7N8O4WEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WSrYIO4XEeqoIpAKV26OqA" base_StructuralFeature="_WSqxEO4XEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_b3MJkO4XEeqoIpAKV26OqA" base_Element="_WSqxEO4XEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_b3nAUO4XEeqoIpAKV26OqA" base_Element="_WSqxEO4XEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DPf88O4pEeqoIpAKV26OqA" base_StructuralFeature="_DPfV4O4pEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Jx5S8e4pEeqoIpAKV26OqA" base_StructuralFeature="_Jx5S8O4pEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_LOkJAe6cEeqoIpAKV26OqA" base_Class="_LOkJAO6cEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_RR8AsO6cEeqoIpAKV26OqA" base_Element="_LOkJAO6cEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_RSQw0O6cEeqoIpAKV26OqA" base_Element="_LOkJAO6cEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZSSice6cEeqoIpAKV26OqA" base_StructuralFeature="_ZSSicO6cEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ibNOwe6cEeqoIpAKV26OqA" base_StructuralFeature="_ibNOwO6cEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_mHxAEO6cEeqoIpAKV26OqA" base_Element="_ibNOwO6cEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_mIDT8O6cEeqoIpAKV26OqA" base_Element="_ibNOwO6cEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_7IkgYe6cEeqoIpAKV26OqA" base_Class="_7IkgYO6cEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_AgQWwO6dEeqoIpAKV26OqA" base_Element="_7IkgYO6cEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_Agkf0O6dEeqoIpAKV26OqA" base_Element="_7IkgYO6cEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Iwz3se6dEeqoIpAKV26OqA" base_StructuralFeature="_Iwz3sO6dEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UV4dYe6dEeqoIpAKV26OqA" base_StructuralFeature="_UV4dYO6dEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cpstse6dEeqoIpAKV26OqA" base_StructuralFeature="_cpstsO6dEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qK5o4e6dEeqoIpAKV26OqA" base_StructuralFeature="_qK5o4O6dEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="__RbWsO6dEeqoIpAKV26OqA" base_Element="_kEZoSDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="__RwG0O6dEeqoIpAKV26OqA" base_Element="_kEZoSDzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cRPise6jEeqoIpAKV26OqA" base_StructuralFeature="_cRPisO6jEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_jcRmAO6jEeqoIpAKV26OqA" base_Element="_cRPisO6jEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_jclIAO6jEeqoIpAKV26OqA" base_Element="_cRPisO6jEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ltgMUe6kEeqoIpAKV26OqA" base_Class="_ltgMUO6kEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_uQeS8O6kEeqoIpAKV26OqA" base_Element="_ltgMUO6kEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_uQycAO6kEeqoIpAKV26OqA" base_Element="_ltgMUO6kEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BZJ0Ae6lEeqoIpAKV26OqA" base_StructuralFeature="_BZJ0AO6lEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H-BPMe6lEeqoIpAKV26OqA" base_StructuralFeature="_H-BPMO6lEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IQ_1ke6lEeqoIpAKV26OqA" base_StructuralFeature="_IQ_1kO6lEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_b0gRce6lEeqoIpAKV26OqA" base_Class="_b0gRcO6lEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_sEHToO6lEeqoIpAKV26OqA" base_Element="_b0gRcO6lEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_sEcDwO6lEeqoIpAKV26OqA" base_Element="_b0gRcO6lEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_wW_eEu6lEeqoIpAKV26OqA" base_Class="_wW_eEO6lEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_wXChYO6lEeqoIpAKV26OqA" base_Element="_wW_eEO6lEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_wXChYe6lEeqoIpAKV26OqA" base_Element="_wW_eEO6lEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_xneOgO6lEeqoIpAKV26OqA" base_Class="_xndncO6lEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_xngqwO6lEeqoIpAKV26OqA" base_Element="_xndncO6lEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_xnhR0O6lEeqoIpAKV26OqA" base_Element="_xndncO6lEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IySvUe6mEeqoIpAKV26OqA" base_StructuralFeature="_IySvUO6mEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3UMrVO6mEeqoIpAKV26OqA" base_StructuralFeature="_3UMrUO6mEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4O4x9O6mEeqoIpAKV26OqA" base_StructuralFeature="_4O4x8O6mEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_hUm8oe6oEeqoIpAKV26OqA" base_Class="_hUm8oO6oEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sIzfAe6oEeqoIpAKV26OqA" base_StructuralFeature="_sIzfAO6oEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_0Q_uIO6oEeqoIpAKV26OqA" base_Element="_hUm8oO6oEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_0RRa8O6oEeqoIpAKV26OqA" base_Element="_hUm8oO6oEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6RYjQO6oEeqoIpAKV26OqA" base_StructuralFeature="_6RX8MO6oEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_Z122oO6pEeqoIpAKV26OqA" base_Element="_kEZorTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_Z2MN0O6pEeqoIpAKV26OqA" base_Element="_kEZorTzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_45Xr8DzEEeiWMf5FLWfdLA" base_Class="_45XE4DzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_jRenEO6qEeqoIpAKV26OqA" base_Element="_45XE4DzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_jScQYO6qEeqoIpAKV26OqA" base_Element="_45XE4DzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Experimental xmi:id="_pNDiwO6sEeqoIpAKV26OqA" base_Element="_beE2IDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_pOHSsO6sEeqoIpAKV26OqA" base_Element="_beE2IDzFEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Experimental xmi:id="_Ge_y0O6tEeqoIpAKV26OqA" base_Element="_GY8PcDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_Gf3VgO6tEeqoIpAKV26OqA" base_Element="_GY8PcDzFEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JFsS0O6uEeqoIpAKV26OqA" base_StructuralFeature="_JFrrwO6uEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_ukYP8O6wEeqoIpAKV26OqA" base_Element="_GYYOwDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_ulY8kO6wEeqoIpAKV26OqA" base_Element="_GYYOwDzFEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Bhwf8e6xEeqoIpAKV26OqA" base_StructuralFeature="_Bhwf8O6xEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_iGlnoO6yEeqoIpAKV26OqA" base_Element="_GYmRMDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_iHiC0O6yEeqoIpAKV26OqA" base_Element="_GYmRMDzFEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Experimental xmi:id="_-qBy8O6yEeqoIpAKV26OqA" base_Element="_GYs-4DzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_-q-1MO6yEeqoIpAKV26OqA" base_Element="_GYs-4DzFEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Experimental xmi:id="_kAcPwO6zEeqoIpAKV26OqA" base_Element="_kEZowTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_kAw_4O6zEeqoIpAKV26OqA" base_Element="_kEZowTzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Experimental xmi:id="_LxeU4O60EeqoIpAKV26OqA" base_Element="_kEZoxzzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_LxzFAO60EeqoIpAKV26OqA" base_Element="_kEZoxzzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Experimental xmi:id="_TPx5gO60EeqoIpAKV26OqA" base_Element="_kEZozTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_TQH3wO60EeqoIpAKV26OqA" base_Element="_kEZozTzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Reference xmi:id="_EbpE4O62EeqoIpAKV26OqA" base_Element="_Np5hQO4TEeqoIpAKV26OqA" reference="IFA014 2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ilZGsO62EeqoIpAKV26OqA" base_StructuralFeature="_ilYfoO62EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0Vz0VO62EeqoIpAKV26OqA" base_StructuralFeature="_0Vz0UO62EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0p5N8O62EeqoIpAKV26OqA" base_StructuralFeature="_0p4m4O62EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_CHXqQO64EeqoIpAKV26OqA" base_StructuralFeature="_CHXDMO64EeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_Yy_toO64EeqoIpAKV26OqA" base_Element="_SqVGQO64EeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_YzVr4O64EeqoIpAKV26OqA" base_Element="_SqVGQO64EeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_l38Koe64EeqoIpAKV26OqA" base_StructuralFeature="_l38KoO64EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_18U0Qe64EeqoIpAKV26OqA" base_StructuralFeature="_18U0QO64EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_13eBPDzEEeiWMf5FLWfdLA" base_Class="_13eBMDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_lO5YMO65EeqoIpAKV26OqA" base_Element="_13eBMDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_lPNhQO65EeqoIpAKV26OqA" base_Element="_13eBMDzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Experimental xmi:id="_Tz4LcO68EeqoIpAKV26OqA" base_Element="_PoBPAO68EeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_T0OwwO68EeqoIpAKV26OqA" base_Element="_PoBPAO68EeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aqT3we68EeqoIpAKV26OqA" base_StructuralFeature="_aqT3wO68EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fZzFse68EeqoIpAKV26OqA" base_StructuralFeature="_fZzFsO68EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ihdaMe68EeqoIpAKV26OqA" base_StructuralFeature="_ihdaMO68EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nB3qUe68EeqoIpAKV26OqA" base_StructuralFeature="_nB3qUO68EeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tChBEPHQEeqoIpAKV26OqA" base_StructuralFeature="_tCfy8PHQEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_3gHBUPHQEeqoIpAKV26OqA" base_Element="_kEZo-DzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_3gdmoPHQEeqoIpAKV26OqA" base_Element="_kEZo-DzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_AqrTcfHREeqoIpAKV26OqA" base_StructuralFeature="_AqrTcPHREeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GsK70fHREeqoIpAKV26OqA" base_StructuralFeature="_GsK70PHREeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_kxM1sPHREeqoIpAKV26OqA" base_Element="_kEaPVjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_kxiM4PHREeqoIpAKV26OqA" base_Element="_kEaPVjzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:Experimental xmi:id="_XadooPHSEeqoIpAKV26OqA" base_Element="_kEZBoTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_Xay_0PHSEeqoIpAKV26OqA" base_Element="_kEZBoTzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BAA_YfHTEeqoIpAKV26OqA" base_StructuralFeature="_BAA_YPHTEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E3pYQfHTEeqoIpAKV26OqA" base_StructuralFeature="_E3pYQPHTEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J9VfsfHTEeqoIpAKV26OqA" base_StructuralFeature="_J9VfsPHTEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NxUusfHTEeqoIpAKV26OqA" base_StructuralFeature="_NxUusPHTEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Experimental xmi:id="_ibQAEPHTEeqoIpAKV26OqA" base_Element="_dzULoPHTEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_ibmlYPHTEeqoIpAKV26OqA" base_Element="_dzULoPHTEeqoIpAKV26OqA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_s_dlsfHTEeqoIpAKV26OqA" base_StructuralFeature="_s_dlsPHTEeqoIpAKV26OqA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wRPfgfHTEeqoIpAKV26OqA" base_StructuralFeature="_wRPfgPHTEeqoIpAKV26OqA"/>
  <OpenModel_Profile:Reference xmi:id="_Qv_QgPHZEeqoIpAKV26OqA" base_Element="_13WFYDzEEeiWMf5FLWfdLA" reference="IFA014 v2.7.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_1Wb7QzzFEeiWMf5FLWfdLA" base_Class="_1Wb7QDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Future xmi:id="_aRpj4KewEeixw5Ke5QD1pQ" base_Element="_1Wb7QDzFEeiWMf5FLWfdLA"/>
</xmi:XMI>