summaryrefslogtreecommitdiffstats
path: root/aai-core/src/test/resources/bundleconfig-local/etc/oxm/aai_oxm_v2.xml
blob: eba7c4b9103a474d4901163191652814e25dd195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--

    ============LICENSE_START=======================================================
    org.onap.aai
    ================================================================================
    Copyright © 2017 AT&T Intellectual Property. All rights reserved.
    ================================================================================
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    ============LICENSE_END=========================================================

    ECOMP is a trademark and service mark of AT&T Intellectual Property.

-->
<xml-bindings xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm" package-name="inventory.aai.onap.org" xml-mapping-metadata-complete="true">
	<xml-schema element-form-default="QUALIFIED">
		<xml-ns namespace-uri="http://org.openecomp.aai.inventory" />
	</xml-schema>
	<java-types>
		<java-type name="Inventory">
			<xml-root-element name="inventory" />
			<java-attributes>
				<xml-element java-attribute="search" name="search" type="inventory.aai.onap.org.Search" />
				<xml-element java-attribute="actions" name="actions" type="inventory.aai.onap.org.Actions" />
				<xml-element java-attribute="cloudInfrastructure" name="cloud-infrastructure" type="inventory.aai.onap.org.CloudInfrastructure" />
				<xml-element java-attribute="business" name="business" type="inventory.aai.onap.org.Business" />
				<xml-element java-attribute="serviceDesignAndCreation" name="service-design-and-creation" type="inventory.aai.onap.org.ServiceDesignAndCreation" />
				<xml-element java-attribute="network" name="network" type="inventory.aai.onap.org.Network" />
				<xml-element java-attribute="aaiInternal" name="aai-internal" type="inventory.aai.onap.org.AaiInternal" />
			</java-attributes>
		</java-type>

		<java-type name="Search">
			<xml-root-element name="search" />
			<java-attributes>
				<xml-element java-attribute="searchResults" name="search-results" type="inventory.aai.onap.org.SearchResults" />
				<xml-element java-attribute="sdnZoneResponse" name="sdn-zone-response" type="inventory.aai.onap.org.SdnZoneResponse" />
			</java-attributes>
		</java-type>

		<java-type name="SearchResults">
			<xml-root-element name="search-results" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="resultData" name="result-data" type="inventory.aai.onap.org.ResultData" />
			</java-attributes>
		</java-type>

		<java-type name="ResultData">
			<xml-root-element name="result-data" />
			<java-attributes>
				<xml-element java-attribute="resourceType" name="resource-type" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="The specific type of node in the A&amp;AI graph" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="resourceLink" name="resource-link" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="The URL to the specific resource" />
					</xml-properties>
				</xml-element>
			</java-attributes>
		</java-type>
		<java-type name="SdnZoneResponse">
			<xml-root-element name="sdn-zone-response" />
			<java-attributes>
				<xml-element java-attribute="oamNetworks" name="oam-networks" type="inventory.aai.onap.org.OamNetworks" />
				<xml-element container-type="java.util.ArrayList" java-attribute="azAndDvsSwitches" name="az-and-dvs-switches" type="inventory.aai.onap.org.AzAndDvsSwitches" />
			</java-attributes>
		</java-type>

		<java-type name="AzAndDvsSwitches">
			<xml-root-element name="az-and-dvs-switches" />
			<java-attributes>
				<xml-element java-attribute="dvsSwitches" name="dvs-switches" type="inventory.aai.onap.org.DvsSwitches" />
				<xml-element java-attribute="availabilityZone" name="availability-zone" type="inventory.aai.onap.org.AvailabilityZone" />
			</java-attributes>
		</java-type>

		<java-type name="Actions">
			<xml-properties>
				<xml-property name="description" value="Ignore the RESTCONF paths for this. It will be aai/{version}/actions/update only." />
			</xml-properties>
			<xml-root-element name="actions" />
			<java-attributes>
				<xml-element java-attribute="update" name="update" type="inventory.aai.onap.org.Update" />
			</java-attributes>
		</java-type>

		<java-type name="Update">
			<xml-root-element name="update" />
			<java-attributes>
				<xml-element java-attribute="updateNodeType" name="update-node-type" required="true" type="java.lang.String" />
				<xml-element container-type="java.util.ArrayList" java-attribute="action" name="action" type="inventory.aai.onap.org.Action" />
				<xml-element container-type="java.util.ArrayList" java-attribute="updateNodeKey" name="update-node-key" type="inventory.aai.onap.org.UpdateNodeKey" />
			</java-attributes>
		</java-type>

		<java-type name="Action">
			<xml-root-element name="action" />
			<java-attributes>
				<xml-element java-attribute="actionType" name="action-type" type="java.lang.String" />
				<xml-element container-type="java.util.ArrayList" java-attribute="actionData" name="action-data" type="inventory.aai.onap.org.ActionData" />
			</java-attributes>
		</java-type>

		<java-type name="ActionData">
			<xml-root-element name="action-data" />
			<java-attributes>
				<xml-element java-attribute="propertyName" name="property-name" type="java.lang.String" />
				<xml-element java-attribute="propertyValue" name="property-value" type="java.lang.String" />
			</java-attributes>
		</java-type>

		<java-type name="UpdateNodeKey">
			<xml-root-element name="update-node-key" />
			<java-attributes>
				<xml-element java-attribute="keyName" name="key-name" type="java.lang.String" />
				<xml-element java-attribute="keyValue" name="key-value" type="java.lang.String" />
			</java-attributes>
		</java-type>

		<java-type name="CloudInfrastructure">
			<xml-root-element name="cloud-infrastructure" />
			<java-attributes>
				<xml-element java-attribute="complexes" name="complexes" type="inventory.aai.onap.org.Complexes" />
				<xml-element java-attribute="tenants" name="tenants" type="inventory.aai.onap.org.Tenants" />
				<xml-element java-attribute="flavors" name="flavors" type="inventory.aai.onap.org.Flavors" />
				<xml-element java-attribute="images" name="images" type="inventory.aai.onap.org.Images" />
				<xml-element java-attribute="dvsSwitches" name="dvs-switches" type="inventory.aai.onap.org.DvsSwitches" />
				<xml-element java-attribute="pservers" name="pservers" type="inventory.aai.onap.org.Pservers" />
				<xml-element java-attribute="oamNetworks" name="oam-networks" type="inventory.aai.onap.org.OamNetworks" />
				<xml-element java-attribute="availabilityZones" name="availability-zones" type="inventory.aai.onap.org.AvailabilityZones" />
				<xml-element java-attribute="virtualDataCenters" name="virtual-data-centers" type="inventory.aai.onap.org.VirtualDataCenters" />
			</java-attributes>
		</java-type>

		<java-type name="Complexes">
			<xml-properties>
				<xml-property name="description" value="Complex housing an LCP instance. In 1504, this data comes from RCT in a file processed on a schedule defined in crontab. A&amp;AI has code to parse the file and take action on the graph using our REST APIs." />
			</xml-properties>
			<xml-root-element name="complexes" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="complex" name="complex" type="inventory.aai.onap.org.Complex" />
			</java-attributes>
		</java-type>

		<java-type name="Complex">
			<xml-root-element name="complex" />
			<java-attributes>
				<xml-element java-attribute="physicalLocationId" name="physical-location-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Unique identifier for physical location, e.g., CLLI" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="dataCenterCode" name="data-center-code" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Data center code which can be an alternate way to identify a complex" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="complexName" name="complex-name" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Gamma complex name for LCP instance." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="physicalLocationType" name="physical-location-type" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Type, e.g., central office, data center." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="street1" name="street1" required="true" type="java.lang.String" />
				<xml-element java-attribute="street2" name="street2" type="java.lang.String" />
				<xml-element java-attribute="city" name="city" required="true" type="java.lang.String" />
				<xml-element java-attribute="state" name="state" required="true" type="java.lang.String" />
				<xml-element java-attribute="postalCode" name="postal-code" required="true" type="java.lang.String" />
				<xml-element java-attribute="country" name="country" required="true" type="java.lang.String" />
				<xml-element java-attribute="region" name="region" required="true" type="java.lang.String" />
				<xml-element java-attribute="latitude" name="latitude" type="java.lang.String" />
				<xml-element java-attribute="longitude" name="longitude" type="java.lang.String" />
				<xml-element java-attribute="elevation" name="elevation" type="java.lang.String" />
				<xml-element java-attribute="lata" name="lata" type="java.lang.String" />
				<xml-element java-attribute="ctagPools" name="ctag-pools" type="inventory.aai.onap.org.CtagPools" />
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="indexedProps" value="data-center-code,complex-name,physical-location-id" />
				<xml-property name="uniqueProps" value="physical-location-id" />
				<xml-property name="container" value="complexes" />
				<xml-property name="namespace" value="cloud-infrastructure" />
			</xml-properties>
		</java-type>

		<java-type name="RelationshipList">
			<xml-root-element name="relationship-list" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="relationship" name="relationship" type="inventory.aai.onap.org.Relationship" />
			</java-attributes>
		</java-type>

		<java-type name="Relationship">
			<xml-root-element name="relationship" />
			<java-attributes>
				<xml-element java-attribute="relatedTo" name="related-to" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="A keyword provided by A&amp;AI to indicate type of node." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relatedLink" name="related-link" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="URL to the object in A&amp;AI." />
					</xml-properties>
				</xml-element>
				<xml-element container-type="java.util.ArrayList" java-attribute="relationshipData" name="relationship-data" type="inventory.aai.onap.org.RelationshipData" />
			</java-attributes>
		</java-type>

		<java-type name="RelationshipData">
			<xml-root-element name="relationship-data" />
			<java-attributes>
				<xml-element java-attribute="relationshipKey" name="relationship-key" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="A keyword provided by A&amp;AI to indicate an attribute." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipValue" name="relationship-value" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Value of the attribute." />
					</xml-properties>
				</xml-element>
			</java-attributes>
		</java-type>

		<java-type name="CtagPools">
			<xml-root-element name="ctag-pools" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="ctagPool" name="ctag-pool" type="inventory.aai.onap.org.CtagPool" />
			</java-attributes>
		</java-type>

		<java-type name="CtagPool">
			<xml-root-element name="ctag-pool" />
			<java-attributes>
				<xml-element java-attribute="targetPe" name="target-pe" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="The Target provider edge router" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="availabilityZoneName" name="availability-zone-name" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Name of the availability zone" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ctagPoolPurpose" name="ctag-pool-purpose" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ctagValues" name="ctag-values" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Comma separated list of ctags" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="indexedProps" value="availability-zone-name" />
				<xml-property name="dependentOn" value="complex" />
				<xml-property name="container" value="ctag-pools" />
			</xml-properties>
		</java-type>

		<java-type name="Tenants">
			<xml-properties>
				<xml-property name="description" value="OpenStack tenant. In 1504, RO will PUT the tenant to A&amp;AI. Relationship list is used to link to service-subscription." />
			</xml-properties>
			<xml-root-element name="tenants" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="tenant" name="tenant" type="inventory.aai.onap.org.Tenant" />
			</java-attributes>
		</java-type>

		<java-type name="Tenant">
			<xml-root-element name="tenant" />
			<java-attributes>
				<xml-element java-attribute="tenantId" name="tenant-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Unique id relative to the platform, assuming unique across AT&amp;T for now" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="tenantName" name="tenant-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Readable name of tenant" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vservers" name="vservers" type="inventory.aai.onap.org.Vservers" />
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Relationship-list must include related to of service-subscription and keys for global-customer-id and service-type." />
				<xml-property name="nameProps" value="tenant-name" />
				<xml-property name="indexedProps" value="tenant-id" />
				<xml-property name="uniqueProps" value="tenant-id" />
				<xml-property name="container" value="tenants" />
				<xml-property name="namespace" value="cloud-infrastructure" />
			</xml-properties>
		</java-type>

		<java-type name="Vservers">
			<xml-properties>
				<xml-property name="description" value="Virtual Server, with its ipaddresses and block storage volumes. In 1504, this REST interface is unused. Instead, the hand coded vserver REST API from Trinity was modified to take the relationship list structure. In 1507, we hope to negotiate with RO to change to use our Yang-driven vserver, image, flavor, etc. Relationship list is used to link to VNF (vce and generic-vnf, etc.)." />
			</xml-properties>
			<xml-root-element name="vservers" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="vserver" name="vserver" type="inventory.aai.onap.org.Vserver" />
			</java-attributes>
		</java-type>

		<java-type name="Vserver">
			<xml-root-element name="vserver" />
			<java-attributes>
				<xml-element java-attribute="vserverId" name="vserver-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Unique identifier for this vserver relative to its tenant" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vserverName" name="vserver-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Name of vserver" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vserverName2" name="vserver-name2" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Alternative name of vserver" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="provStatus" name="prov-status" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Trigger for operational monitoring of this resource by Service Assurance systems." />
						<xml-property name="readOnly" value="legacy-v2" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vserverSelflink" name="vserver-selflink" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="URL that points to source of truth for this resource" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="volumes" name="volumes" type="inventory.aai.onap.org.Volumes" />
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
				<xml-element java-attribute="lInterfaces" name="l-interfaces" type="inventory.aai.onap.org.LInterfaces" />
			</java-attributes>
			<xml-properties>
				<xml-property name="nameProps" value="vserver-name" />
				<xml-property name="indexedProps" value="vserver-name,vserver-id,vserver-name2" />
				<xml-property name="uniqueProps" value="vserver-id" />
				<xml-property name="dependentOn" value="tenant" />
				<xml-property name="container" value="vservers" />
			</xml-properties>
		</java-type>

		<java-type name="LInterfaces">
			<xml-root-element name="l-interfaces" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="lInterface" name="l-interface" type="inventory.aai.onap.org.LInterface" />
			</java-attributes>
		</java-type>

		<java-type name="LInterface">
			<xml-root-element name="l-interface" />
			<java-attributes>
				<xml-element java-attribute="interfaceName" name="interface-name" required="true" type="java.lang.String" xml-key="true" />
				<xml-element java-attribute="interfaceId" name="interface-id" type="java.lang.String" />
				<xml-element java-attribute="interfaceRole" name="interface-role" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="E.g., CUSTOMER, UPLINK, etc." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="v6WanLinkIp" name="v6-wan-link-ip" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Questionably placed - v6 ip addr of this interface (is in vr-lan-interface from Mary B." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vlans" name="vlans" type="inventory.aai.onap.org.Vlans" />
				<xml-element java-attribute="networkName" name="network-name" type="java.lang.String" />
				<xml-element java-attribute="selflink" name="selflink" type="java.lang.String" />
				
				<xml-element container-type="java.util.ArrayList" java-attribute="l3InterfaceIpv4AddressList" name="l3-interface-ipv4-address-list" type="inventory.aai.onap.org.L3InterfaceIpv4AddressList" />
				<xml-element container-type="java.util.ArrayList" java-attribute="l3InterfaceIpv6AddressList" name="l3-interface-ipv6-address-list" type="inventory.aai.onap.org.L3InterfaceIpv6AddressList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="dependentOn" value="generic-vnf,newvce,p-interface,vserver" />
				<xml-property name="container" value="l-interfaces" />
			</xml-properties>
		</java-type>

		<java-type name="Vlans">
			<xml-root-element name="vlans" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="vlan" name="vlan" type="inventory.aai.onap.org.Vlan" />
			</java-attributes>
		</java-type>

		<java-type name="Vlan">
			<xml-root-element name="vlan" />
			<java-attributes>
				<xml-element java-attribute="vlanInterface" name="vlan-interface" required="true" type="java.lang.String" xml-key="true" />
				<xml-element java-attribute="vlanIdInner" name="vlan-id-inner" type="java.lang.Long" />
				<xml-element java-attribute="vlanIdOuter" name="vlan-id-outer" type="java.lang.Long" />
				<xml-element container-type="java.util.ArrayList" java-attribute="l3InterfaceIpv4AddressList" name="l3-interface-ipv4-address-list" type="inventory.aai.onap.org.L3InterfaceIpv4AddressList" />
				<xml-element container-type="java.util.ArrayList" java-attribute="l3InterfaceIpv6AddressList" name="l3-interface-ipv6-address-list" type="inventory.aai.onap.org.L3InterfaceIpv6AddressList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="indexedProps" value="vlan-interface" />
				<xml-property name="dependentOn" value="l-interface" />
				<xml-property name="container" value="vlans" />
			</xml-properties>
		</java-type>

		<java-type name="L3InterfaceIpv4AddressList">
			<xml-root-element name="l3-interface-ipv4-address-list" />
			<java-attributes>
				<xml-element java-attribute="l3InterfaceIpv4Address" name="l3-interface-ipv4-address" required="true" type="java.lang.String" xml-key="true" />
				<xml-element java-attribute="l3InterfaceIpv4PrefixLength" name="l3-interface-ipv4-prefix-length" type="java.lang.Long" />
				<xml-element java-attribute="isFloating" name="is-floating" type="java.lang.Boolean">
					<xml-properties>
						<xml-property name="description" value="Indicator of fixed or floating address" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="indexedProps" value="l3-interface-ipv4-address" />
				<xml-property name="dependentOn" value="vlan" />
			</xml-properties>
		</java-type>

		<java-type name="L3InterfaceIpv6AddressList">
			<xml-root-element name="l3-interface-ipv6-address-list" />
			<java-attributes>
				<xml-element java-attribute="l3InterfaceIpv6Address" name="l3-interface-ipv6-address" required="true" type="java.lang.String" xml-key="true" />
				<xml-element java-attribute="l3InterfaceIpv6PrefixLength" name="l3-interface-ipv6-prefix-length" type="java.lang.Long" />
				<xml-element java-attribute="isFloating" name="is-floating" type="java.lang.Boolean">
					<xml-properties>
						<xml-property name="description" value="Indicator of fixed or floating address" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="indexedProps" value="l3-interface-ipv6-address" />
				<xml-property name="dependentOn" value="vlan" />
			</xml-properties>
		</java-type>

		<java-type name="Volumes">
			<xml-properties>
				<xml-property name="description" value="Block storage volume. In 1504, RO is expected to send this to A&amp;AI." />
			</xml-properties>
			<xml-root-element name="volumes" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="volume" name="volume" type="inventory.aai.onap.org.Volume" />
			</java-attributes>
		</java-type>

		<java-type name="Volume">
			<xml-root-element name="volume" />
			<java-attributes>
				<xml-element java-attribute="volumeId" name="volume-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Unique ID of block storage volume relative to the vserver." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="volumeSelflink" name="volume-selflink" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="URL to block storage volume in source of truth" />
					</xml-properties>
				</xml-element>
			</java-attributes>
			<xml-properties>
				<xml-property name="indexedProps" value="volume-id" />
				<xml-property name="dependentOn" value="vserver" />
				<xml-property name="container" value="volumes" />
			</xml-properties>
		</java-type>

		<java-type name="Flavors">
			<xml-properties>
				<xml-property name="description" value="Openstack flavor. In 1504, this REST interface is unused.   The data is populated by RO through    the hand-coded vserver interface rather than through its own REST API.    Expect this to change when we can negotiate with RO to PUT this data or    we change our code to trigger a dispatcher job to go get flavor if it    is missing when RO PUTs a vserver." />
			</xml-properties>
			<xml-root-element name="flavors" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="flavor" name="flavor" type="inventory.aai.onap.org.Flavor" />
			</java-attributes>
		</java-type>

		<java-type name="Flavor">
			<xml-root-element name="flavor" />
			<java-attributes>
				<xml-element java-attribute="flavorId" name="flavor-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Flavor id, expected to be unique across A&amp;AI." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="flavorName" name="flavor-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Flavor name" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="flavorVcpus" name="flavor-vcpus" type="java.lang.Integer">
					<xml-properties>
						<xml-property name="description" value="Number of CPUs" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="flavorRam" name="flavor-ram" type="java.lang.Integer">
					<xml-properties>
						<xml-property name="description" value="Amount of memory" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="flavorDisk" name="flavor-disk" type="java.lang.Integer">
					<xml-properties>
						<xml-property name="description" value="Disk space" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="flavorEphemeral" name="flavor-ephemeral" type="java.lang.Integer">
					<xml-properties>
						<xml-property name="description" value="Amount of ephemeral disk space" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="flavorSwap" name="flavor-swap" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="amount of swap space allocation" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="flavorIsPublic" name="flavor-is-public" type="java.lang.Boolean">
					<xml-properties>
						<xml-property name="description" value="whether flavor is available to all users or private to the tenant it was created in." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="flavorSelflink" name="flavor-selflink" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Link provided by source of truth to get more details." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="flavorDisabled" name="flavor-disabled" type="java.lang.Boolean">
					<xml-properties>
						<xml-property name="description" value="Boolean as to whether this flavor is no longer enabled" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="nameProps" value="flavor-name" />
				<xml-property name="indexedProps" value="flavor-name,flavor-id" />
				<xml-property name="uniqueProps" value="flavor-id" />
				<xml-property name="container" value="flavors" />
				<xml-property name="namespace" value="cloud-infrastructure" />
			</xml-properties>
		</java-type>

		<java-type name="Images">
			<xml-properties>
				<xml-property name="description" value="Openstack image. In 1504, this REST interface is unused. The image data is populated by RO through the hand-coded vserver interface rather than through its own REST API. Expect this to change when we can negotiate with RO to PUT this data or we change our code to trigger a dispatcher job to go get image if it is missing when RO PUTs a vserver." />
			</xml-properties>
			<xml-root-element name="images" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="image" name="image" type="inventory.aai.onap.org.Image" />
			</java-attributes>
		</java-type>

		<java-type name="Image">
			<xml-root-element name="image" />
			<java-attributes>
				<xml-element java-attribute="imageId" name="image-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Image id, expected to be unique across A&amp;AI" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="imageName" name="image-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Image name" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="imageArchitecture" name="image-architecture" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Operating system architecture." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="imageOsDistro" name="image-os-distro" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="The common name of the operating system distribution in lowercase" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="imageOsVersion" name="image-os-version" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="The operating system version as specified by the distributor." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="application" name="application" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="The application that the image instantiates." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="applicationVendor" name="application-vendor" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="The vendor of the application." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="applicationVersion" name="application-version" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="The version of the application." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="imageSelflink" name="image-selflink" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Link provided by source of truth to get more details." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Metadata must include application, application-vendor, and application-version" />
				<xml-property name="nameProps" value="image-name" />
				<xml-property name="indexedProps" value="image-name,image-id" />
				<xml-property name="uniqueProps" value="image-id" />
				<xml-property name="container" value="images" />
				<xml-property name="namespace" value="cloud-infrastructure" />
			</xml-properties>
		</java-type>

		<java-type name="DvsSwitches">
			<xml-properties>
				<xml-property name="description" value="Digital Virtual Switch/Virtual Digital Switch container for switch name and vcenter URL, used by SDN-C to configure VCEs.  In 1504, A&amp;AI needs to receive this data from the PO deployment team and administer it using the provisioningTool.sh into A&amp;AI. Relationship list is used to link to availability-zone." />
			</xml-properties>
			<xml-root-element name="dvs-switches" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="dvsSwitch" name="dvs-switch" type="inventory.aai.onap.org.DvsSwitch" />
			</java-attributes>
		</java-type>

		<java-type name="DvsSwitch">
			<xml-root-element name="dvs-switch" />
			<java-attributes>
				<xml-element java-attribute="switchName" name="switch-name" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="DVS switch name" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vcenterUrl" name="vcenter-url" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="URL used to reach the vcenter" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="indexedProps" value="vcenter-url,switch-name" />
				<xml-property name="container" value="dvs-switches" />
				<xml-property name="namespace" value="cloud-infrastructure" />
			</xml-properties>
		</java-type>

		<java-type name="Pservers">
			<xml-properties>
				<xml-property name="description" value="Compute node. In 1504, this data comes from RCT in a file processed on a schedule defined in crontab. A&amp;AI has code to parse the file and take action on the graph using our REST APIs. Relationship-list is used to link to complex." />
			</xml-properties>
			<xml-root-element name="pservers" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="pserver" name="pserver" type="inventory.aai.onap.org.Pserver" />
			</java-attributes>
		</java-type>

		<java-type name="Pserver">
			<xml-root-element name="pserver" />
			<java-attributes>
				<xml-element java-attribute="hostname" name="hostname" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Value from executing hostname on the compute node." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ptniiEquipName" name="ptnii-equip-name" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="PTNII name" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="numberOfCpus" name="number-of-cpus" type="java.lang.Integer">
					<xml-properties>
						<xml-property name="description" value="Number of cpus" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="diskInGigabytes" name="disk-in-gigabytes" type="java.lang.Integer">
					<xml-properties>
						<xml-property name="description" value="Disk size, in GBs" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ramInMegabytes" name="ram-in-megabytes" type="java.lang.Integer">
					<xml-properties>
						<xml-property name="description" value="RAM size, in MBs" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="equipType" name="equip-type" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Equipment type.  Source of truth should define valid values." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="equipVendor" name="equip-vendor" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Equipment vendor.  Source of truth should define valid values." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="equipModel" name="equip-model" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Equipment model.  Source of truth should define valid values." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="fqdn" name="fqdn" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Fully-qualified domain name" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="pserverSelflink" name="pserver-selflink" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Link provided by source of truth to get more details." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipv4OamAddress" name="ipv4-oam-address" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Used to configure device, also used for troubleshooting and is IP used for traps generated by device." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
				<xml-element java-attribute="pInterfaces" name="p-interfaces" type="inventory.aai.onap.org.PInterfaces" />
				<xml-element java-attribute="lagInterfaces" name="lag-interfaces" type="inventory.aai.onap.org.LagInterfaces" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Relationship list must contain related-to of complex with key data of physical-location-id" />
				<xml-property name="indexedProps" value="hostname" />
				<xml-property name="container" value="pservers" />
				<xml-property name="namespace" value="cloud-infrastructure" />
			</xml-properties>
		</java-type>

		<java-type name="PInterfaces">
			<xml-root-element name="p-interfaces" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="pInterface" name="p-interface" type="inventory.aai.onap.org.PInterface" />
			</java-attributes>
		</java-type>

		<java-type name="PInterface">
			<xml-root-element name="p-interface" />
			<java-attributes>
				<xml-element java-attribute="interfaceName" name="interface-name" required="true" type="java.lang.String" xml-key="true" />
				<xml-element java-attribute="speedValue" name="speed-value" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Captures the numeric part of the speed" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="speedUnits" name="speed-units" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Captures the units corresponding to the speed" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="lInterfaces" name="l-interfaces" type="inventory.aai.onap.org.LInterfaces" />
			</java-attributes>
			<xml-properties>
				<xml-property name="dependentOn" value="vpls-pe,pserver" />
				<xml-property name="container" value="p-interfaces" />
			</xml-properties>
		</java-type>

		<java-type name="LagInterfaces">
			<xml-root-element name="lag-interfaces" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="lagInterface" name="lag-interface" type="inventory.aai.onap.org.LagInterface" />
			</java-attributes>
		</java-type>

		<java-type name="LagInterface">
			<xml-root-element name="lag-interface" />
			<java-attributes>
				<xml-element java-attribute="interfaceName" name="interface-name" required="true" type="java.lang.String" xml-key="true" />
			</java-attributes>
			<xml-properties>
				<xml-property name="dependentOn" value="generic-vnf,pserver,vpls-pe" />
				<xml-property name="container" value="lag-interfaces" />
			</xml-properties>
		</java-type>

		<java-type name="OamNetworks">
			<xml-properties>
				<xml-property name="description" value="Defines the OAM network. In 1504, A&amp;AI expects RO to put all attributes but the ones related to ipv4-oam-gateway-address and prefix. Those need to be hand administered by A&amp;AI through the provisioningTool.sh. Relationship list is used to link to service-capability and complex." />
			</xml-properties>
			<xml-root-element name="oam-networks" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="oamNetwork" name="oam-network" type="inventory.aai.onap.org.OamNetwork" />
			</java-attributes>
		</java-type>

		<java-type name="OamNetwork">
			<xml-root-element name="oam-network" />
			<java-attributes>
				<xml-element java-attribute="networkUuid" name="network-uuid" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="UUID of the network. Unique across A&amp;AI." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="networkName" name="network-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Name of the network." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="cvlanTag" name="cvlan-tag" required="true" type="java.lang.Long">
					<xml-properties>
						<xml-property name="description" value="cvlan-id" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipv4OamGatewayAddress" name="ipv4-oam-gateway-address" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Used for VNF firewall rule so customer cannot send customer traffic over this oam network" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipv4OamGatewayAddressPrefixLength" name="ipv4-oam-gateway-address-prefix-length" type="java.lang.Integer">
					<xml-properties>
						<xml-property name="description" value="Used for VNF firewall rule so customer cannot send customer traffic over this oam network" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Relationship list must contain related-to of service-capability with key data service-type and vnf-type                            and related-to of complex with key data of physical-location-id" />
				<xml-property name="nameProps" value="network-name" />
				<xml-property name="indexedProps" value="network-uuid" />
				<xml-property name="container" value="oam-networks" />
				<xml-property name="namespace" value="cloud-infrastructure" />
			</xml-properties>
		</java-type>

		<java-type name="AvailabilityZones">
			<xml-properties>
				<xml-property name="description" value="Availability zones group physical servers.  In 1504, A&amp;AI expects to receive all attributes from RO through REST. Relationship list is used to link to service-capability and complex." />
			</xml-properties>
			<xml-root-element name="availability-zones" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="availabilityZone" name="availability-zone" type="inventory.aai.onap.org.AvailabilityZone" />
			</java-attributes>
		</java-type>

		<java-type name="AvailabilityZone">
			<xml-root-element name="availability-zone" />
			<java-attributes>
				<xml-element java-attribute="availabilityZoneName" name="availability-zone-name" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Name of the availability zone.  Unique across A&amp;AI for all services." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="hypervisorType" name="hypervisor-type" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Type of hypervisor.  Source of truth should define valid values." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="operationalState" name="operational-state" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="State that indicates whether the availability zone should be used, etc.  Source of truth should define valid values." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Relationship list must contain related-to of service-capability with key data service-type and vnf-type                            and related-to of complex with key data of physical-location-id" />
				<xml-property name="indexedProps" value="availability-zone-name" />
				<xml-property name="container" value="availability-zones" />
				<xml-property name="namespace" value="cloud-infrastructure" />
			</xml-properties>
		</java-type>

		<java-type name="VirtualDataCenters">
			<xml-properties>
				<xml-property name="description" value="Virtual organization of cloud infrastructure elements in a data center context" />
			</xml-properties>
			<xml-root-element name="virtual-data-centers" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="virtualDataCenter" name="virtual-data-center" type="inventory.aai.onap.org.VirtualDataCenter" />
			</java-attributes>
		</java-type>

		<java-type name="VirtualDataCenter">
			<xml-root-element name="virtual-data-center" />
			<java-attributes>
				<xml-element java-attribute="vdcId" name="vdc-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Unique ID of the vdc" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vdcName" name="vdc-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Name of the virtual data center" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Virtual organization of cloud infrastructure elements in a data center context" />
				<xml-property name="nameProps" value="vdc-name" />
				<xml-property name="indexedProps" value="vdc-id" />
				<xml-property name="container" value="virtual-data-centers" />
				<xml-property name="namespace" value="cloud-infrastructure" />
			</xml-properties>
		</java-type>

		<java-type name="Business">
			<xml-root-element name="business" />
			<java-attributes>
				<xml-element java-attribute="customers" name="customers" type="inventory.aai.onap.org.Customers" />
			</java-attributes>
		</java-type>

		<java-type name="Customers">
			<xml-root-element name="customers" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="customer" name="customer" type="inventory.aai.onap.org.Customer" />
			</java-attributes>
		</java-type>

		<java-type name="Customer">
			<xml-root-element name="customer" />
			<java-attributes>
				<xml-element java-attribute="globalCustomerId" name="global-customer-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Global customer id used across ECOMP to uniquely identify customer." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="subscriberName" name="subscriber-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Subscriber name, an alternate way to retrieve a customer." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="serviceSubscriptions" name="service-subscriptions" type="inventory.aai.onap.org.ServiceSubscriptions" />
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="nameProps" value="subscriber-name" />
				<xml-property name="indexedProps" value="subscriber-name,global-customer-id" />
				<xml-property name="uniqueProps" value="global-customer-id" />
				<xml-property name="container" value="customers" />
				<xml-property name="namespace" value="business" />
			</xml-properties>
		</java-type>

		<java-type name="ServiceSubscriptions">
			<xml-root-element name="service-subscriptions" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="serviceSubscription" name="service-subscription" type="inventory.aai.onap.org.ServiceSubscription" />
			</java-attributes>
		</java-type>

		<java-type name="ServiceSubscription">
			<xml-root-element name="service-subscription" />
			<java-attributes>
				<xml-element java-attribute="serviceType" name="service-type" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Value defined by orchestration to identify this service across ECOMP." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="serviceInstances" name="service-instances" type="inventory.aai.onap.org.ServiceInstances">
					<xml-properties>
						<xml-property name="description" value="Relationship-list used to link to cvlantag and vce." />
					</xml-properties>
				</xml-element>
			</java-attributes>
			<xml-properties>
				<xml-property name="indexedProps" value="service-type" />
				<xml-property name="dependentOn" value="customer" />
				<xml-property name="container" value="service-subscriptions" />
			</xml-properties>
		</java-type>

		<java-type name="ServiceInstances">
			<xml-root-element name="service-instances" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="serviceInstance" name="service-instance" type="inventory.aai.onap.org.ServiceInstance" />
			</java-attributes>
		</java-type>

		<java-type name="ServiceInstance">
			<xml-root-element name="service-instance" />
			<java-attributes>
				<xml-element java-attribute="serviceInstanceId" name="service-instance-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Corresponds to a customer endpoint for the parent service-subscription." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="indexedProps" value="service-instance-id" />
				<xml-property name="uniqueProps" value="service-instance-id" />
				<xml-property name="dependentOn" value="service-subscription" />
				<xml-property name="container" value="service-instances" />
			</xml-properties>
		</java-type>

		<java-type name="ServiceDesignAndCreation">
			<xml-root-element name="service-design-and-creation" />
			<java-attributes>
				<xml-element java-attribute="serviceCapabilities" name="service-capabilities" type="inventory.aai.onap.org.ServiceCapabilities" />
			</java-attributes>
		</java-type>

		<java-type name="ServiceCapabilities">
			<xml-root-element name="service-capabilities" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="serviceCapability" name="service-capability" type="inventory.aai.onap.org.ServiceCapability" />
			</java-attributes>
		</java-type>

		<java-type name="ServiceCapability">
			<xml-root-element name="service-capability" />
			<java-attributes>
				<xml-element java-attribute="serviceType" name="service-type" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="This gets defined by others to provide a unique ID for the service, we accept what is sent." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vnfType" name="vnf-type" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="This gets defined by others to provide a unique ID for the VNF type, we accept what is sent." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="indexedProps" value="service-type" />
				<xml-property name="container" value="service-capabilities" />
				<xml-property name="namespace" value="service-design-and-creation" />
			</xml-properties>
		</java-type>

		<java-type name="Network">
			<xml-root-element name="network" />
			<java-attributes>
				<xml-element java-attribute="logicalLinks" name="logical-links" type="inventory.aai.onap.org.LogicalLinks" />
				<xml-element java-attribute="vces" name="vces" type="inventory.aai.onap.org.Vces" />
				<xml-element java-attribute="l3Networks" name="l3-networks" type="inventory.aai.onap.org.L3Networks" />
				<xml-element java-attribute="genericVnfs" name="generic-vnfs" type="inventory.aai.onap.org.GenericVnfs" />
				<xml-element java-attribute="lagLinks" name="lag-links" type="inventory.aai.onap.org.LagLinks" />
				<xml-element java-attribute="newvces" name="newvces" type="inventory.aai.onap.org.Newvces" />
				<xml-element java-attribute="vplsPes" name="vpls-pes" type="inventory.aai.onap.org.VplsPes" />
				<xml-element java-attribute="physicalLinks" name="physical-links" type="inventory.aai.onap.org.PhysicalLinks" />
			</java-attributes>
		</java-type>

		<java-type name="LogicalLinks">
			<xml-root-element name="logical-links" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="logicalLink" name="logical-link" type="inventory.aai.onap.org.LogicalLink" />
			</java-attributes>
		</java-type>

		<java-type name="LogicalLink">
			<xml-root-element name="logical-link" />
			<java-attributes>
				<xml-element java-attribute="linkName" name="link-name" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="e.g., evc-name, or vnf-nameA_interface-nameA_vnf-nameZ_interface-nameZ" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="linkType" name="link-type" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Type of logical link, e.g., evc" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="speedValue" name="speed-value" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Captures the numeric part of the speed" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="speedUnits" name="speed-units" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Captures the units corresponding to the speed" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipVersion" name="ip-version" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="v4, v6, or ds for dual stack (should be att-ip-version)" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="routingProtocol" name="routing-protocol" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="For example, static or BGP" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Logical links can connect l-interfaces" />
				<xml-property name="indexedProps" value="link-name" />
				<xml-property name="container" value="logical-links" />
				<xml-property name="namespace" value="network" />
			</xml-properties>
		</java-type>

		<java-type name="Vces">
			<xml-properties>
				<xml-property name="description" value="The 1504 global definition of a vce as from MSO/SDN-C. In 1504, SDN-C will PUT this data and MSO will update it. In addition, A&amp;AI will populate interface-name, v6-vce-wan-address, and ipv4-oam-address based on a RESTCONF call? In 1507, we hope to move to the newvce object, which may need a few more attributes. We need a discussion with MSO about orchestration vs. inventory. " />
			</xml-properties>
			<xml-root-element name="vces" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="vce" name="vce" type="inventory.aai.onap.org.Vce" />
			</java-attributes>
		</java-type>

		<java-type name="Vce">
			<xml-root-element name="vce" />
			<java-attributes>
				<xml-element java-attribute="vnfId" name="vnf-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Unique id of VNF.  This is unique across the graph." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vnfName" name="vnf-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Name of VNF." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vnfName2" name="vnf-name2" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Alternate name of VNF." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vnfType" name="vnf-type" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Type of VNF.  Source of truth should define and socialize values.                                  Becomes part of the key to service capability" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="provStatus" name="prov-status" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Trigger for operational monitoring of this resource by Service Assurance systems." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="operationalState" name="operational-state" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Indicator for whether the resource is considered operational" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="licenseKey" name="license-key" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="License key" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="equipmentRole" name="equipment-role" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Client should send valid enumerated value" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="orchestrationStatus" name="orchestration-status" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Orchestration status of this VNF, used by MSO." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="heatStackId" name="heat-stack-id" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Heat stack id corresponding to this instance, managed by MSO" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="msoCatalogKey" name="mso-catalog-key" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Corresponds to the SDN-C catalog id used to configure this VCE" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vpeId" name="vpe-id" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Unique ID of VPE connected to this VCE." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="interfaceName" name="interface-name" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="e.g., Vce-0/0.0.57" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="v6VceWanAddress" name="v6-vce-wan-address" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Valid v6 IP address for the WAN Link on this router.  Implied length of /64." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipv4OamAddress" name="ipv4-oam-address" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Address tail-f uses to configure vce, also used for troubleshooting and is IP used for traps generated by VCE." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="portGroups" name="port-groups" type="inventory.aai.onap.org.PortGroups" />
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="nameProps" value="vnf-name" />
				<xml-property name="indexedProps" value="vnf-name2,vnf-name,heat-stack-id,vnf-id,vpe-id" />
				<xml-property name="uniqueProps" value="vnf-id" />
				<xml-property name="container" value="vces" />
				<xml-property name="namespace" value="network" />
				<xml-property name="extends" value="vnf" />
			</xml-properties>
		</java-type>

		<java-type name="PortGroups">
			<xml-root-element name="port-groups" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="portGroup" name="port-group" type="inventory.aai.onap.org.PortGroup" />
			</java-attributes>
		</java-type>

		<java-type name="PortGroup">
			<xml-root-element name="port-group" />
			<java-attributes>
				<xml-element java-attribute="interfaceId" name="interface-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Unique ID of the interface" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="neutronNetworkId" name="neutron-network-id" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Neutron network id of this Interface" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="neutronNetworkName" name="neutron-network-name" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Neutron network name of this Interface" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="interfaceRole" name="interface-role" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Role assigned to this Interface, should use values as defined in ECOMP Yang models." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="portGroupId" name="port-group-id" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Unique ID for port group in vmware" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="portGroupName" name="port-group-name" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Likely to duplicate value of neutron network name" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="switchName" name="switch-name" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="DVS or standard switch name (should be non-null for port groups associated with DVS)" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="orchestrationStatus" name="orchestration-status" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Orchestration status of this VNF, used by MSO." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="heatStackId" name="heat-stack-id" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Heat stack id corresponding to this instance, managed by MSO" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="msoCatalogKey" name="mso-catalog-key" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Corresponds to the SDN-C catalog id used to configure this VCE" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="cvlanTags" name="cvlan-tags" type="inventory.aai.onap.org.CvlanTags" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Used to capture the network interfaces of this VCE" />
				<xml-property name="nameProps" value="port-group-name" />
				<xml-property name="indexedProps" value="heat-stack-id,port-group-id,interface-id,switch-name" />
				<xml-property name="dependentOn" value="vce" />
				<xml-property name="container" value="port-groups" />
			</xml-properties>
		</java-type>

		<java-type name="CvlanTags">
			<xml-root-element name="cvlan-tags" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="cvlanTagEntry" name="cvlan-tag-entry" type="inventory.aai.onap.org.CvlanTagEntry" />
			</java-attributes>
		</java-type>

		<java-type name="CvlanTagEntry">
			<xml-root-element name="cvlan-tag-entry" />
			<java-attributes>
				<xml-element java-attribute="cvlanTag" name="cvlan-tag" required="true" type="java.lang.Long" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="See mis-na-virtualization-platform.yang" />
					</xml-properties>
				</xml-element>
			</java-attributes>
			<xml-properties>
				<xml-property name="dependentOn" value="port-group" />
				<xml-property name="indexedProps" value="cvlan-tag" />
				<xml-property name="container" value="cvlan-tags" />
			</xml-properties>
		</java-type>



		<java-type name="L3Networks">
			<xml-root-element name="l3-networks" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="l3Network" name="l3-network" type="inventory.aai.onap.org.L3Network" />
			</java-attributes>
		</java-type>

		<java-type name="L3Network">
			<xml-root-element name="l3-network" />
			<java-attributes>
				<xml-element java-attribute="networkId" name="network-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Network ID, governed by some naming convention. Unique across A&amp;AI." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="networkUuid" name="network-uuid" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="UUID of the network. Unique across A&amp;AI." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="networkName" name="network-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Name of the network, governed by some naming convention.." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="networkType" name="network-type" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Type of the network - who defines these values?" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipv4GatewayAddress" name="ipv4-gateway-address" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="IPV4 gateway address" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipv4Prefix" name="ipv4-prefix" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="IPV4 prefix" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipv6GatewayAddress" name="ipv6-gateway-address" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="IPV6 gateway address" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipv6Prefix" name="ipv6-prefix" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="IPV6 prefix" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Generic network definition" />
				<xml-property name="nameProps" value="network-name" />
				<xml-property name="indexedProps" value="network-uuid,network-id" />
				<xml-property name="uniqueProps" value="network-id" />
				<xml-property name="container" value="l3-networks" />
				<xml-property name="namespace" value="network" />
			</xml-properties>
		</java-type>

		<java-type name="GenericVnfs">
			<xml-properties>
				<xml-property name="description" value="VNF with no special attributes" />
			</xml-properties>
			<xml-root-element name="generic-vnfs" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="genericVnf" name="generic-vnf" type="inventory.aai.onap.org.GenericVnf" />
			</java-attributes>
		</java-type>

		<java-type name="GenericVnf">
			<xml-root-element name="generic-vnf" />
			<java-attributes>
				<xml-element java-attribute="vnfId" name="vnf-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Unique id of VNF.  This is unique across the graph." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vnfName" name="vnf-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Name of VNF." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vnfName2" name="vnf-name2" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Alternate name of VNF." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vnfType" name="vnf-type" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Type of VNF.  Source of truth should define and socialize values.                                  Becomes part of the key to service capability" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="provStatus" name="prov-status" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Trigger for operational monitoring of this resource by Service Assurance systems." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="operationalState" name="operational-state" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Indicator for whether the resource is considered operational" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="licenseKey" name="license-key" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="License key" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="equipmentRole" name="equipment-role" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Client should send valid enumerated value" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="orchestrationStatus" name="orchestration-status" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Orchestration status of this VNF, used by MSO." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="heatStackId" name="heat-stack-id" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Heat stack id corresponding to this instance, managed by MSO" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="msoCatalogKey" name="mso-catalog-key" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Corresponds to the SDN-C catalog id used to configure this VCE" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
				<xml-element java-attribute="lInterfaces" name="l-interfaces" type="inventory.aai.onap.org.LInterfaces" />
				<xml-element java-attribute="lagInterfaces" name="lag-interfaces" type="inventory.aai.onap.org.LagInterfaces" />
			</java-attributes>
			<xml-properties>
				<xml-property name="nameProps" value="vnf-name" />
				<xml-property name="indexedProps" value="vnf-name2,vnf-name,heat-stack-id,vnf-id" />
				<xml-property name="uniqueProps" value="vnf-id" />
				<xml-property name="container" value="generic-vnfs" />
				<xml-property name="namespace" value="network" />
				<xml-property name="extends" value="vnf" />
			</xml-properties>
		</java-type>

		<java-type name="LagLinks">
			<xml-root-element name="lag-links" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="lagLink" name="lag-link" type="inventory.aai.onap.org.LagLink" />
			</java-attributes>
		</java-type>

		<java-type name="LagLink">
			<xml-root-element name="lag-link" />
			<java-attributes>
				<xml-element java-attribute="linkName" name="link-name" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Alphabetical concatenation of lag-interface names" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="LAG links can connect lag-interfaces" />
				<xml-property name="indexedProps" value="link-name" />
				<xml-property name="container" value="lag-links" />
				<xml-property name="namespace" value="network" />
			</xml-properties>
		</java-type>

		<java-type name="Newvces">
			<xml-properties>
				<xml-property name="description" value="This is the skeleton of the new VCE object we hope to migrate to in 1507. In 1504, we will use it to store network data gathered from RESTCONF calls to SDN-C. The vnf-id2 leaf needs to be populated with the value of the vce's vnf-id." />
			</xml-properties>
			<xml-root-element name="newvces" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="newvce" name="newvce" type="inventory.aai.onap.org.Newvce" />
			</java-attributes>
		</java-type>

		<java-type name="Newvce">
			<xml-root-element name="newvce" />
			<java-attributes>
				<xml-element java-attribute="vnfId2" name="vnf-id2" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Unique id of VNF, can't use same attribute name right now until we promote this new object" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vnfName" name="vnf-name" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Name of VNF." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vnfName2" name="vnf-name2" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Alternate name of VNF." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vnfType" name="vnf-type" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Type of VNF.  Source of truth should define and socialize values.                                  Becomes part of the key to service capability" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="provStatus" name="prov-status" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Trigger for operational monitoring of this VNF by BAU Service Assurance systems." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="operationalState" name="operational-state" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Indicator for whether the resource is considered operational" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="licenseKey" name="license-key" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="License key" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipv4OamAddress" name="ipv4-oam-address" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by GenericVnf (v4-loopback0-ip-address)." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="equipmentRole" name="equipment-role" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Client should send valid enumerated value." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="orchestrationStatus" name="orchestration-status" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Orchestration status of this VNF, used by MSO." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="heatStackId" name="heat-stack-id" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Heat stack id corresponding to this instance, managed by MSO" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="msoCatalogKey" name="mso-catalog-key" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Corresponds to the SDN-C catalog id used to configure this VCE" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
				<xml-element java-attribute="lInterfaces" name="l-interfaces" type="inventory.aai.onap.org.LInterfaces" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Aspirational VCE object which we'll use to capture additional interface details regarding topology." />
				<xml-property name="nameProps" value="vnf-name" />
				<xml-property name="indexedProps" value="vnf-name2,vnf-name,heat-stack-id,vnf-id2" />
				<xml-property name="uniqueProps" value="vnf-id2" />
				<xml-property name="container" value="newvces" />
				<xml-property name="namespace" value="network" />
			</xml-properties>
		</java-type>

		<java-type name="VplsPes">
			<xml-root-element name="vpls-pes" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="vplsPe" name="vpls-pe" type="inventory.aai.onap.org.VplsPe" />
			</java-attributes>
		</java-type>

		<java-type name="VplsPe">
			<xml-root-element name="vpls-pe" />
			<java-attributes>
				<xml-element java-attribute="equipmentName" name="equipment-name" required="true" type="java.lang.String" xml-key="true" />
				<xml-element java-attribute="provStatus" name="prov-status" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Trigger for operational monitoring of this VNF by BAU Service Assurance systems." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="ipv4OamAddress" name="ipv4-oam-address" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Address tail-f uses to configure generic-vnf, also used for troubleshooting and is IP used for traps generated by GenericVnf (v4-loopback0-ip-address)." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="equipmentRole" name="equipment-role" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Client should send valid enumerated value, e.g., VPLS-PE." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="vlanIdOuter" name="vlan-id-outer" type="java.lang.Long">
					<xml-properties>
						<xml-property name="description" value="Temporary location for stag to get to VCE" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
				<xml-element java-attribute="pInterfaces" name="p-interfaces" type="inventory.aai.onap.org.PInterfaces" />
				<xml-element java-attribute="lagInterfaces" name="lag-interfaces" type="inventory.aai.onap.org.LagInterfaces" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Relationship-list must include related to info for complex." />
				<xml-property name="indexedProps" value="equipment-name" />
				<xml-property name="container" value="vpls-pes" />
				<xml-property name="namespace" value="network" />
			</xml-properties>
		</java-type>

		<java-type name="PhysicalLinks">
			<xml-root-element name="physical-links" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="physicalLink" name="physical-link" type="inventory.aai.onap.org.PhysicalLink" />
			</java-attributes>
		</java-type>

		<java-type name="PhysicalLink">
			<xml-root-element name="physical-link" />
			<java-attributes>
				<xml-element java-attribute="linkName" name="link-name" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="e.g., hostnameA_p-connection_nameA_hostnameZ+p_connection-nameZ" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="speedValue" name="speed-value" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Captures the numeric part of the speed" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="speedUnits" name="speed-units" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Captures the units corresponding to the speed" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="circuitId" name="circuit-id" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Circuit it" />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.RelationshipList" />
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Physical links can connect p-interfaces" />
				<xml-property name="indexedProps" value="circuit-id,link-name" />
				<xml-property name="alternateKeys1" value="circuit-id" />
				<xml-property name="container" value="physical-links" />
				<xml-property name="namespace" value="network" />
			</xml-properties>
		</java-type>

		<java-type name="NotificationEvent">
			<xml-root-element name="notification-event" />
			<java-attributes>
				<xml-element java-attribute="eventHeader" name="event-header" type="inventory.aai.onap.org.NotificationEventHeader" />
				<xml-any-element java-attribute="entity" />
			</java-attributes>
		</java-type>
		<java-type name="NotificationEventHeader">
			<xml-root-element name="notification-event-header" />
			<java-attributes>
				<xml-element java-attribute="id" name="id" type="java.lang.String" />
				<xml-element java-attribute="timestamp" name="timestamp" type="java.lang.String" />
				<xml-element java-attribute="sourceName" name="source-name" type="java.lang.String" />
				<xml-element java-attribute="domain" name="domain" type="java.lang.String" />
				<xml-element java-attribute="sequenceNumber" name="sequence-number" type="java.lang.String" />
				<xml-element java-attribute="severity" name="severity" type="java.lang.String" />
				<xml-element java-attribute="eventType" name="event-type" type="java.lang.String" />
				<xml-element java-attribute="version" name="version" type="java.lang.String" />
				<xml-element java-attribute="action" name="action" type="java.lang.String" />
				<xml-element java-attribute="entityType" name="entity-type" type="java.lang.String" />
				<xml-element java-attribute="topEntityType" name="top-entity-type" type="java.lang.String" />
				<xml-element java-attribute="entityLink" name="entity-link" type="java.lang.String" />
				<xml-element java-attribute="status" name="status" type="java.lang.String" />
			</java-attributes>
		</java-type>
		<java-type name="AaiInternal">
			<xml-root-element name="aai-internal" />
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="reservedPropNames" name="reserved-prop-names" type="inventory.aai.onap.org.ReservedPropNames" />
				<xml-element container-type="java.util.ArrayList" java-attribute="edgePropNames" name="edge-prop-names" type="inventory.aai.onap.org.EdgePropNames" />
			</java-attributes>
		</java-type>
		<java-type name="ReservedPropNames">
			<xml-properties>
				<xml-property name="description" value="Internal map to define some reserved properties of a vertex" />
				<xml-property name="uniqueProps" value="aai-unique-key" />
				<xml-property name="indexedProps" value="aai-unique-key" />
			</xml-properties>
			<xml-root-element name="reserved-prop-names" />
			<java-attributes>
				<xml-element java-attribute="lastModSourceOfTruth" name="last-mod-source-of-truth" type="java.lang.String" />
				<xml-element java-attribute="aaiCreatedTs" name="aai-created-ts" type="java.lang.Long" />
				<xml-element java-attribute="aaiUniqueKey" name="aai-unique-key" type="java.lang.String" />
				<xml-element java-attribute="aaiLastModTs" name="aai-last-mod-ts" type="java.lang.Long" />
				<xml-element java-attribute="sourceOfTruth" name="source-of-truth" type="java.lang.String" />
			</java-attributes>
		</java-type>
		<java-type name="EdgePropNames">
			<!-- NOTE that the names of these properties are not consistent and are in mixed case and hyphen case for now -->
			<xml-properties>
				<xml-property name="description" value="Internal map to define the properties of an edge and interpret the map EdgeRules" />
				<xml-property name="edgeInfo" value="edgeLabel,direction,multiplicityRule,isParent,usesResource,hasDelTarget,SVC-INFRA,SVC-INFRA-REV" />
			</xml-properties>
			<xml-root-element name="edge-prop-names" />
			<java-attributes>
				<xml-element java-attribute="edgeLabel" name="edgeLabel" type="java.lang.String" />
				<xml-element java-attribute="direction" name="direction" type="java.lang.String" />
				<xml-element java-attribute="multiplicityRule" name="multiplicityRule" type="java.lang.String" />
				<xml-element java-attribute="isParent" name="isParent" type="java.lang.Boolean" />
				<xml-element java-attribute="usesResource" name="usesResource" type="java.lang.Boolean" />
				<xml-element java-attribute="hasDelTarget" name="hasDelTarget" type="java.lang.Boolean" />
				<xml-element java-attribute="SVC-INFRA" name="SVC-INFRA" type="java.lang.String" />
				<xml-element java-attribute="SVC-INFRA-REV" name="SVC-INFRA-REV" type="java.lang.String" />
			</java-attributes>
		</java-type>
		<java-type name="Vnf">
			<xml-root-element name="vnf"/>
			<java-attributes>
				<xml-element java-attribute="vnfId" name="vnf-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="Unique id of VNF.  This is unique across the graph." />
					</xml-properties>
				</xml-element>
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Abstract vnf class" />
				<xml-property name="indexedProps" value="vnf-id" />
				<xml-property name="uniqueProps" value="vnf-id" />
				<xml-property name="inheritors" value="vce,generic-vnf" />
				<xml-property name="abstract" value="true" />
			</xml-properties>
		</java-type>
	</java-types>
</xml-bindings>