summaryrefslogtreecommitdiffstats
path: root/conf/CA/manual.sh
blob: bb891759a2599811677d367655ecf3d6558af7a7 (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
#
# Initialize a manual Cert.  This is NOT entered in Certman Records
#
echo "FQI (Fully Qualified Identity): "
read FQI
if [ "$1" = "" -o "$1" = "-local" ]; then 
  echo "Personal Certificate"
  SUBJECT="/CN=$FQI/OU=V1`cat subject.aaf`"
else 
  echo "Application Certificate"
  SUBJECT="/CN=$1/OU=$FQI`cat subject.aaf`"
  FQI=$1
  shift
fi
echo $SUBJECT

if [ -e $FQI.csr ]; then
  SIGN_IT=true
else 
  if [ "$1" = "-local" ]; then
	echo "IMPORTANT: If for any reason, you kill this process, type 'stty sane'"
	echo "Enter the PassPhrase for the Key for $FQI: "
	`stty -echo`
	read PASSPHRASE
	`stty echo`
 
	# remove any previous Private key
	rm private/$FQI.key
	# Create j regaular rsa encrypted key
	openssl req -new -newkey rsa:2048 -sha256 -keyout private/$FQI.key \
	  -out $FQI.csr -outform PEM -subj "$SUBJECT" \
	  -passout stdin  << EOF
$PASSPHRASE
EOF
	chmod 400 private/$FQI.key 
	SIGN_IT=true
  else 
	echo openssl req -newkey rsa:4096 -sha256 -keyout $FQI.key -out $FQI.csr -outform PEM -subj '"'$SUBJECT'"'
	echo chmod 400 $FQI.key
	echo "# All done, print result"
	echo openssl req -verify -text -noout -in $FQI.csr
  fi
fi

if [ "$SIGN_IT" = "true" ]; then
  # Sign it
  openssl ca -config ../openssl.conf -extensions server_cert -out $FQI.crt \
	-cert certs/ca.crt -keyfile private/ca.key \
	 -policy policy_loose \
	-infiles $FQI.csr
fi
' href='#n442'>442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
  ============LICENSE_START=======================================================
  org.onap.aai
  ================================================================================
  Copyright (C) 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=========================================================
  -->

<xml-bindings xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm" package-name="inventory.aai.onap.org.v13" xml-mapping-metadata-complete="true">
    <xml-schema element-form-default="QUALIFIED">
        <xml-ns namespace-uri="http://org.onap.aai.inventory/v13"/>
    </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.v13.Search"/>
                <xml-element java-attribute="actions" name="actions" type="inventory.aai.onap.org.v13.Actions"/>
                <xml-element java-attribute="cloudInfrastructure" name="cloud-infrastructure" type="inventory.aai.onap.org.v13.CloudInfrastructure"/>
				<xml-element java-attribute="externalSystem" name="external-system" type="inventory.aai.onap.org.v13.ExternalSystem" />
                <xml-element java-attribute="business" name="business" type="inventory.aai.onap.org.v13.Business"/>
                <xml-element java-attribute="serviceDesignAndCreation" name="service-design-and-creation" type="inventory.aai.onap.org.v13.ServiceDesignAndCreation"/>
                <xml-element java-attribute="network" name="network" type="inventory.aai.onap.org.v13.Network"/>
                <xml-element java-attribute="aaiInternal" name="aai-internal" type="inventory.aai.onap.org.v13.AaiInternal"/>
                <xml-element java-attribute="nodes" name="nodes" type="inventory.aai.onap.org.v13.Nodes"/>
            </java-attributes>
        </java-type>

        <java-type name="Nodes">
            <xml-root-element name="nodes"/>
        </java-type>
        <java-type name="Search">
            <xml-root-element name="search"/>
            <java-attributes>
                <xml-element java-attribute="edgeTagQueryResult" name="edge-tag-query-result" type="inventory.aai.onap.org.v13.EdgeTagQueryResult"/>
                <xml-element java-attribute="edgeTagQueryRequest" name="edge-tag-query-request" type="inventory.aai.onap.org.v13.EdgeTagQueryRequest"/>
                <xml-element java-attribute="searchResults" name="search-results" type="inventory.aai.onap.org.v13.SearchResults"/>
                <xml-element java-attribute="sdnZoneResponse" name="sdn-zone-response" type="inventory.aai.onap.org.v13.SdnZoneResponse"/>
            </java-attributes>
        </java-type>

        <java-type name="EdgeTagQueryResult">
            <xml-root-element name="edge-tag-query-result"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="taggedInventoryItemList" name="tagged-inventory-item-list" type="inventory.aai.onap.org.v13.TaggedInventoryItemList"/>
            </java-attributes>
        </java-type>

        <java-type name="TaggedInventoryItemList">
            <xml-root-element name="tagged-inventory-item-list"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="inventoryItem" name="inventory-item" type="inventory.aai.onap.org.v13.InventoryItem"/>
            </java-attributes>
        </java-type>

        <java-type name="InventoryItem">
            <xml-root-element name="inventory-item"/>
            <java-attributes>
                <xml-element java-attribute="inventoryItemType" name="inventory-item-type" type="java.lang.String"/>
                <xml-element java-attribute="inventoryItemLink" name="inventory-item-link" type="java.lang.String"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="inventoryItemData" name="inventory-item-data" type="inventory.aai.onap.org.v13.InventoryItemData"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="taggedInventoryItemList" name="tagged-inventory-item-list" type="inventory.aai.onap.org.v13.TaggedInventoryItemList"/>
            </java-attributes>
        </java-type>

        <java-type name="InventoryItemData">
            <xml-root-element name="inventory-item-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="EdgeTagQueryRequest">
            <xml-root-element name="edge-tag-query-request"/>
            <java-attributes>
                <xml-element java-attribute="edgeTag" name="edge-tag" type="java.lang.String"/>
                <xml-element java-attribute="resultDetail" name="result-detail" type="java.lang.String"/>
                <xml-element java-attribute="startNodeType" name="start-node-type" type="java.lang.String"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="startNodeFilter" name="start-node-filter" type="inventory.aai.onap.org.v13.StartNodeFilter"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="includeNodeFilter" name="include-node-filter" type="inventory.aai.onap.org.v13.IncludeNodeFilter"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="secondaryFilter" name="secondary-filter" type="inventory.aai.onap.org.v13.SecondaryFilter"/>
            </java-attributes>
        </java-type>

        <java-type name="StartNodeFilter">
            <xml-root-element name="start-node-filter"/>
            <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="IncludeNodeFilter">
            <xml-root-element name="include-node-filter"/>
            <java-attributes>
                <xml-element java-attribute="includeNodeType" name="include-node-type" type="java.lang.String"/>
            </java-attributes>
        </java-type>

        <java-type name="SecondaryFilter">
            <xml-root-element name="secondary-filter"/>
            <java-attributes>
                <xml-element java-attribute="propertyName" name="property-name" type="java.lang.String"/>
                <xml-element java-attribute="filterType" name="filter-type" type="java.lang.String"/>
                <xml-element java-attribute="propertyValue" name="property-value" type="java.lang.String"/>
            </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.v13.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.v13.OamNetworks"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="azAndDvsSwitches" name="az-and-dvs-switches" type="inventory.aai.onap.org.v13.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.v13.DvsSwitches"/>
                <xml-element java-attribute="availabilityZone" name="availability-zone" type="inventory.aai.onap.org.v13.AvailabilityZone"/>
            </java-attributes>
        </java-type>

        <java-type name="Actions">
            <xml-properties>
                <xml-property name="description" value="APIs that are more action related than REST (e.g., notify, update)."/>
            </xml-properties>
            <xml-root-element name="actions"/>
            <java-attributes>
                <xml-element java-attribute="update" name="update" type="inventory.aai.onap.org.v13.Update"/>
                <xml-element java-attribute="notify" name="notify" type="inventory.aai.onap.org.v13.Notify"/>
            </java-attributes>
        </java-type>

        <java-type name="Update">
            <xml-properties>
                <xml-property name="description" value="Serves a PATCH like function.  Does not enforce concurrency control.  Clear each usage with AAI team."/>
            </xml-properties>
            <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="updateNodeKey" name="update-node-key" type="inventory.aai.onap.org.v13.UpdateNodeKey"/>
                <xml-element java-attribute="updateNodeUri" name="update-node-uri" type="java.lang.String"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="action" name="action" type="inventory.aai.onap.org.v13.Action"/>
            </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.v13.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="Notify">
            <xml-root-element name="notify"/>
            <java-attributes>
                <xml-element java-attribute="eventId" name="event-id" required="true" type="java.lang.String"/>
                <xml-element java-attribute="nodeType" name="node-type" type="java.lang.String"/>
                <xml-element java-attribute="eventTrigger" name="event-trigger" type="java.lang.String"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="keyData" name="key-data" type="inventory.aai.onap.org.v13.KeyData"/>
                <xml-element java-attribute="selflink" name="selflink" type="java.lang.String"/>
            </java-attributes>
        </java-type>

        <java-type name="KeyData">
            <xml-root-element name="key-data"/>
            <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="ExternalSystem">
                       <xml-properties>
                               <xml-property name="description" value="Namespace for external system." />
                       </xml-properties>
                       <xml-root-element name="external-system" />
                       <java-attributes>
                               <xml-element java-attribute="esrEmsList" name="esr-ems-list" type="inventory.aai.onap.org.v13.EsrEmsList" />
                               <xml-element java-attribute="esrVnfmList" name="esr-vnfm-list" type="inventory.aai.onap.org.v13.EsrVnfmList" />
                               <xml-element java-attribute="esrThirdpartySdncList" name="esr-thirdparty-sdnc-list" type="inventory.aai.onap.org.v13.EsrThirdpartySdncList" />
                       </java-attributes>
               </java-type>

               <java-type name="EsrEmsList">
                       <xml-root-element name="esr-ems-list" />
                       <java-attributes>
                               <xml-element container-type="java.util.ArrayList" java-attribute="esrEms" name="esr-ems" type="inventory.aai.onap.org.v13.EsrEms" />
                       </java-attributes>
                       <xml-properties>
                               <xml-property name="maximumDepth" value="0" />
                       </xml-properties>
               </java-type>

               <java-type name="EsrEms">
                       <xml-root-element name="esr-ems" />
                       <java-attributes>
                               <xml-element java-attribute="emsId" name="ems-id" required="true" type="java.lang.String" xml-key="true">
                                       <xml-properties>
                                               <xml-property name="description" value="Unique ID of EMS." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="esrSystemInfoList" name="esr-system-info-list" type="inventory.aai.onap.org.v13.EsrSystemInfoList" />
                               <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList" />
                       </java-attributes>
                       <xml-properties>
                               <xml-property name="description" value="Persist EMS address information used by EMS driver." />
                               <xml-property name="indexedProps" value="ems-id" />
                               <xml-property name="searchable" value="ems-id" />
                               <xml-property name="container" value="esr-ems-list" />
                               <xml-property name="namespace" value="external-system" />
                       </xml-properties>
               </java-type>

               <java-type name="EsrVnfmList">
                       <xml-root-element name="esr-vnfm-list" />
                       <java-attributes>
                               <xml-element container-type="java.util.ArrayList" java-attribute="esrVnfm" name="esr-vnfm" type="inventory.aai.onap.org.v13.EsrVnfm" />
                       </java-attributes>
            <xml-properties>
                               <xml-property name="maximumDepth" value="0" />
                       </xml-properties>
               </java-type>

               <java-type name="EsrVnfm">
                       <xml-root-element name="esr-vnfm" />
                       <java-attributes>
                               <xml-element java-attribute="vnfmId" name="vnfm-id" required="true" type="java.lang.String" xml-key="true">
                                       <xml-properties>
                                               <xml-property name="description" value="Unique ID of VNFM." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="vimId" name="vim-id" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="indecate the VIM to deploy VNF." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="certificateUrl" name="certificate-url" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="certificate url of VNFM." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="esrSystemInfoList" name="esr-system-info-list" type="inventory.aai.onap.org.v13.EsrSystemInfoList" />
                               <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList" />
                       </java-attributes>
                       <xml-properties>
                               <xml-property name="description" value="Persist VNFM address information used by VF-C." />
                               <xml-property name="indexedProps" value="vnfm-id" />
                               <xml-property name="searchable" value="vnfm-id" />
                               <xml-property name="container" value="esr-vnfm-list" />
                               <xml-property name="namespace" value="external-system" />
                       </xml-properties>
               </java-type>

               <java-type name="EsrThirdpartySdncList">
                       <xml-root-element name="esr-thirdparty-sdnc-list" />
                       <java-attributes>
                               <xml-element container-type="java.util.ArrayList" java-attribute="esrThirdpartySdnc" name="esr-thirdparty-sdnc" type="inventory.aai.onap.org.v13.EsrThirdpartySdnc" />
                       </java-attributes>
            <xml-properties>
                               <xml-property name="maximumDepth" value="0" />
                       </xml-properties>
               </java-type>

               <java-type name="EsrThirdpartySdnc">
                       <xml-root-element name="esr-thirdparty-sdnc" />
                       <java-attributes>
                               <xml-element java-attribute="thirdpartySdncId" name="thirdparty-sdnc-id" required="true" type="java.lang.String" xml-key="true">
                                       <xml-properties>
                                               <xml-property name="description" value="Unique ID of SDNC." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="location" name="location" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="used for DC type to indicate the location of SDNC, such as Core or Edge." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="productName" name="product-name" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="password used to access SDNC server." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="esrSystemInfoList" name="esr-system-info-list" type="inventory.aai.onap.org.v13.EsrSystemInfoList" />
                               <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList" />
                       </java-attributes>
                       <xml-properties>
                               <xml-property name="description" value="Persist SDNC address information used by ONAP SDNC." />
                               <xml-property name="indexedProps" value="sdnc-id" />
                               <xml-property name="searchable" value="sdnc-id" />
                               <xml-property name="container" value="esr-thirdparty-sdnc-list" />
                               <xml-property name="namespace" value="external-system" />
                       </xml-properties>
               </java-type>

               <java-type name="EsrSystemInfoList">
                       <xml-root-element name="esr-system-info-list" />
                       <xml-properties>
                               <xml-property name="description" value="Collection of persistent block-level external system auth info." />
                       </xml-properties>
                       <java-attributes>
                               <xml-element container-type="java.util.ArrayList" java-attribute="esrSystemInfo" name="esr-system-info" type="inventory.aai.onap.org.v13.EsrSystemInfo" />
                       </java-attributes>
                       <xml-properties>
                               <xml-property name="maximumDepth" value="0" />
                       </xml-properties>
               </java-type>

               <java-type name="EsrSystemInfo">
                       <xml-root-element name="esr-system-info" />
                       <java-attributes>
                               <xml-element java-attribute="esrSystemInfoId" name="esr-system-info-id" required="true" type="java.lang.String" xml-key="true">
                                       <xml-properties>
                                               <xml-property name="description" value="Unique ID of esr system info." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="systemName" name="system-name" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="name of external system." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="type" name="type" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="type of external systems." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="vendor" name="vendor" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="vendor of external systems." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="version" name="version" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="version of external systems." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="serviceUrl" name="service-url" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="url used to access external systems." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="userName" name="user-name" required="true" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="username used to access external systems." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="password" name="password" required="true" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="password used to access external systems." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="systemType" name="system-type" required="true" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="it could be vim/vnfm/thirdparty-sdnc/ems-resource/ems-performance/ems-alarm." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="protocol" name="protocol" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="protocol of third party SDNC, for example netconf/snmp." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="sslCacert" name="ssl-cacert" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="ca file content if enabled ssl on auth-url." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element default-value="false" java-attribute="sslInsecure" name="ssl-insecure" type="java.lang.Boolean">
                                       <xml-properties>
                                               <xml-property name="description" value="Whether to verify VIM's certificate." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="ipAddress" name="ip-address" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="service IP of ftp server." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="port" name="port" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="service port of ftp server." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="cloudDomain" name="cloud-domain" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="domain info for authentication." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="defaultTenant" name="default-tenant" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="default tenant of VIM." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="passive" name="passive" type="java.lang.Boolean">
                                       <xml-properties>
                                               <xml-property name="description" value="ftp passive mode or not." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="remotepath" name="remote-path" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="resource or performance data file path." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="systemStatus" name="system-status" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="the status of external system." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                                       <xml-properties>
                                               <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete." />
                                       </xml-properties>
                               </xml-element>
                               <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList" />
                       </java-attributes>
                       <xml-properties>
                               <xml-property name="description" value="Persist common address information of external systems." />
                               <xml-property name="indexedProps" value="esr-system-info-id,system-name,system-type" />
                               <xml-property name="searchable" value="esr-system-info-id,system-name,system-type" />
                               <xml-property name="container" value="esr-system-info-list" />
                               <xml-property name="dependentOn" value="cloud-region,esr-ems,esr-vnfm,esr-thirdparty-sdnc" />
                       </xml-properties>
               </java-type>

		<java-type name="HpaCapabilities">
			<xml-properties>
				<xml-property name="description" value="Collection of HPA Capabilities"/>
			</xml-properties>
			<xml-root-element name="hpa-capabilities"/>
			<java-attributes>
				<xml-element container-type="java.util.ArrayList" java-attribute="hpaCapability" name="hpa-capability" type="inventory.aai.onap.org.v13.HpaCapability"/>
			</java-attributes>
		</java-type>

		<java-type name="HpaCapability">
			<xml-root-element name="hpa-capability"/>
			<java-attributes>
				<xml-element java-attribute="hpaCapabilityId" name="hpa-capability-id" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="UUID to uniquely identify a HPA capability"/>
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="hpaFeature" name="hpa-feature" required="true" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Name of the HPACapability"/>
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="hpaVersion" name="hpa-version" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="HPA schema version"/>
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="architecture" name="architecture" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Hardware architecture"/>
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
				<xml-element container-type="java.util.ArrayList" java-attribute="hpaFeatureAttributes" name="hpa-feature-attributes" type="inventory.aai.onap.org.v13.HpaFeatureAttributes"/>
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="Represents a HPA capability"/>
				<xml-property name="indexedProps" value="hpa-feature,architecture,hpa-capability-id"/>
				<xml-property name="dependentOn" value="flavor,cloud-region"/>
				<xml-property name="container" value="hpa-capabilities"/>
			</xml-properties>
		</java-type>

		<java-type name="HpaFeatureAttributes">
			<xml-root-element name="hpa-feature-attributes"/>
			<java-attributes>
				<xml-element java-attribute="hpaAttributeKey" name="hpa-attribute-key" required="true" type="java.lang.String" xml-key="true">
					<xml-properties>
						<xml-property name="description" value="name of the specific HPA attribute"/>
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="hpaAttributeValue" name="hpa-attribute-value" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="JSON string specifying the value, unit and type of the specific HPA attribute"/>
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
			</java-attributes>
			<xml-properties>
				<xml-property name="description" value="HPA Capability Feature attributes"/>
				<xml-property name="indexedProps" value="hpa-attribute-key"/>
				<xml-property name="dependentOn" value="hpa-capability"/>
			</xml-properties>
		</java-type>

        <java-type name="CloudInfrastructure">
            <xml-properties>
                <xml-property name="description" value="Namespace for cloud infrastructure."/>
            </xml-properties>
            <xml-root-element name="cloud-infrastructure"/>
            <java-attributes>
                <xml-element java-attribute="complexes" name="complexes" type="inventory.aai.onap.org.v13.Complexes"/>
                <xml-element java-attribute="cloudRegions" name="cloud-regions" type="inventory.aai.onap.org.v13.CloudRegions"/>
                <xml-element java-attribute="networkProfiles" name="network-profiles" type="inventory.aai.onap.org.v13.NetworkProfiles"/>
                <xml-element java-attribute="pservers" name="pservers" type="inventory.aai.onap.org.v13.Pservers"/>
                <xml-element java-attribute="virtualDataCenters" name="virtual-data-centers" type="inventory.aai.onap.org.v13.VirtualDataCenters"/>
                <xml-element java-attribute="operationalEnvironments" name="operational-environments" type="inventory.aai.onap.org.v13.OperationalEnvironments"/>
            </java-attributes>
        </java-type>

        <java-type name="CloudRegions">
            <xml-root-element name="cloud-regions"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="cloudRegion" name="cloud-region" type="inventory.aai.onap.org.v13.CloudRegion"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="maximumDepth" value="0"/>
            </xml-properties>
        </java-type>

        <java-type name="CloudRegion">
            <xml-root-element name="cloud-region"/>
            <java-attributes>
                <xml-element java-attribute="cloudOwner" name="cloud-owner" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
						<xml-property name="description" value="Identifies the vendor and cloud name. First part of composite key should be formatted as vendor-cloudname" />
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="cloudRegionId" name="cloud-region-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Identifier used by the vendor for the region. Second part of composite key"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="cloudType" name="cloud-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Type of the cloud (e.g., openstack)"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ownerDefinedType" name="owner-defined-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Cloud-owner defined type indicator (e.g., dcp, lcp)"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="cloudRegionVersion" name="cloud-region-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Software version employed at the site.  NOTE - THIS FIELD IS NOT KEPT UP TO DATE."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="identityUrl" name="identity-url" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="URL of the keystone identity service"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="cloudZone" name="cloud-zone" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Zone where the cloud is homed.  NOTE - THIS FIELD IS NOT CORRECTLY POPULATED."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="complexName" name="complex-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="complex name for cloud-region instance.  NOTE - THIS FIELD IS NOT CORRECTLY POPULATED."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="sriovAutomation" name="sriov-automation" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Whether the cloud region supports (true) or does not support (false) SR-IOV automation."/>
                    </xml-properties>
                </xml-element>
				<xml-element java-attribute="cloudExtraInfo" name="cloud-extra-info" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="ESR inputs extra information about the VIM or Cloud which will be decoded by MultiVIM." />
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="cloudEpaCaps" name="cloud-epa-caps" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="MultiVIM will discover and expose EPA capabilities." />
					</xml-properties>
				</xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="volumeGroups" name="volume-groups" type="inventory.aai.onap.org.v13.VolumeGroups"/>
                <xml-element java-attribute="tenants" name="tenants" type="inventory.aai.onap.org.v13.Tenants"/>
                <xml-element java-attribute="flavors" name="flavors" type="inventory.aai.onap.org.v13.Flavors"/>
                <xml-element java-attribute="groupAssignments" name="group-assignments" type="inventory.aai.onap.org.v13.GroupAssignments"/>
                <xml-element java-attribute="snapshots" name="snapshots" type="inventory.aai.onap.org.v13.Snapshots"/>
                <xml-element java-attribute="images" name="images" type="inventory.aai.onap.org.v13.Images"/>
                <xml-element java-attribute="dvsSwitches" name="dvs-switches" type="inventory.aai.onap.org.v13.DvsSwitches"/>
                <xml-element java-attribute="oamNetworks" name="oam-networks" type="inventory.aai.onap.org.v13.OamNetworks"/>
                <xml-element java-attribute="availabilityZones" name="availability-zones" type="inventory.aai.onap.org.v13.AvailabilityZones"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="vipIpv4AddressList" name="vip-ipv4-address-list" type="inventory.aai.onap.org.v13.VipIpv4AddressList"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="vipIpv6AddressList" name="vip-ipv6-address-list" type="inventory.aai.onap.org.v13.VipIpv6AddressList"/>
				<xml-element java-attribute="hpaCapabilities" name="hpa-capabilities" type="inventory.aai.onap.org.v13.HpaCapabilities">
					<xml-properties>
						<xml-property name="description" value="List of cloud-region specific HPA Capabilities"/>
					</xml-properties>
				</xml-element>
				<xml-element java-attribute="esrSystemInfoList" name="esr-system-info-list" type="inventory.aai.onap.org.v13.EsrSystemInfoList" />
            </java-attributes>
            <xml-properties>
				<xml-property name="description" value="cloud-region designates an installation of a cloud cluster or region or instantiation." />
                <xml-property name="indexedProps" value="cloud-owner,cloud-region-id,cloud-type,owner-defined-type"/>
                <xml-property name="nameProps" value="owner-defined-type"/>
                <xml-property name="container" value="cloud-regions"/>
                <xml-property name="namespace" value="cloud-infrastructure"/>
                <xml-property name="uriTemplate" value="/cloud-infrastructure/cloud-regions/cloud-region/{cloud-owner}/{cloud-region-id}"/>
            </xml-properties>
        </java-type>
        <java-type name="VolumeGroups">
            <xml-properties>
                <xml-property name="description" value="Collection of persistent block-level storage."/>
            </xml-properties>
            <xml-root-element name="volume-groups"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="volumeGroup" name="volume-group" type="inventory.aai.onap.org.v13.VolumeGroup"/>
            </java-attributes>
        </java-type>

        <java-type name="VolumeGroup">
            <xml-root-element name="volume-group"/>
            <java-attributes>
                <xml-element java-attribute="volumeGroupId" name="volume-group-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique ID of volume-group."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="volumeGroupName" name="volume-group-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Name of the volume group."/>
                    </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 volume-group"/>
                    </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="String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures."/>
                    </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 volume-group"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelCustomizationId" name="model-customization-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="captures the id of all the configuration used to customize the resource for the service."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfModuleModelCustomizationId" name="vf-module-model-customization-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="helps relate the volume group to the vf-module whose components will require the volume group"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Persistent block-level storage."/>
                <xml-property name="indexedProps" value="volume-group-name,vnf-type,heat-stack-id,volume-group-id"/>
                <xml-property name="searchable" value="volume-group-id,volume-group-name"/>
                <xml-property name="dependentOn" value="cloud-region"/>
                <xml-property name="container" value="volume-groups"/>
                <xml-property name="uriTemplate" value="/volume-groups/volume-group/{volume-group-id}"/>
            </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.v13.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="relationshipLabel" name="relationship-label" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The edge label for this relationship."/>
                    </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.v13.RelationshipData"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="relatedToProperty" name="related-to-property" type="inventory.aai.onap.org.v13.RelatedToProperty"/>
            </java-attributes>
        </java-type>

        <java-type name="RelatedToProperty">
            <xml-root-element name="related-to-property"/>
            <java-attributes>
                <xml-element java-attribute="propertyKey" name="property-key" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Key part of a key/value pair"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="propertyValue" name="property-value" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Value part of a key/value pair"/>
                    </xml-properties>
                </xml-element>
            </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="Complexes">
            <xml-properties>
                <xml-property name="description" value="Collection of physical locations that can house cloud-regions."/>
            </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.v13.Complex"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="maximumDepth" value="0"/>
            </xml-properties>
        </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="identityUrl" name="identity-url" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="URL of the keystone identity service"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </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" 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.v13.CtagPools"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Collection of physical locations that can house cloud-regions."/>
                <xml-property name="indexedProps" value="identity-url,data-center-code,complex-name,physical-location-id"/>
                <xml-property name="searchable" value="physical-location-id,data-center-code,complex-name,street1,street2,postal-code"/>
                <xml-property name="uniqueProps" value="physical-location-id"/>
                <xml-property name="container" value="complexes"/>
                <xml-property name="namespace" value="cloud-infrastructure"/>
                <xml-property name="uriTemplate" value="/cloud-infrastructure/complexes/complex/{physical-location-id}"/>
            </xml-properties>
        </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.v13.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="Describes what the intended purpose of this pool is."/>
                    </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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="A collection of C tags (vlan tags) grouped for a specific purpose."/>
                <xml-property name="indexedProps" value="availability-zone-name"/>
                <xml-property name="dependentOn" value="complex"/>
                <xml-property name="container" value="ctag-pools"/>
                <xml-property name="uriTemplate" value="/ctag-pools/ctag-pool/{target-pe}/{availability-zone-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="Tenants">
            <xml-properties>
                <xml-property name="description" value="Collection of openstack tenants."/>
            </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.v13.Tenant"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="maximumDepth" value="0"/>
            </xml-properties>
        </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 cloud-region."/>
                    </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="tenantContext" name="tenant-context" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="This field will store the tenant context."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vservers" name="vservers" type="inventory.aai.onap.org.v13.Vservers"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Openstack tenant"/>
                <xml-property name="nameProps" value="tenant-name"/>
                <xml-property name="indexedProps" value="tenant-name,tenant-id,tenant-context"/>
                <xml-property name="searchable" value="tenant-id,tenant-name"/>
                <xml-property name="dependentOn" value="cloud-region"/>
                <xml-property name="container" value="tenants"/>
                <xml-property name="uriTemplate" value="/tenants/tenant/{tenant-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Vservers">
            <xml-properties>
                <xml-property name="description" value="Collection of virtual Servers, aka virtual machines or VMs."/>
            </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.v13.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-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 to endpoint where AAI can get more details"/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="inMaint" name="in-maint" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="Used to indicate whether or not this object is in maintenance mode (maintenance mode = true). This field (in conjunction with prov-status) is used to suppress alarms and vSCL on VNFs/VMs."/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="isClosedLoopDisabled" name="is-closed-loop-disabled" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="Used to indicate whether closed loop function is enabled on this node"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="volumes" name="volumes" type="inventory.aai.onap.org.v13.Volumes"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="lInterfaces" name="l-interfaces" type="inventory.aai.onap.org.v13.LInterfaces"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Virtual Servers, aka virtual machine or VM."/>
                <xml-property name="nameProps" value="vserver-name"/>
                <xml-property name="indexedProps" value="is-closed-loop-disabled,prov-status,vserver-name,vserver-id,in-maint,vserver-name2"/>
                <xml-property name="searchable" value="vserver-id,vserver-name,vserver-name2"/>
                <xml-property name="dependentOn" value="tenant"/>
                <xml-property name="container" value="vservers"/>
                <xml-property name="uriTemplate" value="/vservers/vserver/{vserver-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="LInterfaces">
            <xml-properties>
                <xml-property name="description" value="Collection of logical interfaces."/>
            </xml-properties>
            <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.v13.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-properties>
                        <xml-property name="description" value="Name given to the interface"/>
                    </xml-properties>
                </xml-element>
                <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="selflink" name="selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="URL to endpoint where AAI can get more details"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="interfaceId" name="interface-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ID of interface"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="macaddr" name="macaddr" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="MAC address for the interface"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="networkName" name="network-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Name of the network"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="managementOption" name="management-option" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Whether A&amp;AI should be managing this interface of not. Could have value like CUSTOMER"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="interfaceDescription" name="interface-description" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Human friendly text regarding this interface."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="isPortMirrored" name="is-port-mirrored" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="boolean indicatating whether or not port is a mirrored."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="inMaint" name="in-maint" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether or not this object is in maintenance mode (maintenance mode = true)"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="provStatus" name="prov-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Prov Status of the logical interface. Valid values [PREPROV/NVTPROV/PROV]."/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="isIpUnnumbered" name="is-ip-unnumbered" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="Flag indicating the interface uses the IP Unnumbered configuration."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="allowedAddressPairs" name="allowed-address-pairs" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Freeform field for storing an ip address, list of ip addresses or a subnet block."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlans" name="vlans" type="inventory.aai.onap.org.v13.Vlans"/>
                <xml-element java-attribute="sriovVfs" name="sriov-vfs" type="inventory.aai.onap.org.v13.SriovVfs"/>
                <xml-element java-attribute="lInterfaces" name="l-interfaces" type="inventory.aai.onap.org.v13.LInterfaces"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="l3InterfaceIpv4AddressList" name="l3-interface-ipv4-address-list" type="inventory.aai.onap.org.v13.L3InterfaceIpv4AddressList"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="l3InterfaceIpv6AddressList" name="l3-interface-ipv6-address-list" type="inventory.aai.onap.org.v13.L3InterfaceIpv6AddressList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Logical interfaces, e.g., a vnic."/>
                <xml-property name="indexedProps" value="macaddr,interface-id,interface-name,network-name"/>
                <xml-property name="dependentOn" value="generic-vnf,newvce,p-interface,vserver,lag-interface,l-interface"/>
                <xml-property name="container" value="l-interfaces"/>
                <xml-property name="uriTemplate" value="/l-interfaces/l-interface/{interface-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="SriovVfs">
            <xml-properties>
                <xml-property name="description" value="Collection of SR-IOV Virtual Functions."/>
            </xml-properties>
            <xml-root-element name="sriov-vfs"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="sriovVf" name="sriov-vf" type="inventory.aai.onap.org.v13.SriovVf"/>
            </java-attributes>
        </java-type>
        <java-type name="SriovVf">
            <xml-root-element name="sriov-vf"/>
            <java-attributes>
                <xml-element java-attribute="pciId" name="pci-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="PCI ID used to identify the sriov-vf"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfVlanFilter" name="vf-vlan-filter" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="This metadata provides option to specify list of VLAN filters applied on VF to pass the traffic to VM."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfMacFilter" name="vf-mac-filter" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="When MAC filters are specified, VF-agent service configures VFs to do MAC level filtering before the traffic is passed to VM."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfVlanStrip" name="vf-vlan-strip" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="description" value="When this field is set to true, VF will configured to strip the outer TAG before the traffic is passed to VM."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfVlanAntiSpoofCheck" name="vf-vlan-anti-spoof-check" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="description" value="This option ensures anti VLAN spoof checks are done at the VF level to comply with security. The disable check will also be honored per the VNF needs for trusted VMs."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfMacAntiSpoofCheck" name="vf-mac-anti-spoof-check" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="description" value="This option ensures anti MAC spoof checks are done at the VF level to comply with security. The disable check will also be honored per the VNF needs for trusted VMs."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfMirrors" name="vf-mirrors" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="This option defines the set of Mirror objects which essentially mirrors the traffic from source to set of collector VNF Ports."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfBroadcastAllow" name="vf-broadcast-allow" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="description" value="This option, if set to true, sets the VF in promiscuous mode and allows all broadcast traffic to reach the VM"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfUnknownMulticastAllow" name="vf-unknown-multicast-allow" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="description" value="This option, if set to true, sets the VF in promiscuous mode and allows unknown multicast traffic to reach the VM"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfUnknownUnicastAllow" name="vf-unknown-unicast-allow" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="description" value="This option, if set to true, sets the VF in promiscuous mode and allows unknown unicast traffic to reach the VM"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfInsertStag" name="vf-insert-stag" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="description" value="This option, if set to true, instructs to insert outer tag after traffic comes out of VM."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfLinkStatus" name="vf-link-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="This option is used to set the link status.  Valid values as of 1607 are on, off, and auto."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </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 the interface"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="SR-IOV Virtual Function (not to be confused with virtual network function)"/>
                <xml-property name="indexedProps" value="pci-id,vf-vlan-filter,vf-mac-filter,vf-vlan-strip,neutron-network-id"/>
                <xml-property name="dependentOn" value="l-interface"/>
                <xml-property name="container" value="sriov-vfs"/>
                <xml-property name="uriTemplate" value="/sriov-vfs/sriov-vf/{pci-id}"/>
            </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-properties>
                        <xml-property name="description" value="IP address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="l3InterfaceIpv4PrefixLength" name="l3-interface-ipv4-prefix-length" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Prefix length, 32 for single address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlanIdInner" name="vlan-id-inner" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Inner VLAN tag"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlanIdOuter" name="vlan-id-outer" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Outer VLAN tag"/>
                    </xml-properties>
                </xml-element>
                <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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </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 the interface that address belongs to"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="neutronSubnetId" name="neutron-subnet-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Neutron id of subnet that address belongs to"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="IPv4 Address Range"/>
                <xml-property name="indexedProps" value="l3-interface-ipv4-address,vlan-id-inner,neutron-network-id,neutron-subnet-id"/>
                <xml-property name="dependentOn" value="vlan,l-interface,vnfc"/>
            <xml-property name="uriTemplate" value="/l3-interface-ipv4-address-list/{l3-interface-ipv4-address}"/>
            </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.v13.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-properties>
                        <xml-property name="description" value="String that identifies the interface"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlanIdInner" name="vlan-id-inner" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Inner VLAN tag"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlanIdOuter" name="vlan-id-outer" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Outer VLAN tag"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </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="vlanDescription" name="vlan-description" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used to describe (the service associated with) the vlan"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="backdoorConnection" name="backdoor-connection" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Whether customer is going to use this VLAN for backdoor connection to another customer premise device."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vpnKey" name="vpn-key" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="This indicates the customers VPN ID associated with this vlan"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="orchestrationStatus" name="orchestration-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Status of a vnf's vlan interface, on which the customer circuit resides, mastered by SDN-C."/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="inMaint" name="in-maint" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether or not this object is in maintenance mode (maintenance mode = true)"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="provStatus" name="prov-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Prov Status of the VLAN configuration related to a logical interface. Valid values [PREPROV/NVTPROV/PROV]."/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="isIpUnnumbered" name="is-ip-unnumbered" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="Flag indicating the interface uses the IP Unnumbered configuration."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="l3InterfaceIpv4AddressList" name="l3-interface-ipv4-address-list" type="inventory.aai.onap.org.v13.L3InterfaceIpv4AddressList"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="l3InterfaceIpv6AddressList" name="l3-interface-ipv6-address-list" type="inventory.aai.onap.org.v13.L3InterfaceIpv6AddressList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Definition of vlan"/>
                <xml-property name="indexedProps" value="vlan-interface,vlan-id-inner,vpn-key"/>
                <xml-property name="dependentOn" value="l-interface"/>
                <xml-property name="container" value="vlans"/>
                <xml-property name="uriTemplate" value="/vlans/vlan/{vlan-interface}"/>
            </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-properties>
                        <xml-property name="description" value="IP address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="l3InterfaceIpv6PrefixLength" name="l3-interface-ipv6-prefix-length" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Prefix length, 128 for single address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlanIdInner" name="vlan-id-inner" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Inner VLAN tag"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlanIdOuter" name="vlan-id-outer" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Outer VLAN tag"/>
                    </xml-properties>
                </xml-element>
                <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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </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 the interface that address belongs to"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="neutronSubnetId" name="neutron-subnet-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Neutron id of subnet that address belongs to"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="IPv6 Address Range"/>
                <xml-property name="indexedProps" value="l3-interface-ipv6-address,vlan-id-inner,neutron-network-id,neutron-subnet-id"/>
                <xml-property name="dependentOn" value="vlan,l-interface,vnfc"/>
            <xml-property name="uriTemplate" value="/l3-interface-ipv6-address-list/{l3-interface-ipv6-address}"/>
            </xml-properties>
        </java-type>

        <java-type name="Volumes">
            <xml-properties>
                <xml-property name="description" value="Collection of ephemeral Block storage volumes."/>
            </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.v13.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 endpoint where AAI can get more details"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Ephemeral Block storage volume."/>
                <xml-property name="indexedProps" value="volume-id"/>
                <xml-property name="dependentOn" value="vserver"/>
                <xml-property name="container" value="volumes"/>
                <xml-property name="uriTemplate" value="/volumes/volume/{volume-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Flavors">
            <xml-properties>
                <xml-property name="description" value="Collection of openstack flavors."/>
            </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.v13.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 cloud-region."/>
                    </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="URL to endpoint where AAI can 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="hpaCapabilities" name="hpa-capabilities" type="inventory.aai.onap.org.v13.HpaCapabilities">
					<xml-properties>
						<xml-property name="description" value="List of flavor specific HPA Capabilities"/>
					</xml-properties>
				</xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Openstack flavor."/>
                <xml-property name="nameProps" value="flavor-name"/>
                <xml-property name="indexedProps" value="flavor-name,flavor-id"/>
                <xml-property name="dependentOn" value="cloud-region"/>
                <xml-property name="container" value="flavors"/>
                <xml-property name="uriTemplate" value="/flavors/flavor/{flavor-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Snapshots">
            <xml-properties>
                <xml-property name="description" value="Collection of openstack snapshots"/>
            </xml-properties>
            <xml-root-element name="snapshots"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="snapshot" name="snapshot" type="inventory.aai.onap.org.v13.Snapshot"/>
            </java-attributes>
        </java-type>

        <java-type name="Snapshot">
            <xml-root-element name="snapshot"/>
            <java-attributes>
                <xml-element java-attribute="snapshotId" name="snapshot-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Snapshot id, this is the key UUID assoc associated in glance with the snapshots."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="snapshotName" name="snapshot-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Snapshot name"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="snapshotArchitecture" name="snapshot-architecture" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Operating system architecture"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="snapshotOsDistro" name="snapshot-os-distro" 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="snapshotOsVersion" name="snapshot-os-version" 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="snapshotSelflink" name="snapshot-selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="URL to endpoint where AAI can get more details"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="prevSnapshotId" name="prev-snapshot-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="This field contains the UUID of the previous snapshot (if any)."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Openstack snapshot"/>
                <xml-property name="nameProps" value="snapshot-name"/>
                <xml-property name="uniqueProps" value="snapshot-id"/>
                <xml-property name="indexedProps" value="application,snapshot-name,application-vendor,snapshot-id,application-version,prev-snapshot-id"/>
                <xml-property name="dependentOn" value="cloud-region"/>
                <xml-property name="container" value="snapshots"/>
                <xml-property name="uriTemplate" value="/snapshots/snapshot/{snapshot-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="GroupAssignments">
            <xml-properties>
                <xml-property name="description" value="Collection of openstack group assignments"/>
            </xml-properties>
            <xml-root-element name="group-assignments"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="groupAssignment" name="group-assignment" type="inventory.aai.onap.org.v13.GroupAssignment"/>
            </java-attributes>
        </java-type>

        <java-type name="GroupAssignment">
            <xml-root-element name="group-assignment"/>
            <java-attributes>
                <xml-element java-attribute="groupId" name="group-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Group id, expected to be unique across cloud-region."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="groupType" name="group-type" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Group type - the type of group this instance refers to"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="groupName" name="group-name" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Group name - name assigned to the group"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="groupDescription" name="group-description" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Group description - description of the group"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Openstack group-assignment used to store exclusivity groups (EG)."/>
                <xml-property name="nameProps" value="group-name"/>
                <xml-property name="indexedProps" value="group-id,group-type,group-name"/>
                <xml-property name="searchable" value="group-id,group-name"/>
                <xml-property name="dependentOn" value="cloud-region"/>
                <xml-property name="container" value="group-assignments"/>
                <xml-property name="uriTemplate" value="/group-assignments/group-assignment/{group-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Images">
            <xml-properties>
                <xml-property name="description" value="Collectio of Openstack images."/>
            </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.v13.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 cloud region"/>
                    </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="URL to endpoint where AAI can get more details"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="metadata" name="metadata" type="inventory.aai.onap.org.v13.Metadata"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Openstack image."/>
                <xml-property name="nameProps" value="image-name"/>
                <xml-property name="indexedProps" value="application,image-name,application-vendor,image-id,application-version"/>
                <xml-property name="dependentOn" value="cloud-region"/>
                <xml-property name="container" value="images"/>
                <xml-property name="uriTemplate" value="/images/image/{image-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Metadata">
            <xml-properties>
                <xml-property name="description" value="Collection of metadatum (key/value pairs)"/>
            </xml-properties>
            <xml-root-element name="metadata"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="metadatum" name="metadatum" type="inventory.aai.onap.org.v13.Metadatum"/>
            </java-attributes>
        </java-type>

        <java-type name="Metadatum">
            <xml-root-element name="metadatum"/>
            <java-attributes>
                <xml-element java-attribute="metaname" name="metaname" required="true" type="java.lang.String" xml-key="true"/>
                <xml-element java-attribute="metaval" name="metaval" required="true" type="java.lang.String"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Key/value pairs"/>
                <xml-property name="indexedProps" value="metaname"/>
                <xml-property name="dependentOn" value="tenant,image,service-instance,connector,model"/>
                <xml-property name="container" value="metadata"/>
                <xml-property name="uriTemplate" value="/metadata/metadatum/{metaname}"/>
            </xml-properties>
        </java-type>

        <java-type name="DvsSwitches">
            <xml-properties>
                <xml-property name="description" value="Collection of digital virtual switch metadata used for vmWare VCEs and GenericVnfs."/>
            </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.v13.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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Digital virtual switch metadata, used by SDN-C to configure VCEs.  A&amp;AI needs to receive this data from the PO deployment team and administer it using the provisioningTool.sh into A&amp;AI. "/>
                <xml-property name="indexedProps" value="vcenter-url,switch-name"/>
                <xml-property name="dependentOn" value="cloud-region"/>
                <xml-property name="container" value="dvs-switches"/>
                <xml-property name="uriTemplate" value="/dvs-switches/dvs-switch/{switch-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="NetworkProfiles">
            <xml-properties>
                <xml-property name="description" value="Collection of network profiles"/>
            </xml-properties>
            <xml-root-element name="network-profiles"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="networkProfile" name="network-profile" type="inventory.aai.onap.org.v13.NetworkProfile"/>
            </java-attributes>
        </java-type>

        <java-type name="NetworkProfile">
            <xml-root-element name="network-profile"/>
            <java-attributes>
                <xml-element java-attribute="nmProfileName" name="nm-profile-name" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique name of network profile."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="communityString" name="community-string" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Encrypted SNMP community string"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Network profile populated by SDN-GP for SNMP"/>
                <xml-property name="indexedProps" value="nm-profile-name"/>
                <xml-property name="container" value="network-profiles"/>
                <xml-property name="namespace" value="cloud-infrastructure"/>
                <xml-property name="uriTemplate" value="/cloud-infrastructure/network-profiles/network-profile/{nm-profile-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="Pservers">
            <xml-properties>
                <xml-property name="description" value="Collection of compute hosts."/>
            </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.v13.Pserver"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="maximumDepth" value="0"/>
            </xml-properties>
        </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="URL to endpoint where AAI can 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="serialNumber" name="serial-number" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Serial number, may be queried"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV4Loopback0" name="ipaddress-v4-loopback-0" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="IPV4 Loopback 0 address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV6Loopback0" name="ipaddress-v6-loopback-0" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="IPV6 Loopback 0 address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV4Aim" name="ipaddress-v4-aim" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="IPV4 AIM address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV6Aim" name="ipaddress-v6-aim" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="IPV6 AIM address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV6Oam" name="ipaddress-v6-oam" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="IPV6 OAM address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="invStatus" name="inv-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="CANOPI's inventory status.  Only set with values exactly as defined by CANOPI."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="pserverId" name="pserver-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ID of Pserver"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="internetTopology" name="internet-topology" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="internet topology of Pserver"/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="inMaint" name="in-maint" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether or not this object is in maintenance mode (maintenance mode = true). This field (in conjunction with prov-status) is used to suppress alarms and vSCL on VNFs/VMs."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="pserverName2" name="pserver-name2" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="alternative pserver name"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="purpose" name="purpose" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="purpose of pserver"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="provStatus" name="prov-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Prov Status of this device (not under canopi control) Valid values [PREPROV/NVTPROV/PROV]"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="managementOption" name="management-option" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Indicates who owns and or manages the device."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="hostProfile" name="host-profile" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The host profile that defines the configuration of the pserver."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="pInterfaces" name="p-interfaces" type="inventory.aai.onap.org.v13.PInterfaces"/>
                <xml-element java-attribute="lagInterfaces" name="lag-interfaces" type="inventory.aai.onap.org.v13.LagInterfaces"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Compute host whose hostname must be unique and must exactly match what is sent as a relationship to a vserver."/>
                <xml-property name="nameProps" value="pserver-name2"/>
                <xml-property name="indexedProps" value="hostname,in-maint,pserver-id,pserver-name2,inv-status"/>
                <xml-property name="searchable" value="hostname,pserver-name2,pserver-id,ipv4-oam-address"/>
                <xml-property name="uniqueProps" value="hostname"/>
                <xml-property name="container" value="pservers"/>
                <xml-property name="namespace" value="cloud-infrastructure"/>
                <xml-property name="uriTemplate" value="/cloud-infrastructure/pservers/pserver/{hostname}"/>
            </xml-properties>
        </java-type>

        <java-type name="PInterfaces">
            <xml-properties>
                <xml-property name="description" value="Collection of physical interfaces."/>
            </xml-properties>
            <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.v13.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-properties>
                        <xml-property name="description" value="Name that identifies the physical interface"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="selflink" name="selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="URL to endpoint where AAI can get more details."/>
                    </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="portDescription" name="port-description" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Nature of the services and connectivity on this port."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="equipmentIdentifier" name="equipment-identifier" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="CLEI or other specification for p-interface hardware."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="interfaceRole" name="interface-role" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Role specification for p-interface hardware."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="interfaceType" name="interface-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Indicates the physical properties of the interface."/>
                    </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="macAddress" name="mac-addresss" type="java.lang.String">
					<xml-properties>
						<xml-property name="description" value="MAC Address of the p-interface." />
					</xml-properties>
				</xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="inMaint" name="in-maint" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether or not this object is in maintenance mode (maintenance mode = true)"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="invStatus" name="inv-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="inventory status"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="sriovPfs" name="sriov-pfs" type="inventory.aai.onap.org.v13.SriovPfs"/>
                <xml-element java-attribute="lInterfaces" name="l-interfaces" type="inventory.aai.onap.org.v13.LInterfaces"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Physical interface (e.g., nic)"/>
                <xml-property name="indexedProps" value="interface-name,prov-status"/>
                <xml-property name="nameProps" value="prov-status"/>
                <xml-property name="dependentOn" value="vpls-pe,pserver,pnf"/>
                <xml-property name="container" value="p-interfaces"/>
                <xml-property name="uriTemplate" value="/p-interfaces/p-interface/{interface-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="LagInterfaces">
            <xml-properties>
                <xml-property name="description" value="Collection of link aggregate interfaces."/>
            </xml-properties>
            <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.v13.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">
                    <xml-properties>
                        <xml-property name="description" value="Name that identifies the link aggregate interface"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="interfaceDescription" name="interface-description" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Human friendly text regarding this interface."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </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="interfaceId" name="interface-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ID of 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="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 default-value="false" java-attribute="inMaint" name="in-maint" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether or not this object is in maintenance mode (maintenance mode = true)"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="lInterfaces" name="l-interfaces" type="inventory.aai.onap.org.v13.LInterfaces"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Link aggregate interface"/>
                <xml-property name="indexedProps" value="interface-name,interface-id,interface-role"/>
                <xml-property name="dependentOn" value="generic-vnf,pserver,vpls-pe,pnf"/>
                <xml-property name="container" value="lag-interfaces"/>
                <xml-property name="uriTemplate" value="/lag-interfaces/lag-interface/{interface-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="OamNetworks">
            <xml-properties>
                <xml-property name="description" value="Collection of OAM networks, to be deprecated shortly.  Do not use for new purposes. "/>
            </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.v13.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 cloud-region"/>
                    </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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="OAM network, to be deprecated shortly.  Do not use for new purposes. "/>
                <xml-property name="nameProps" value="network-name"/>
                <xml-property name="indexedProps" value="cvlan-tag,network-uuid,network-name"/>
                <xml-property name="dependentOn" value="cloud-region"/>
                <xml-property name="container" value="oam-networks"/>
                <xml-property name="uriTemplate" value="/oam-networks/oam-network/{network-uuid}"/>
            </xml-properties>
        </java-type>

        <java-type name="AvailabilityZones">
            <xml-properties>
                <xml-property name="description" value="Collection of availability zones"/>
            </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.v13.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 cloud region"/>
                    </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="operationalStatus" name="operational-status" 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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Availability zone, a collection of compute hosts/pservers"/>
                <xml-property name="indexedProps" value="availability-zone-name"/>
                <xml-property name="dependentOn" value="cloud-region"/>
                <xml-property name="container" value="availability-zones"/>
                <xml-property name="uriTemplate" value="/availability-zones/availability-zone/{availability-zone-name}"/>
            </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.v13.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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.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-name,vdc-id"/>
                <xml-property name="container" value="virtual-data-centers"/>
                <xml-property name="namespace" value="cloud-infrastructure"/>
                <xml-property name="uriTemplate" value="/cloud-infrastructure/virtual-data-centers/virtual-data-center/{vdc-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Business">
            <xml-properties>
                <xml-property name="description" value="Namespace for business related constructs"/>
            </xml-properties>
            <xml-root-element name="business"/>
            <java-attributes>
                <xml-element java-attribute="connectors" name="connectors" type="inventory.aai.onap.org.v13.Connectors"/>
                <xml-element java-attribute="customers" name="customers" type="inventory.aai.onap.org.v13.Customers"/>
                <xml-element java-attribute="linesOfBusiness" name="lines-of-business" type="inventory.aai.onap.org.v13.LinesOfBusiness"/>
                <xml-element java-attribute="owningEntities" name="owning-entities" type="inventory.aai.onap.org.v13.OwningEntities"/>
                <xml-element java-attribute="platforms" name="platforms" type="inventory.aai.onap.org.v13.Platforms"/>
                <xml-element java-attribute="projects" name="projects" type="inventory.aai.onap.org.v13.Projects"/>
            </java-attributes>
        </java-type>

        <java-type name="Projects">
            <xml-properties>
                <xml-property name="description" value="Collection of projects"/>
            </xml-properties>
            <xml-root-element name="projects"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="project" name="project" type="inventory.aai.onap.org.v13.Project"/>
            </java-attributes>
        </java-type>

        <java-type name="Project">
            <xml-root-element name="project"/>
            <java-attributes>
                <xml-element java-attribute="projectName" name="project-name" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Name of the project deploying a service"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="describes the project"/>
                <xml-property name="indexedProps" value="project-name"/>
                <xml-property name="uniqueProps" value="project-name"/>
                <xml-property name="container" value="projects"/>
                <xml-property name="namespace" value="business"/>
                <xml-property name="uriTemplate" value="/business/projects/project/{project-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="Connectors">
            <xml-properties>
                <xml-property name="description" value="Collection of resource instances used to connect a variety of disparate inventory widgets"/>
            </xml-properties>
            <xml-root-element name="connectors"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="connector" name="connector" type="inventory.aai.onap.org.v13.Connector"/>
            </java-attributes>
        </java-type>

        <java-type name="Connector">
            <xml-root-element name="connector"/>
            <java-attributes>
                <xml-element java-attribute="resourceInstanceId" name="resource-instance-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique id of resource instance."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model id for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelId" name="widget-model-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary widget model. This maps directly to the A&amp;AI widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelVersion" name="widget-model-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary version of the widget model.This maps directly to the A&amp;AI version of the widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="metadata" name="metadata" type="inventory.aai.onap.org.v13.Metadata"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Collection of resource instances used to connect a variety of disparate inventory widgets"/>
                <xml-property name="indexedProps" value="resource-instance-id,model-invariant-id,model-version-id,widget-model-id,widget-model-version"/>
                <xml-property name="container" value="connectors"/>
                <xml-property name="namespace" value="business"/>
                <xml-property name="uriTemplate" value="/business/connectors/connector/{resource-instance-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Customers">
            <xml-properties>
                <xml-property name="description" value="Collection of customer identifiers to provide linkage back to BSS information."/>
            </xml-properties>
            <xml-root-element name="customers"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="customer" name="customer" type="inventory.aai.onap.org.v13.Customer"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="maximumDepth" value="0"/>
            </xml-properties>
        </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="subscriberType" name="subscriber-type" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Subscriber type, a way to provide VID with only the INFRA customers."/>
                        <xml-property name="defaultValue" value="CUST"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceSubscriptions" name="service-subscriptions" type="inventory.aai.onap.org.v13.ServiceSubscriptions"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="customer identifiers to provide linkage back to BSS information."/>
                <xml-property name="nameProps" value="subscriber-name"/>
                <xml-property name="indexedProps" value="subscriber-name,global-customer-id,subscriber-type"/>
                <xml-property name="searchable" value="global-customer-id,subscriber-name"/>
                <xml-property name="uniqueProps" value="global-customer-id"/>
                <xml-property name="container" value="customers"/>
                <xml-property name="namespace" value="business"/>
                <xml-property name="uriTemplate" value="/business/customers/customer/{global-customer-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="LinesOfBusiness">
            <xml-properties>
                <xml-property name="description" value="Collection of lines-of-business"/>
            </xml-properties>
            <xml-root-element name="lines-of-business"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="lineOfBusiness" name="line-of-business" type="inventory.aai.onap.org.v13.LineOfBusiness"/>
            </java-attributes>
        </java-type>

        <java-type name="LineOfBusiness">
            <xml-root-element name="line-of-business"/>
            <java-attributes>
                <xml-element java-attribute="lineOfBusinessName" name="line-of-business-name" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Name of the line-of-business (product)"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="describes a line-of-business"/>
                <xml-property name="indexedProps" value="line-of-business-name"/>
                <xml-property name="uniqueProps" value="line-of-business-name"/>
                <xml-property name="container" value="lines-of-business"/>
                <xml-property name="namespace" value="business"/>
                <xml-property name="uriTemplate" value="/business/lines-of-business/line-of-business/{line-of-business-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="OwningEntities">
            <xml-properties>
                <xml-property name="description" value="Collection of owning-entities"/>
            </xml-properties>
            <xml-root-element name="owning-entities"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="owningEntity" name="owning-entity" type="inventory.aai.onap.org.v13.OwningEntity"/>
            </java-attributes>
        </java-type>

        <java-type name="OwningEntity">
            <xml-root-element name="owning-entity"/>
            <java-attributes>
                <xml-element java-attribute="owningEntityId" name="owning-entity-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="UUID of an owning entity"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="owningEntityName" name="owning-entity-name" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Owning entity name"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="describes an owning-entity"/>
                <xml-property name="indexedProps" value="owning-entity-id,owning-entity-name"/>
                <xml-property name="searchable" value="owning-entity-id"/>
                <xml-property name="uniqueProps" value="owning-entity-id,owning-entity-name"/>
                <xml-property name="container" value="owning-entities"/>
                <xml-property name="namespace" value="business"/>
                <xml-property name="uriTemplate" value="/business/owning-entities/owning-entity/{owning-entity-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Platforms">
            <xml-properties>
                <xml-property name="description" value="Collection of platforms"/>
            </xml-properties>
            <xml-root-element name="platforms"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="platform" name="platform" type="inventory.aai.onap.org.v13.Platform"/>
            </java-attributes>
        </java-type>

        <java-type name="Platform">
            <xml-root-element name="platform"/>
            <java-attributes>
                <xml-element java-attribute="platformName" name="platform-name" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Name of the platform"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="describes a platform"/>
                <xml-property name="indexedProps" value="platform-name"/>
                <xml-property name="uniqueProps" value="platform-name"/>
                <xml-property name="container" value="platforms"/>
                <xml-property name="namespace" value="business"/>
                <xml-property name="uriTemplate" value="/business/platforms/platform/{platform-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="ServiceSubscriptions">
            <xml-properties>
                <xml-property name="description" value="Collection of objects that group service instances."/>
            </xml-properties>
            <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.v13.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="tempUbSubAccountId" name="temp-ub-sub-account-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="This property will be deleted from A&amp;AI in the near future. Only stop gap solution."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceInstances" name="service-instances" type="inventory.aai.onap.org.v13.ServiceInstances">
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Object that group service instances."/>
                <xml-property name="indexedProps" value="service-type"/>
                <xml-property name="dependentOn" value="customer"/>
                <xml-property name="container" value="service-subscriptions"/>
                <xml-property name="crossEntityReference" value="service-instance,service-type"/>
                <xml-property name="uriTemplate" value="/service-subscriptions/service-subscription/{service-type}"/>
            </xml-properties>
        </java-type>

        <java-type name="ServiceInstances">
            <xml-properties>
                <xml-property name="description" value="Collection of service instances"/>
            </xml-properties>
            <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.v13.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="Uniquely identifies this instance of a service"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceInstanceName" name="service-instance-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="This field will store a name assigned to the service-instance."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceType" name="service-type" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="String capturing type of service."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceRole" name="service-role" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="String capturing the service role."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="environmentContext" name="environment-context" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="This field will store the environment context assigned to the service-instance."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="workloadContext" name="workload-context" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="This field will store the workload context assigned to the service-instance."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="createdAt" name="created-at" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="create time of Network Service." />
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="updatedAt" name="updated-at" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="last update of Network Service." />
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="description" name="description" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="short description for service-instance." />
                    </xml-properties>
                </xml-element>
                <!-- for storing the nsd_id create edge between services -->
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model id for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="personaModelVersion" name="persona-model-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="internal"/>
                        <xml-property name="dataCopy" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}#model-version"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelId" name="widget-model-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary widget model. This maps directly to the A&amp;AI widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelVersion" name="widget-model-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary version of the widget model.This maps directly to the A&amp;AI version of the widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="bandwidthTotal" name="bandwidth-total" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Indicates the total bandwidth to be used for this service."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="bandwidthUpWan1" name="bandwidth-up-wan1" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="indicates the upstream bandwidth this service will use on the WAN1 port of the physical device."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="bandwidthDownWan1" name="bandwidth-down-wan1" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="indicates the downstream bandwidth this service will use on the WAN1 port of the physical device."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="bandwidthUpWan2" name="bandwidth-up-wan2" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="indicates the upstream bandwidth this service will use on the WAN2 port of the physical device."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="bandwidthDownWan2" name="bandwidth-down-wan2" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="indicates the downstream bandwidth this service will use on the WAN2 port of the physical device."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vhnPortalUrl" name="vhn-portal-url" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="URL customers will use to access the vHN Portal."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceInstanceLocationId" name="service-instance-location-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="An identifier that customers assign to the location where this service is being used."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="selflink" name="selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Path to the controller object."/>
                    </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 service."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="metadata" name="metadata" type="inventory.aai.onap.org.v13.Metadata"/>
                <xml-element java-attribute="allottedResources" name="allotted-resources" type="inventory.aai.onap.org.v13.AllottedResources"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Instance of a service"/>
                <xml-property name="indexedProps" value="service-instance-id,model-invariant-id,model-version-id,widget-model-id,widget-model-version,service-instance-name,service-instance-location-id,orchestration-status,environment-context,workload-context"/>
                <xml-property name="nameProps" value="service-instance-name"/>
                <xml-property name="searchable" value="service-instance-id,service-instance-name"/>
                <xml-property name="uniqueProps" value="service-instance-id"/>
                <xml-property name="dependentOn" value="service-subscription"/>
                <xml-property name="container" value="service-instances"/>
                <xml-property name="uriTemplate" value="/service-instances/service-instance/{service-instance-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="ServiceDesignAndCreation">
            <xml-properties>
                <xml-property name="description" value="Namespace for objects managed by ASDC"/>
            </xml-properties>
            <xml-root-element name="service-design-and-creation"/>
            <java-attributes>
                <xml-element java-attribute="vnfImages" name="vnf-images" type="inventory.aai.onap.org.v13.VnfImages"/>
                <xml-element java-attribute="services" name="services" type="inventory.aai.onap.org.v13.Services"/>
                <xml-element java-attribute="serviceCapabilities" name="service-capabilities" type="inventory.aai.onap.org.v13.ServiceCapabilities"/>
                <xml-element java-attribute="models" name="models" type="inventory.aai.onap.org.v13.Models"/>
                <xml-element java-attribute="namedQueries" name="named-queries" type="inventory.aai.onap.org.v13.NamedQueries"/>
            </java-attributes>
        </java-type>

        <java-type name="VnfImages">
            <xml-properties>
                <xml-property name="description" value="Collection of image objects that pertain to a VNF that doesn't have associated vservers.  This is a kludge."/>
            </xml-properties>
            <xml-root-element name="vnf-images"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="vnfImage" name="vnf-image" type="inventory.aai.onap.org.v13.VnfImage"/>
            </java-attributes>
        </java-type>

        <java-type name="VnfImage">
            <xml-root-element name="vnf-image"/>
            <java-attributes>
                <xml-element java-attribute="vnfImageUuid" name="vnf-image-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique ID of this asset"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="application" name="application" required="true" 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" required="true" 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="selflink" name="selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="URL to endpoint where AAI can get more details"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Image object that pertain to a VNF that doesn't have associated vservers.  This is a kludge."/>
                <xml-property name="indexedProps" value="application,vnf-image-uuid,application-vendor,application-version"/>
                <xml-property name="uniqueProps" value="vnf-image-uuid"/>
                <xml-property name="container" value="vnf-images"/>
                <xml-property name="namespace" value="service-design-and-creation"/>
                <xml-property name="uriTemplate" value="/service-design-and-creation/vnf-images/vnf-image/{vnf-image-uuid}"/>
            </xml-properties>
        </java-type>

        <java-type name="Services">
            <xml-properties>
                <xml-property name="description" value="Collection of service model definitions.  Likely to be deprecated in favor of models from ASDC."/>
            </xml-properties>
            <xml-root-element name="services"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="service" name="service" type="inventory.aai.onap.org.v13.Service"/>
            </java-attributes>
        </java-type>

        <java-type name="Service">
            <xml-root-element name="service"/>
            <java-attributes>
                <xml-element java-attribute="serviceId" name="service-id" 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="serviceDescription" name="service-description" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Description of the service"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceSelflink" name="service-selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="URL to endpoint where AAI can get more details"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceVersion" name="service-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="service version"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Stand-in for service model definitions.  Likely to be deprecated in favor of models from ASDC.  Does not strictly map to ASDC services."/>
                <xml-property name="indexedProps" value="service-description,service-id"/>
                <xml-property name="container" value="services"/>
                <xml-property name="namespace" value="service-design-and-creation"/>
                <xml-property name="uriTemplate" value="/service-design-and-creation/services/service/{service-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="ServiceCapabilities">
            <xml-properties>
                <xml-property name="description" value="Collection of service capabilities."/>
            </xml-properties>
            <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.v13.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="String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Early definition of server/resource pairings, likely to be replaced by models.  No new use should be made of this."/>
                <xml-property name="indexedProps" value="service-type,vnf-type"/>
                <xml-property name="container" value="service-capabilities"/>
                <xml-property name="namespace" value="service-design-and-creation"/>
                <xml-property name="uriTemplate" value="/service-design-and-creation/service-capabilities/service-capability/{service-type}/{vnf-type}"/>
            </xml-properties>
        </java-type>

        <java-type name="Network">
            <xml-properties>
                <xml-property name="description" value="Namespace for network inventory resources."/>
            </xml-properties>
            <xml-root-element name="network"/>
            <java-attributes>
                <xml-element java-attribute="logicalLinks" name="logical-links" type="inventory.aai.onap.org.v13.LogicalLinks"/>
                <xml-element java-attribute="sitePairSets" name="site-pair-sets" type="inventory.aai.onap.org.v13.SitePairSets"/>
                <xml-element java-attribute="vpnBindings" name="vpn-bindings" type="inventory.aai.onap.org.v13.VpnBindings"/>
                <xml-element java-attribute="vplsPes" name="vpls-pes" type="inventory.aai.onap.org.v13.VplsPes"/>
                <xml-element java-attribute="multicastConfigurations" name="multicast-configurations" type="inventory.aai.onap.org.v13.MulticastConfigurations"/>
                <xml-element java-attribute="vces" name="vces" type="inventory.aai.onap.org.v13.Vces"/>
                <xml-element java-attribute="vnfcs" name="vnfcs" type="inventory.aai.onap.org.v13.Vnfcs"/>
                <xml-element java-attribute="l3Networks" name="l3-networks" type="inventory.aai.onap.org.v13.L3Networks"/>
                <xml-element java-attribute="networkPolicies" name="network-policies" type="inventory.aai.onap.org.v13.NetworkPolicies"/>
                <xml-element java-attribute="genericVnfs" name="generic-vnfs" type="inventory.aai.onap.org.v13.GenericVnfs"/>
                <xml-element java-attribute="lagLinks" name="lag-links" type="inventory.aai.onap.org.v13.LagLinks"/>
                <xml-element java-attribute="newvces" name="newvces" type="inventory.aai.onap.org.v13.Newvces"/>
                <xml-element java-attribute="pnfs" name="pnfs" type="inventory.aai.onap.org.v13.Pnfs"/>
                <xml-element java-attribute="physicalLinks" name="physical-links" type="inventory.aai.onap.org.v13.PhysicalLinks"/>
                <xml-element java-attribute="ipsecConfigurations" name="ipsec-configurations" type="inventory.aai.onap.org.v13.IpsecConfigurations"/>
                <xml-element java-attribute="routeTableReferences" name="route-table-references" type="inventory.aai.onap.org.v13.RouteTableReferences"/>
                <xml-element java-attribute="instanceGroups" name="instance-groups" type="inventory.aai.onap.org.v13.InstanceGroups"/>
                <xml-element java-attribute="zones" name="zones" type="inventory.aai.onap.org.v13.Zones"/>
                <xml-element java-attribute="configurations" name="configurations" type="inventory.aai.onap.org.v13.Configurations"/>
                <xml-element java-attribute="forwardingPaths" name="forwarding-paths" type="inventory.aai.onap.org.v13.ForwardingPaths"/>
                <xml-element java-attribute="collections" name="collections" type="inventory.aai.onap.org.v13.Collections"/>
            </java-attributes>
        </java-type>
        <java-type name="Configurations">
            <xml-properties>
                <xml-property name="description" value="Collection of configurations"/>
            </xml-properties>
            <xml-root-element name="configurations"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="configuration" name="configuration" type="inventory.aai.onap.org.v13.Configuration"/>
            </java-attributes>
        </java-type>

        <java-type name="Configuration">
            <xml-root-element name="configuration"/>
            <java-attributes>
                <xml-element java-attribute="configurationId" name="configuration-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="UUID assigned to configuration."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="managementOption" name="management-option" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Indicates the entity that will manage this feature. Could be an organization or the name of the application as well."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="configurationName" name="configuration-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Name of the configuration."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="configurationType" name="configuration-type" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="port-mirroring-configuration."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="configurationSubType" name="configuration-sub-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="vprobe, pprobe."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model id for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </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 the configuration."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="operationalStatus" name="operational-status" 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="configurationSelflink" name="configuration-selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="URL to endpoint where AAI can get more details from SDN-GC."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelCustomizationId" name="model-customization-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="id of  the configuration used to customize the resource"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="tunnelBandwidth" name="tunnel-bandwidth" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="DHV Site Effective Bandwidth"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vendorAllowedMaxBandwidth" name="vendor-allowed-max-bandwidth" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Velocloud Nominal Throughput - VNT"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="metadata" name="metadata" type="inventory.aai.onap.org.v13.Metadata"/>
                <xml-element java-attribute="forwarderEvcs" name="forwarder-evcs" type="inventory.aai.onap.org.v13.ForwarderEvcs"/>
                <xml-element java-attribute="evcs" name="evcs" type="inventory.aai.onap.org.v13.Evcs"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Generic configuration object."/>
                <xml-property name="indexedProps" value="configuration-id,model-invariant-id,model-version-id"/>
                <xml-property name="uniqueProps" value="configuration-id"/>
                <xml-property name="container" value="configurations"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/configurations/configuration/{configuration-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="LogicalLinks">
            <xml-properties>
                <xml-property name="description" value="Collection of logical connections"/>
            </xml-properties>
            <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.v13.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 default-value="false" java-attribute="inMaint" name="in-maint" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether or not this object is in maintenance mode (maintenance mode = true). This field (in conjunction with prov-status) is used to suppress alarms and vSCL on VNFs/VMs."/>
                    </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" />
                    </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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model id for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelId" name="widget-model-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary widget model. This maps directly to the A&amp;AI widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelVersion" name="widget-model-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary version of the widget model.This maps directly to the A&amp;AI version of the widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="operationalStatus" name="operational-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Indication of operational status of the logical link."/>
                    </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="linkRole" name="link-role" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Indication of the network use of the logical link."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="linkName2" name="link-name2" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Alias or alternate name (CLCI or D1 name)."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="linkId" name="link-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="UUID of the logical-link, SDNC generates this."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="circuitId" name="circuit-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Circuit id"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="purpose" name="purpose" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Reason for this entity, role it is playing"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Logical links generally connect l-interfaces but are used to express logical connectivity between two points"/>
                <xml-property name="indexedProps" value="link-name,model-invariant-id,model-version-id,widget-model-id,widget-model-version,link-id,prov-status,circuit-id,purpose"/>
                <xml-property name="uniqueProps" value="link-id"/>
                <xml-property name="container" value="logical-links"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="searchable" value="link-name"/>
                <xml-property name="uriTemplate" value="/network/logical-links/logical-link/{link-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="SitePairSets">
            <xml-properties>
                <xml-property name="description" value="Collection of sets of instances for probes related to generic-vnf"/>
            </xml-properties>
            <xml-root-element name="site-pair-sets"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="sitePairSet" name="site-pair-set" type="inventory.aai.onap.org.v13.SitePairSet"/>
            </java-attributes>
        </java-type>

        <java-type name="SitePairSet">
            <xml-root-element name="site-pair-set"/>
            <java-attributes>
                <xml-element java-attribute="sitePairSetId" name="site-pair-set-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique id of site pair set."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="routingInstances" name="routing-instances" type="inventory.aai.onap.org.v13.RoutingInstances"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Set of instances for probes used to measure service level agreements"/>
                <xml-property name="indexedProps" value="site-pair-set-id"/>
                <xml-property name="uniqueProps" value="site-pair-set-id"/>
                <xml-property name="container" value="site-pair-sets"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/site-pair-sets/site-pair-set/{site-pair-set-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="RoutingInstances">
            <xml-properties>
                <xml-property name="description" value="set of probes related to generic-vnf routing instance"/>
            </xml-properties>
            <xml-root-element name="routing-instances"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="routingInstance" name="routing-instance" type="inventory.aai.onap.org.v13.RoutingInstance"/>
            </java-attributes>
        </java-type>

        <java-type name="RoutingInstance">
            <xml-root-element name="routing-instance"/>
            <java-attributes>
                <xml-element java-attribute="routingInstanceId" name="routing-instance-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique id of routing instance"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="rpmOwner" name="rpm-owner" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="rpm owner"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="sitePairs" name="site-pairs" type="inventory.aai.onap.org.v13.SitePairs"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="indexedProps" value="routing-instance-id"/>
                <xml-property name="dependentOn" value="site-pair-set"/>
                <xml-property name="container" value="routing-instances"/>
                <xml-property name="uriTemplate" value="/routing-instances/routing-instance/{routing-instance-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="SitePairs">
            <xml-properties>
                <xml-property name="description" value="probe within a set"/>
            </xml-properties>
            <xml-root-element name="site-pairs"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="sitePair" name="site-pair" type="inventory.aai.onap.org.v13.SitePair"/>
            </java-attributes>
        </java-type>

        <java-type name="SitePair">
            <xml-root-element name="site-pair"/>
            <java-attributes>
                <xml-element java-attribute="sitePairId" name="site-pair-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="unique identifier of probe"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="sourceIp" name="source-ip" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Prefix address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="destinationIp" name="destination-ip" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Prefix address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipVersion" name="ip-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ip version, v4, v6"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="destinationHostname" name="destination-hostname" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Hostname of the destination equipment to which SLAs are measured against."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="destinationEquipType" name="destination-equip-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The type of destinatination equipment. Could be Router, UCPE, etc."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="classesOfService" name="classes-of-service" type="inventory.aai.onap.org.v13.ClassesOfService"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="indexedProps" value="site-pair-id"/>
                <xml-property name="uniqueProps" value="site-pair-id"/>
                <xml-property name="dependentOn" value="routing-instance"/>
                <xml-property name="container" value="site-pairs"/>
                <xml-property name="uriTemplate" value="/site-pairs/site-pair/{site-pair-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="ClassesOfService">
            <xml-properties>
                <xml-property name="description" value="class-of-service of probe"/>
            </xml-properties>
            <xml-root-element name="classes-of-service"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="classOfService" name="class-of-service" type="inventory.aai.onap.org.v13.ClassOfService"/>
            </java-attributes>
        </java-type>

        <java-type name="ClassOfService">
            <xml-root-element name="class-of-service"/>
            <java-attributes>
                <xml-element java-attribute="cos" name="cos" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="unique identifier of probe"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="probeId" name="probe-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="identifier of probe"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="probeType" name="probe-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="type of probe"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="indexedProps" value="cos"/>
                <xml-property name="dependentOn" value="site-pair"/>
                <xml-property name="container" value="classes-of-service"/>
                <xml-property name="uriTemplate" value="/classes-of-service/class-of-service/{cos}"/>
            </xml-properties>
        </java-type>

        <java-type name="VpnBindings">
            <xml-root-element name="vpn-bindings"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="vpnBinding" name="vpn-binding" type="inventory.aai.onap.org.v13.VpnBinding"/>
            </java-attributes>
        </java-type>

        <java-type name="VpnBinding">
            <xml-root-element name="vpn-binding"/>
            <java-attributes>
                <xml-element java-attribute="vpnId" name="vpn-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="VPN ID, globally unique within A&amp;AI"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vpnName" name="vpn-name" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="VPN Name"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vpnPlatform" name="vpn-platform" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the platform associated with the VPN example AVPN, Mobility"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vpnType" name="vpn-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Type of the vpn, should be taken from enumerated/valid values"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vpnRegion" name="vpn-region" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="region of customer vpn"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="customerVpnId" name="customer-vpn-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="id for this customer vpn"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="routeDistinguisher" name="route-distinguisher" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used to distinguish the distinct VPN routes of separate customers who connect to the provider in an MPLS network."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="routeTargets" name="route-targets" type="inventory.aai.onap.org.v13.RouteTargets"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList">
                    <xml-properties>
                        <xml-property name="description" value="l3-networks relate to vpn-bindings"/>
                    </xml-properties>
                </xml-element>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="VPN binding"/>
                <xml-property name="nameProps" value="vpn-name,vpn-type"/>
                <xml-property name="indexedProps" value="vpn-name,vpn-id,vpn-type"/>
                <xml-property name="searchable" value="vpn-id,vpn-name"/>
                <xml-property name="uniqueProps" value="vpn-id"/>
                <xml-property name="container" value="vpn-bindings"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/vpn-bindings/vpn-binding/{vpn-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="VplsPes">
            <xml-properties>
                <xml-property name="description" value="Collection of VPLS Provider Edge routers"/>
            </xml-properties>
            <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.v13.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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="pInterfaces" name="p-interfaces" type="inventory.aai.onap.org.v13.PInterfaces"/>
                <xml-element java-attribute="lagInterfaces" name="lag-interfaces" type="inventory.aai.onap.org.v13.LagInterfaces"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="VPLS Provider Edge routers."/>
                <xml-property name="indexedProps" value="prov-status,equipment-name"/>
                <xml-property name="container" value="vpls-pes"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/vpls-pes/vpls-pe/{equipment-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="MulticastConfigurations">
            <xml-properties>
                <xml-property name="description" value="multicast configuration of generic-vnf ip-address"/>
            </xml-properties>
            <xml-root-element name="multicast-configurations"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="multicastConfiguration" name="multicast-configuration" type="inventory.aai.onap.org.v13.MulticastConfiguration"/>
            </java-attributes>
        </java-type>

        <java-type name="MulticastConfiguration">
            <xml-root-element name="multicast-configuration"/>
            <java-attributes>
                <xml-element java-attribute="multicastConfigurationId" name="multicast-configuration-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique id of multicast configuration."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="multicastProtocol" name="multicast-protocol" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="protocol of multicast configuration"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="rpType" name="rp-type" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="rp type of multicast configuration"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="indexedProps" value="multicast-configuration-id"/>
                <xml-property name="uniqueProps" value="multicast-configuration-id"/>
                <xml-property name="container" value="multicast-configurations"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/multicast-configurations/multicast-configuration/{multicast-configuration-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Vces">
            <xml-properties>
                <xml-property name="description" value="Collection of Virtual Customer Edge Routers, used specifically for Gamma.  This object is deprecated."/>
            </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.v13.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="String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceId" name="service-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Unique identifier of service, does not strictly map to ASDC services, SOON TO BE DEPRECATED."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="regionalResourceZone" name="regional-resource-zone" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Regional way of organizing pservers, source of truth should define values"/>
                    </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="operationalStatus" name="operational-status" 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="OBSOLETE -  do not use"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="equipmentRole" name="equipment-role" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Network role being played by this VNF"/>
                    </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, mastered 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="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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipv4Loopback0Address" name="ipv4-loopback0-address" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Loopback0 address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="entitlementResourceUuid" name="entitlement-resource-uuid" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="OBSOLETE -  see child relationships"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="portGroups" name="port-groups" type="inventory.aai.onap.org.v13.PortGroups"/>
                <xml-element java-attribute="licenses" name="licenses" type="inventory.aai.onap.org.v13.Licenses"/>
                <xml-element java-attribute="entitlements" name="entitlements" type="inventory.aai.onap.org.v13.Entitlements"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Virtual Customer Edge Router, used specifically for Gamma.  This object is deprecated."/>
                <xml-property name="nameProps" value="vnf-name"/>
                <xml-property name="indexedProps" value="vnf-name,vnf-name2,vnf-type,heat-stack-id,vnf-id,interface-name,regional-resource-zone,vpe-id,prov-status,service-id"/>
                <xml-property name="searchable" value="vnf-id,vnf-name,vnf-name2"/>
                <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-property name="uriTemplate" value="/network/vces/vce/{vnf-id}"/>
            </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.v13.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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </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, mastered 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.v13.CvlanTags"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </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="port-group-id,heat-stack-id,interface-id,interface-name,switch-name"/>
                <xml-property name="dependentOn" value="vce"/>
                <xml-property name="container" value="port-groups"/>
                <xml-property name="uriTemplate" value="/port-groups/port-group/{interface-id}"/>
            </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.v13.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>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </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-property name="uriTemplate" value="/cvlan-tags/cvlan-tag/{cvlan-tag-cvlan-tag}"/>
            </xml-properties>
        </java-type>


        <java-type name="Vnfcs">
            <xml-properties>
                <xml-property name="description" value="virtual network components associated with a vserver from application controller."/>
            </xml-properties>
            <xml-root-element name="vnfcs"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="vnfc" name="vnfc" type="inventory.aai.onap.org.v13.Vnfc"/>
            </java-attributes>
        </java-type>

        <java-type name="Vnfc">
            <xml-root-element name="vnfc"/>
            <java-attributes>
                <xml-element java-attribute="vnfcName" name="vnfc-name" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique ID of vnfc."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nfcNamingCode" name="nfc-naming-code" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Short code that is used in naming instances of the item being modeled"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nfcFunction" name="nfc-function" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="English description of function that the specific resource deployment is providing. Assigned as part of the customization of a resource in a service"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="provStatus" name="prov-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="prov status of this vnfc"/>
                    </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, mastered by APP-C"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV4OamVip" name="ipaddress-v4-oam-vip" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Oam V4 vip address of this vnfc"/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="inMaint" name="in-maint" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether or not this object is in maintenance mode (maintenance mode = true)"/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="isClosedLoopDisabled" name="is-closed-loop-disabled" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether closed loop function is enabled on this node"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="groupNotation" name="group-notation" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Group notation of VNFC"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model id for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="l3InterfaceIpv4AddressList" name="l3-interface-ipv4-address-list" type="inventory.aai.onap.org.v13.L3InterfaceIpv4AddressList"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="l3InterfaceIpv6AddressList" name="l3-interface-ipv6-address-list" type="inventory.aai.onap.org.v13.L3InterfaceIpv6AddressList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="indexedProps" value="vnfc-name,prov-status,nfc-function,nfc-naming-code,ipaddress-v4-oam-vip,in-maint,is-closed-loop-disabled,group-notation,model-invariant-id,model-version-id"/>
                <xml-property name="searchable" value="vnfc-name"/>
                <xml-property name="container" value="vnfcs"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/vnfcs/vnfc/{vnfc-name}"/>
            </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.v13.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, should be uuid. Unique across A&amp;AI."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="networkName" name="network-name" 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="networkRole" name="network-role" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Role the network plans - who defines these values?"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="networkTechnology" name="network-technology" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Network technology - who defines these values?"/>
                    </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 default-value="false" java-attribute="isBoundToVpn" name="is-bound-to-vpn" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="Set to true if bound to VPN"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceId" name="service-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Unique identifier of service from ASDC.  Does not strictly map to ASDC services.  SOON TO BE DEPRECATED"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="networkRoleInstance" name="network-role-instance" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="network role instance"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </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, mastered 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="contrailNetworkFqdn" name="contrail-network-fqdn" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Contrail FQDN for the network"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model id for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="personaModelVersion" name="persona-model-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="internal"/>
                        <xml-property name="dataCopy" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}#model-version"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelCustomizationId" name="model-customization-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="captures the id of all the configuration used to customize the resource for the service."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelId" name="widget-model-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary widget model. This maps directly to the A&amp;AI widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelVersion" name="widget-model-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary version of the widget model.This maps directly to the A&amp;AI version of the widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="physicalNetworkName" name="physical-network-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Name associated with the physical network."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="isProviderNetwork" name="is-provider-network" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="boolean indicatating whether or not network is a provider network."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="isSharedNetwork" name="is-shared-network" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="boolean indicatating whether or not network is a shared network."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="isExternalNetwork" name="is-external-network" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="boolean indicatating whether or not network is an external network."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="selflink" name="selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Path to the controller object."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="operationalStatus" name="operational-status" 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="subnets" name="subnets" type="inventory.aai.onap.org.v13.Subnets"/>
                <xml-element java-attribute="ctagAssignments" name="ctag-assignments" type="inventory.aai.onap.org.v13.CtagAssignments"/>
                <xml-element java-attribute="segmentationAssignments" name="segmentation-assignments" type="inventory.aai.onap.org.v13.SegmentationAssignments"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList">
                    <xml-properties>
                        <xml-property name="description" value="Relates to tenant (or is it a child of tenant), complex, service, vpn-binding"/>
                    </xml-properties>
                </xml-element>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Generic network definition"/>
                <xml-property name="nameProps" value="network-name"/>
                <xml-property name="indexedProps" value="heat-stack-id,network-uuid,service-id,network-id,network-name,model-invariant-id,model-version-id,widget-model-id,widget-model-version,contrail-network-fqdn,network-role"/>
                <xml-property name="searchable" value="network-id,network-name"/>
                <xml-property name="uniqueProps" value="network-id"/>
                <xml-property name="container" value="l3-networks"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/l3-networks/l3-network/{network-id}"/>
            </xml-properties>
        </java-type>
        <java-type name="NetworkPolicies">
            <xml-root-element name="network-policies"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="networkPolicy" name="network-policy" type="inventory.aai.onap.org.v13.NetworkPolicy"/>
            </java-attributes>
        </java-type>
        <java-type name="NetworkPolicy">
            <xml-root-element name="network-policy"/>
            <java-attributes>
                <xml-element java-attribute="networkPolicyId" name="network-policy-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="UUID representing unique key to this instance"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="networkPolicyFqdn" name="network-policy-fqdn" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Contrail FQDN for the policy"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="heatStackId" name="heat-stack-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ID for the openStack Heat instance"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="nameProps" value="network-policy-fqdn"/>
                <xml-property name="indexedProps" value="network-policy-id,network-policy-fqdn"/>
                <xml-property name="searchable" value="network-policy-id,network-policy-fqdn"/>
                <xml-property name="uniqueProps" value="network-policy-id"/>
                <xml-property name="container" value="network-policies"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/network-policies/network-policy/{network-policy-id}"/>
            </xml-properties>
        </java-type>
        <java-type name="CtagAssignments">
            <xml-root-element name="ctag-assignments"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="ctagAssignment" name="ctag-assignment" type="inventory.aai.onap.org.v13.CtagAssignment"/>
            </java-attributes>
        </java-type>

        <java-type name="CtagAssignment">
            <xml-root-element name="ctag-assignment"/>
            <java-attributes>
                <xml-element java-attribute="vlanIdInner" name="vlan-id-inner" required="true" type="java.lang.Long" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="id."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="indexedProps" value="vlan-id-inner"/>
                <xml-property name="dependentOn" value="l3-network"/>
                <xml-property name="container" value="ctag-assignments"/>
                <xml-property name="uriTemplate" value="/ctag-assignments/ctag-assignment/{vlan-id-inner}"/>
            </xml-properties>
        </java-type>

        <java-type name="Subnets">
            <xml-root-element name="subnets"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="subnet" name="subnet" type="inventory.aai.onap.org.v13.Subnet"/>
            </java-attributes>
        </java-type>

        <java-type name="Subnet">
            <xml-root-element name="subnet"/>
            <java-attributes>
                <xml-element java-attribute="subnetId" name="subnet-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Subnet ID, should be UUID."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="subnetName" name="subnet-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Name associated with the subnet."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="neutronSubnetId" name="neutron-subnet-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Neutron id of this subnet"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="gatewayAddress" name="gateway-address" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="gateway ip address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="networkStartAddress" name="network-start-address" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="network start address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="cidrMask" name="cidr-mask" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="cidr mask"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipVersion" name="ip-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ip version"/>
                    </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, mastered by MSO"/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="dhcpEnabled" name="dhcp-enabled" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="dhcp enabled"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="dhcpStart" name="dhcp-start" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the start address reserved for use by dhcp"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="dhcpEnd" name="dhcp-end" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the last address reserved for use by dhcp"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="subnetRole" name="subnet-role" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="role of the subnet, referenced when assigning IPs"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipAssignmentDirection" name="ip-assignment-direction" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ip address assignment direction of the subnet"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="subnetSequence" name="subnet-sequence" type="java.lang.Integer">
                    <xml-properties>
                        <xml-property name="description" value="sequence of the subnet"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="hostRoutes" name="host-routes" type="inventory.aai.onap.org.v13.HostRoutes"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="indexedProps" value="subnet-id,subnet-name"/>
                <xml-property name="nameProps" value="subnet-name"/>
                <xml-property name="uniqueProps" value="subnet-id"/>
                <xml-property name="dependentOn" value="l3-network"/>
                <xml-property name="container" value="subnets"/>
                <xml-property name="uriTemplate" value="/subnets/subnet/{subnet-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="GenericVnfs">
            <xml-properties>
                <xml-property name="description" value="Collection of VNFs"/>
            </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.v13.GenericVnf"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="maximumDepth" value="0"/>
            </xml-properties>
        </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="vnfInstanceId" name="vnf-instance-id" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="vnf instance id." />
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vnfName" name="vnf-name" 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="String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceId" name="service-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Unique identifier of service, does not necessarily map to ASDC service models.  SOON TO BE DEPRECATED"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="regionalResourceZone" name="regional-resource-zone" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Regional way of organizing pservers, source of truth should define values"/>
                    </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="suggestibleOnSearch" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="operationalStatus" name="operational-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Indicator for whether the resource is considered operational.  Valid values are in-service-path and out-of-service-path."/>
                        <xml-property name="suggestibleOnSearch" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="licenseKey" name="license-key" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="OBSOLETE -  do not use"/>
                    </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-property name="suggestibleOnSearch" value="true"/>
					</xml-properties>
				</xml-element>
                <xml-element java-attribute="vnfPackageName" name="vnf-package-name" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value=""/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vnfDiscriptorName" name="vnf-discriptor-name" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="vnf discriptor name"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="jobId" name="job-id" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="job id corresponding to vnf"/>
                    </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="managementOption" name="management-option" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="identifier of managed by ATT or customer"/>
                    </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 generic-vnf."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipv4Loopback0Address" name="ipv4-loopback0-address" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="v4 Loopback0 address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nmLanV6Address" name="nm-lan-v6-address" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="v6 Loopback address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="managementV6Address" name="management-v6-address" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="v6 management address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vcpu" name="vcpu" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="number of vcpus ordered for this instance of VNF, used for VNFs with no vservers/flavors, to be used only by uCPE"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vcpuUnits" name="vcpu-units" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="units associated with vcpu, used for VNFs with no vservers/flavors, to be used only by uCPE"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vmemory" name="vmemory" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="number of GB of memory ordered for this instance of VNF, used for VNFs with no vservers/flavors, to be used only by uCPE"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vmemoryUnits" name="vmemory-units" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="units associated with vmemory, used for VNFs with no vservers/flavors, to be used only by uCPE"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vdisk" name="vdisk" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="number of vdisks ordered for this instance of VNF, used for VNFs with no vservers/flavors, to be used only uCPE"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vdiskUnits" name="vdisk-units" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="units associated with vdisk, used for VNFs with no vservers/flavors, to be used only by uCPE"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nshd" name="nshd" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="number of associated SHD in vnf." />
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nvm" name="nvm" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="number of vms in vnf." />
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nnet" name="nnet" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="number of network in vnf." />
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="inMaint" name="in-maint" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether or not this object is in maintenance mode (maintenance mode = true). This field (in conjunction with prov-status) is used to suppress alarms and vSCL on VNFs/VMs."/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="isClosedLoopDisabled" name="is-closed-loop-disabled" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether closed loop function is enabled on this node"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="summaryStatus" name="summary-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="details regarding the generic-vnf operation, PLEASE DISCONTINUE USE OF THIS FIELD."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="encryptedAccessFlag" name="encrypted-access-flag" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="description" value="indicates whether generic-vnf access uses SSH"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="entitlementAssignmentGroupUuid" name="entitlement-assignment-group-uuid" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="UUID of the Entitlement group used for licensing VNFs, OBSOLETE -  See child relationships."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="entitlementResourceUuid" name="entitlement-resource-uuid" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="UUID of the specific entitlement resource.  OBSOLETE -  See child relationships."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="licenseAssignmentGroupUuid" name="license-assignment-group-uuid" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="UUID of the license assignment group.  OBSOLETE -  See child relationships."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="licenseKeyUuid" name="license-key-uuid" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="UUID of the actual license resource.  OBSOLETE -  See child relationships."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model id for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="personaModelVersion" name="persona-model-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="internal"/>
                        <xml-property name="dataCopy" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}#model-version"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelCustomizationId" name="model-customization-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="captures the id of all the configuration used to customize the resource for the service."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelId" name="widget-model-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary widget model. This maps directly to the A&amp;AI widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelVersion" name="widget-model-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary version of the widget model.This maps directly to the A&amp;AI version of the widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="asNumber" name="as-number" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="as-number of the VNF"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="regionalResourceSubzone" name="regional-resource-subzone" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="represents sub zone of the rr plane"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nfType" name="nf-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Generic description of the type of NF"/>
                        <xml-property name="suggestibleOnSearch" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nfFunction" name="nf-function" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="English description of Network function that the specific VNF deployment is providing"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nfRole" name="nf-role" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="role in the network that this model will be providing"/>
                        <xml-property name="suggestibleOnSearch" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nfNamingCode" name="nf-naming-code" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="string assigned to this model used for naming purposes"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="selflink" name="selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Path to the controller object."/>
                    </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="Gateway address"/>
                    </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="Prefix length for oam-address"/>
                    </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 S-TAG to get to VCE"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nmProfileName" name="nm-profile-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Network Management profile of this VNF"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="lInterfaces" name="l-interfaces" type="inventory.aai.onap.org.v13.LInterfaces"/>
                <xml-element java-attribute="lagInterfaces" name="lag-interfaces" type="inventory.aai.onap.org.v13.LagInterfaces"/>
                <xml-element java-attribute="vfModules" name="vf-modules" type="inventory.aai.onap.org.v13.VfModules"/>
                <xml-element java-attribute="licenses" name="licenses" type="inventory.aai.onap.org.v13.Licenses"/>
                <xml-element java-attribute="entitlements" name="entitlements" type="inventory.aai.onap.org.v13.Entitlements"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="General purpose VNF"/>
                <xml-property name="nameProps" value="vnf-name"/>
                <xml-property name="indexedProps" value="is-closed-loop-disabled,vnf-name2,vnf-type,heat-stack-id,in-maint,vnf-name,vnf-id,regional-resource-zone,prov-status,service-id,model-invariant-id,model-version-id,widget-model-id,widget-model-version,nf-type,nf-function,nf-naming-code,nf-role"/>
                <xml-property name="searchable" value="vnf-id,vnf-name,vnf-name2,operational-status"/>
                <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-property name="containsSuggestibleProps" value="true"/>
                <xml-property name="suggestionAliases" value="VNFs"/>
                <xml-property name="uriTemplate" value="/network/generic-vnfs/generic-vnf/{vnf-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="VfModules">
            <xml-properties>
                <xml-property name="description" value="Collection of vf-modules, a deployment unit of VNFCs"/>
            </xml-properties>
            <xml-root-element name="vf-modules"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="vfModule" name="vf-module" type="inventory.aai.onap.org.v13.VfModule"/>
            </java-attributes>
        </java-type>

        <java-type name="VfModule">
            <xml-root-element name="vf-module"/>
            <java-attributes>
                <xml-element java-attribute="vfModuleId" name="vf-module-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique ID of vf-module."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vfModuleName" name="vf-module-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Name of vf-module"/>
                    </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."/>
                    </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 vf-module, mastered by MSO"/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="isBaseVfModule" name="is-base-vf-module" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="used to indicate whether or not this object is base vf module"/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="automatedAssignment" name="automated-assignment" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="Indicates whether vf-module assignment was done via automation or manually"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model id for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="personaModelVersion" name="persona-model-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="internal"/>
                        <xml-property name="dataCopy" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}#model-version"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelCustomizationId" name="model-customization-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="captures the id of all the configuration used to customize the resource for the service."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelId" name="widget-model-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary widget model. This maps directly to the A&amp;AI widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="widgetModelVersion" name="widget-model-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC data dictionary version of the widget model.This maps directly to the A&amp;AI version of the widget."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="contrailServiceInstanceFqdn" name="contrail-service-instance-fqdn" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the Contrail unique ID for a service-instance"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="moduleIndex" name="module-index" type="java.lang.Integer">
                    <xml-properties>
                        <xml-property name="description" value="the index will track the number of modules of a given type that have been deployed in a VNF, starting with 0, and always choosing the lowest available digit"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="selflink" name="selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Path to the controller object."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="a deployment unit of VNFCs"/>
                <xml-property name="indexedProps" value="vf-module-id,vf-module-name,heat-stack-id,model-invariant-id,model-version-id,widget-model-id,widget-model-version,contrail-service-instance-fqdn"/>
                <xml-property name="searchable" value="vf-module-id,vf-module-name"/>
                <xml-property name="dependentOn" value="generic-vnf"/>
                <xml-property name="container" value="vf-modules"/>
                <xml-property name="uriTemplate" value="/vf-modules/vf-module/{vf-module-id}"/>
            </xml-properties>
        </java-type>


        <java-type name="LagLinks">
            <xml-properties>
                <xml-property name="description" value="Collection of link aggregation connections"/>
            </xml-properties>
            <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.v13.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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.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-property name="uriTemplate" value="/network/lag-links/lag-link/{link-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="Newvces">
            <xml-properties>
                <xml-property name="description" value="This object fills in the gaps from vce that were incorporated into generic-vnf.  This object will be retired with vce."/>
            </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.v13.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="String capturing type of vnf, that was intended to identify the ASDC resource.  This field has been overloaded in service-specific ways and clients should expect changes to occur in the future to this field as ECOMP matures."/>
                    </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="operationalStatus" name="operational-status" 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="OBSOLETE -  do not use"/>
                    </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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipv4Loopback0Address" name="ipv4-loopback0-address" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="v4 Loopback0 address"/>
                    </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, mastered 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.v13.RelationshipList"/>
                <xml-element java-attribute="lInterfaces" name="l-interfaces" type="inventory.aai.onap.org.v13.LInterfaces"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="This object fills in the gaps from vce that were incorporated into generic-vnf.  This object will be retired with vce."/>
                <xml-property name="nameProps" value="vnf-name"/>
                <xml-property name="indexedProps" value="vnf-name,vnf-name2,vnf-type,heat-stack-id,prov-status,vnf-id2"/>
                <xml-property name="searchable" value="vnf-id2,vnf-name,vnf-name2"/>
                <xml-property name="uniqueProps" value="vnf-id2"/>
                <xml-property name="container" value="newvces"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/newvces/newvce/{vnf-id2}"/>
            </xml-properties>
        </java-type>

        <java-type name="Pnfs">
            <xml-properties>
                <xml-property name="description" value="Collection of Physical Network Functions."/>
            </xml-properties>
            <xml-root-element name="pnfs"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="pnf" name="pnf" type="inventory.aai.onap.org.v13.Pnf"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="maximumDepth" value="0"/>
            </xml-properties>
        </java-type>

        <java-type name="Pnf">
            <xml-root-element name="pnf"/>
            <java-attributes>
                <xml-element java-attribute="pnfName" name="pnf-name" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="unique name of Physical Network Function."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="pnfName2" name="pnf-name2" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="name of Physical Network Function."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="selflink" name="selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="URL to endpoint where AAI can get more details."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="pnfName2Source" name="pnf-name2-source" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="source of name2"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="pnfId" name="pnf-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="id of pnf"/>
                    </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="managementOption" name="management-option" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="identifier of managed by ATT or customer"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV4Oam" name="ipaddress-v4-oam" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ipv4-oam-address with new naming convention for IP addresses"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="swVersion" name="sw-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="sw-version is the version of SW for the hosted application on the PNF."/>
                    </xml-properties>
                </xml-element>
                <xml-element default-value="false" java-attribute="inMaint" name="in-maint" required="true" type="java.lang.Boolean">
                    <xml-properties>
                        <xml-property name="defaultValue" value="false"/>
                        <xml-property name="description" value="Used to indicate whether or not this object is in maintenance mode (maintenance mode = true). This field (in conjunction with prov-status) is used to suppress alarms and vSCL on VNFs/VMs."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="frameId" name="frame-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ID of the physical frame (relay rack) where pnf is installed."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serialNumber" name="serial-number" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Serial number of the device"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV4Loopback0" name="ipaddress-v4-loopback-0" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="IPV4 Loopback 0 address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV6Loopback0" name="ipaddress-v6-loopback-0" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="IPV6 Loopback 0 address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV4Aim" name="ipaddress-v4-aim" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="IPV4 AIM address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV6Aim" name="ipaddress-v6-aim" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="IPV6 AIM address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipaddressV6Oam" name="ipaddress-v6-oam" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="IPV6 OAM address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="invStatus" name="inv-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="CANOPI's inventory status.  Only set with values exactly as defined by CANOPI."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="provStatus" name="prov-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Prov Status of this device (not under canopi control) Valid values [PREPROV/NVTPROV/PROV]"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nfRole" name="nf-role" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Nf Role is the role performed by this instance in the network."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The ASDC model id for this resource  model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The ASDC model version for this resource  model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="pInterfaces" name="p-interfaces" type="inventory.aai.onap.org.v13.PInterfaces"/>
                <xml-element java-attribute="lagInterfaces" name="lag-interfaces" type="inventory.aai.onap.org.v13.LagInterfaces"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="PNF represents a physical network function. typically equipment used in the D1 world. in 1607, this will be populated by SDN-C to represent a premises router that a uCPE connects to. But this can be used to represent any physical device that is not an AIC node or uCPE."/>
                <xml-property name="indexedProps" value="pnf-name,orchestration-status,inv-status,model-invariant-id,model-version-id"/>
                <xml-property name="searchable" value="pnf-name"/>
                <xml-property name="uniqueProps" value="pnf-name"/>
                <xml-property name="container" value="pnfs"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/pnfs/pnf/{pnf-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="PhysicalLinks">
            <xml-properties>
                <xml-property name="description" value="Collection of physical connections, typically between p-interfaces"/>
            </xml-properties>
            <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.v13.PhysicalLink"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="maximumDepth" value="0"/>
            </xml-properties>
        </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="dualMode" name="dual-mode" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Dual access mode (e.g., primary, secondary"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="managementOption" name="management-option" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="To provide information on who manages this circuit. A&amp;AI or 3rd party transport provider"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceProviderName" name="service-provider-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Name of the service Provider on this link."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceProviderBandwidthUpValue" name="service-provider-bandwidth-up-value" type="java.lang.Integer">
                    <xml-properties>
                        <xml-property name="description" value="Upstream Bandwidth value agreed with the service provider"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceProviderBandwidthUpUnits" name="service-provider-bandwidth-up-units" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Units for the upstream BW value"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceProviderBandwidthDownValue" name="service-provider-bandwidth-down-value" type="java.lang.Integer">
                    <xml-properties>
                        <xml-property name="description" value="Downstream Bandwidth value agreed with the service provider"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceProviderBandwidthDownUnits" name="service-provider-bandwidth-down-units" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Units for downstream BW value"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Collection of physical connections, typically between 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-property name="searchable" value="link-name,circuit-id"/>
                <xml-property name="uriTemplate" value="/network/physical-links/physical-link/{link-name}"/>
            </xml-properties>
        </java-type>

        <java-type name="VigServers">
            <xml-root-element name="vig-servers"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="vigServer" name="vig-server" type="inventory.aai.onap.org.v13.VigServer"/>
            </java-attributes>
        </java-type>

        <java-type name="VigServer">
            <xml-root-element name="vig-server"/>
            <java-attributes>
                <xml-element java-attribute="vigAddressType" name="vig-address-type" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="indicates whether the VIG is for AVPN or INTERNET"/>
                    </xml-properties>
                </xml-element>
                <xml-element container-type="java.util.ArrayList" java-attribute="ipaddressV4Vig" name="ipaddress-v4-vig" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="v4 IP of the vig server"/>
                    </xml-properties>
                </xml-element>
                <xml-element container-type="java.util.ArrayList" java-attribute="ipaddressV6Vig" name="ipaddress-v6-vig" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="v6 IP of the vig server"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="vig-server contains information about a vig server used for IPSec-configuration. Populated by SDN-C from 1607"/>
                <xml-property name="indexedProps" value="vig-address-type"/>
                <xml-property name="dependentOn" value="ipsec-configuration"/>
                <xml-property name="container" value="vig-servers"/>
                <xml-property name="uriTemplate" value="/vig-servers/vig-server/{vig-address-type}"/>
            </xml-properties>
        </java-type>

        <java-type name="IpsecConfigurations">
            <xml-root-element name="ipsec-configurations"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="ipsecConfiguration" name="ipsec-configuration" type="inventory.aai.onap.org.v13.IpsecConfiguration"/>
            </java-attributes>
        </java-type>

        <java-type name="IpsecConfiguration">
            <xml-root-element name="ipsec-configuration"/>
            <java-attributes>
                <xml-element java-attribute="ipsecConfigurationId" name="ipsec-configuration-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="UUID of this configuration"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="requestedVigAddressType" name="requested-vig-address-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Indicate the type of VIG server like AVPN, INTERNET, BOTH"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="requestedEncryptionStrength" name="requested-encryption-strength" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Encryption values like 3des-cbc, des-cbc, aes-128-cbc, aes-192-cbc, aes-265-cbc"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="requestedDmzType" name="requested-dmz-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ATT can offer a shared DMZ or a DMZ specific to a customer"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="sharedDmzNetworkAddress" name="shared-dmz-network-address" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Network address of shared DMZ"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="requestedCustomerName" name="requested-customer-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="If the DMZ is a custom DMZ, this field will indicate the customer information"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ikeVersion" name="ike-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="can be 1 or 2"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ikev1Authentication" name="ikev1-authentication" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Contains values like md5, sha1, sha256, sha384"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ikev1Encryption" name="ikev1-encryption" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Encyption values like 3des-cbc, des-cbc, aes-128-cbc, aes-192-cbc, aes-265-cbc"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ikev1DhGroup" name="ikev1-dh-group" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Diffie-Hellman group like DH-GROUP2, DH-GROUP5, DH-GROUP14"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ikev1AmGroupId" name="ikev1-am-group-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Group name defined in VIG for clients using aggressive mode"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ikev1AmPassword" name="ikev1-am-password" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="pre-shared key for the above group name "/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ikev1SaLifetime" name="ikev1-sa-lifetime" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Lifetime for IKEv1 SA"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipsecAuthentication" name="ipsec-authentication" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="md5, sha1, sha256, sha384"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipsecEncryption" name="ipsec-encryption" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="3des-cbc, des-cbc, aes-128-cbc, aes-192-cbc, aes-265-cbc"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipsecSaLifetime" name="ipsec-sa-lifetime" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Life time for IPSec SA"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ipsecPfs" name="ipsec-pfs" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="enable PFS or not"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="xauthUserId" name="xauth-userid" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="user ID for xAuth, sm-user,ucpeHostName,nmteHostName"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="xauthUserPassword" name="xauth-user-password" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Encrypted using the Juniper $9$ algorithm"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="dpdInterval" name="dpd-interval" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The time between DPD probe"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="dpdFrequency" name="dpd-frequency" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Maximum number of DPD before claiming the tunnel is down"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="vigServers" name="vig-servers" type="inventory.aai.onap.org.v13.VigServers"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="IPSec configuration node will contain various configuration data for the NMTE VNF. This node will have an edge to the generic-vnf (vnf type = TE). Starting 1607, this data will be populated by SDN-C"/>
                <xml-property name="indexedProps" value="ipsec-configuration-id"/>
                <xml-property name="uniqueProps" value="ipsec-configuration-id"/>
                <xml-property name="container" value="ipsec-configurations"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/ipsec-configurations/ipsec-configuration/{ipsec-configuration-id}"/>
            </xml-properties>
        </java-type>


        <java-type name="NotificationEvent">
            <xml-root-element name="notification-event"/>
            <java-attributes>
                <xml-element java-attribute="cambriaPartition" name="cambria.partition" type="java.lang.String"/>
                <xml-element java-attribute="eventHeader" name="event-header" type="inventory.aai.onap.org.v13.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.v13.ReservedPropNames"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="edgePropNames" name="edge-prop-names" type="inventory.aai.onap.org.v13.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,aai-uri,aai-uuid"/>
                <xml-property name="indexedProps" value="aai-unique-key,source-of-truth,aai-node-type,aai-uri,aai-uuid"/>
            </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="aaiNodeType" name="aai-node-type" 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"/>
                <xml-element java-attribute="aaiUri" name="aai-uri" type="java.lang.String"/>
                <xml-element java-attribute="aaiUuid" name="aai-uuid" 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="aaiUuid,edgeLabel,direction,multiplicityRule,isParent,usesResource,hasDelTarget,SVC-INFRA,SVC-INFRA-REV"/>
                <xml-property name="uniqueProps" value="aai-uuid"/>
                <xml-property name="indexedProps" value="aai-uuid"/>
            </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="containsOtherV" name="contains-other-v" type="java.lang.String"/>
                <xml-element java-attribute="deleteOtherV" name="delete-other-v" type="java.lang.String"/>
                <xml-element java-attribute="svcinfra" name="SVC-INFRA" type="java.lang.String"/>
                <xml-element java-attribute="preventDelete" name="prevent-delete" type="java.lang.String"/>
                <xml-element java-attribute="private" name="private" type="java.lang.Boolean"/>
                <xml-element java-attribute="aaiUuid" name="aai-uuid" type="java.lang.String"/>
            </java-attributes>
        </java-type>

        <java-type name="Models">
            <xml-properties>
                <xml-property name="description" value="Collection of subgraph definitions provided by ASDC to describe the inventory assets and their connections related to ASDC models"/>
            </xml-properties>
            <xml-root-element name="models"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="model" name="model" type="inventory.aai.onap.org.v13.Model"/>
            </java-attributes>
        </java-type>

        <java-type name="Model">
            <xml-root-element name="model"/>
            <xml-properties>
                <xml-property name="description" value="Subgraph definition provided by ASDC to describe an inventory asset and its connections related to ASDC models, independent of version"/>
                <xml-property name="nameProps" value="model-type"/>
                <xml-property name="indexedProps" value="model-invariant-id,model-type"/>
                <xml-property name="uniqueProps" value="model-invariant-id"/>
                <xml-property name="container" value="models"/>
                <xml-property name="namespace" value="service-design-and-creation"/>
                <xml-property name="uriTemplate" value="/service-design-and-creation/models/model/{model-invariant-id}"/>
            </xml-properties>
            <java-attributes>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique identifier corresponding to the main definition of a model in ASDC"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelType" name="model-type" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Type of the model, e.g., service, resource, widget, etc."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVers" name="model-vers" type="inventory.aai.onap.org.v13.ModelVers"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
        </java-type>


        <java-type name="ModelVers">
            <xml-root-element name="model-vers"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="modelVer" name="model-ver" type="inventory.aai.onap.org.v13.ModelVer"/>
            </java-attributes>
        </java-type>

        <java-type name="ModelVer">
            <xml-root-element name="model-ver"/>
            <xml-properties>
                <xml-property name="description" value="Subgraph definition provided by ASDC to describe a specific version of an inventory asset and its connections related to ASDC models"/>
                <xml-property name="nameProps" value="model-name"/>
                <xml-property name="indexedProps" value="model-version-id,model-name,model-version,distribution-status"/>
                <xml-property name="uniqueProps" value="model-version-id"/>
                <xml-property name="container" value="model-vers"/>
                <xml-property name="uriTemplate" value="/model-vers/model-ver/{model-version-id}"/>
            </xml-properties>
            <java-attributes>
                <xml-element java-attribute="modelVersionId" name="model-version-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique identifier corresponding to one version of a model in ASDC"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelName" name="model-name" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Name of the model, which can change from version to version."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersion" name="model-version" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Version"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="distributionStatus" name="distribution-status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Distribution Status"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelDescription" name="model-description" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Description"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelElements" name="model-elements" type="inventory.aai.onap.org.v13.ModelElements"/>
                <xml-element java-attribute="metadata" name="metadata" type="inventory.aai.onap.org.v13.Metadata"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
        </java-type>

        <java-type name="ModelElements">
            <xml-root-element name="model-elements"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="modelElement" name="model-element" type="inventory.aai.onap.org.v13.ModelElement"/>
            </java-attributes>
        </java-type>

        <java-type name="ModelElement">
            <xml-properties>
                <xml-property name="description" value="Defines how other models combine to make up a higher-level model."/>
                <xml-property name="uniqueProps" value="model-element-uuid"/>
                <xml-property name="indexedProps" value="model-element-uuid"/>
                <xml-property name="allowDirectRead" value="true"/>
                <xml-property name="allowDirectWrite" value="false"/>
                <xml-property name="container" value="model-elements"/>
                <xml-property name="uriTemplate" value="/model-elements/model-element/{model-element-uuid}"/>
            </xml-properties>
            <xml-root-element name="model-element"/>
            <java-attributes>
                <xml-element java-attribute="modelElementUuid" name="model-element-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="autoGenerateUuid" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="newDataDelFlag" name="new-data-del-flag" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Indicates whether this element was created as part of instantiation from this model"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="cardinality" name="cardinality" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="How many of this type of element are required/allowed"/>
                    </xml-properties>
                </xml-element>
                <xml-element container-type="java.util.ArrayList" java-attribute="linkagePoints" name="linkage-points" type="java.lang.String">
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelElements" name="model-elements" type="inventory.aai.onap.org.v13.ModelElements">
                    <xml-properties>
                        <xml-property name="description" value="Defines how other models combine to make up a higher-level model"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelConstraints" name="model-constraints" type="inventory.aai.onap.org.v13.ModelConstraints">
                    <xml-properties>
                        <xml-property name="description" value="Describes new constraints on this model element that are not part of that model's definition"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
        </java-type>

        <java-type name="ModelConstraints">
            <xml-root-element name="model-constraints"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="modelConstraint" name="model-constraint" type="inventory.aai.onap.org.v13.ModelConstraint"/>
            </java-attributes>
        </java-type>

        <java-type name="ModelConstraint">
            <xml-properties>
                <xml-property name="description" value="This is how we would capture constraints defining allowed sets of elements."/>
                <xml-property name="uniqueProps" value="model-constraint-uuid"/>
                <xml-property name="indexedProps" value="model-constraint-uuid"/>
                <xml-property name="allowDirectRead" value="true"/>
                <xml-property name="allowDirectWrite" value="false"/>
                <xml-property name="container" value="model-constraints"/>
                <xml-property name="uriTemplate" value="/model-constraints/model-constraint/{model-constraint-uuid}"/>
            </xml-properties>
            <xml-root-element name="model-constraint"/>
            <java-attributes>
                <xml-element java-attribute="modelConstraintUuid" name="model-constraint-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="autoGenerateUuid" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="constrainedElementSetUuidToReplace" name="constrained-element-set-uuid-to-replace" required="true" type="java.lang.String"/>
                <xml-element java-attribute="constrainedElementSets" name="constrained-element-sets" type="inventory.aai.onap.org.v13.ConstrainedElementSets"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
            </java-attributes>
        </java-type>

        <java-type name="ConstrainedElementSets">
            <xml-root-element name="constrained-element-sets"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="constrainedElementSet" name="constrained-element-set" type="inventory.aai.onap.org.v13.ConstrainedElementSet"/>
            </java-attributes>
        </java-type>

        <java-type name="ConstrainedElementSet">
            <xml-properties>
                <xml-property name="description" value="This is how we would capture constraints defining allowed sets of elements."/>
                <xml-property name="uniqueProps" value="constrained-element-set-uuid"/>
                <xml-property name="indexedProps" value="constrained-element-set-uuid"/>
                <xml-property name="allowDirectRead" value="true"/>
                <xml-property name="allowDirectWrite" value="false"/>
                <xml-property name="container" value="constrained-element-sets"/>
                <xml-property name="uriTemplate" value="/constrained-element-sets/constrained-element-set/{constrained-element-set-uuid}"/>
            </xml-properties>
            <xml-root-element name="constrained-element-set"/>
            <java-attributes>
                <xml-element java-attribute="constrainedElementSetUuid" name="constrained-element-set-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="autoGenerateUuid" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="constraintType" name="constraint-type" required="true" type="java.lang.String"/>
                <xml-element java-attribute="checkType" name="check-type" required="true" type="java.lang.String"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String"/>
                <xml-element java-attribute="elementChoiceSets" name="element-choice-sets" type="inventory.aai.onap.org.v13.ElementChoiceSets"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
        </java-type>

        <java-type name="ElementChoiceSets">
            <xml-root-element name="element-choice-sets"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="elementChoiceSet" name="element-choice-set" type="inventory.aai.onap.org.v13.ElementChoiceSet"/>
            </java-attributes>
        </java-type>

        <java-type name="ElementChoiceSet">
            <xml-properties>
                <xml-property name="description" value="This is how we would capture constraints defining allowed sets of elements."/>
                <xml-property name="uniqueProps" value="element-choice-set-uuid"/>
                <xml-property name="indexedProps" value="element-choice-set-uuid"/>
                <xml-property name="allowDirectRead" value="true"/>
                <xml-property name="allowDirectWrite" value="false"/>
                <xml-property name="container" value="element-choice-sets"/>
                <xml-property name="uriTemplate" value="/element-choice-sets/element-choice-set/{element-choice-set-uuid}"/>
            </xml-properties>
            <xml-root-element name="element-choice-set"/>
            <java-attributes>
                <xml-element java-attribute="elementChoiceSetUuid" name="element-choice-set-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="autoGenerateUuid" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="elementChoiceSetName" name="element-choice-set-name" required="true" type="java.lang.String"/>
                <xml-element java-attribute="cardinality" name="cardinality" type="java.lang.String"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String"/>
                <xml-element java-attribute="modelElements" name="model-elements" type="inventory.aai.onap.org.v13.ModelElements"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
        </java-type>

        <java-type name="NamedQueries">
            <xml-root-element name="named-queries"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="namedQuery" name="named-query" type="inventory.aai.onap.org.v13.NamedQuery"/>
            </java-attributes>
        </java-type>

        <java-type name="NamedQuery">
            <xml-properties>
                <xml-property name="description" value="TBD"/>
                <xml-property name="nameProps" value="named-query-name"/>
                <xml-property name="uniqueProps" value="named-query-uuid"/>
                <xml-property name="indexedProps" value="named-query-uuid,named-query-name"/>
                <xml-property name="container" value="named-queries"/>
                <xml-property name="namespace" value="service-design-and-creation"/>
                <xml-property name="uriTemplate" value="/service-design-and-creation/named-queries/named-query/{named-query-uuid}"/>
            </xml-properties>
            <xml-root-element name="named-query"/>
            <java-attributes>
                <xml-element java-attribute="namedQueryUuid" name="named-query-uuid" required="true" type="java.lang.String" xml-key="true"/>
                <xml-element java-attribute="namedQueryName" name="named-query-name" required="true" type="java.lang.String"/>
                <xml-element java-attribute="namedQueryVersion" name="named-query-version" required="true" type="java.lang.String"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="requiredInputParams" name="required-input-param" type="java.lang.String">
                    <xml-element-wrapper name="required-input-params"/>
                </xml-element>
                <xml-element java-attribute="description" name="description" type="java.lang.String"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String"/>
                <xml-element java-attribute="namedQueryElements" name="named-query-elements" type="inventory.aai.onap.org.v13.NamedQueryElements"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
        </java-type>

        <java-type name="NamedQueryElements">
            <xml-root-element name="named-query-elements"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="namedQueryElement" name="named-query-element" type="inventory.aai.onap.org.v13.NamedQueryElement"/>
            </java-attributes>
        </java-type>

        <java-type name="NamedQueryElement">
            <xml-properties>
                <xml-property name="description" value="TBD"/>
                <xml-property name="uniqueProps" value="named-query-element-uuid"/>
                <xml-property name="indexedProps" value="named-query-element-uuid"/>
                <xml-property name="allowDirectRead" value="true"/>
                <xml-property name="allowDirectWrite" value="false"/>
                <xml-property name="container" value="named-query-elements"/>
                <xml-property name="uriTemplate" value="/named-query-elements/named-query-element/{named-query-element-uuid}"/>
            </xml-properties>
            <xml-root-element name="named-query-element"/>
            <java-attributes>
                <xml-element java-attribute="namedQueryElementUuid" name="named-query-element-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="autoGenerateUuid" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element container-type="java.util.ArrayList" java-attribute="propertyCollectList" name="property-collect-list" type="java.lang.String"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String"/>
                <xml-element java-attribute="propertyLimitDesc" name="property-limit-desc" type="java.lang.String"/>
                <xml-element java-attribute="doNotOutput" name="do-not-output" type="java.lang.String"/>
                <xml-element java-attribute="namedQueryElements" name="named-query-elements" type="inventory.aai.onap.org.v13.NamedQueryElements"/>
                <xml-element java-attribute="relatedLookups" name="related-lookups" type="inventory.aai.onap.org.v13.RelatedLookups"/>
                <xml-element java-attribute="propertyConstraints" name="property-constraints" type="inventory.aai.onap.org.v13.PropertyConstraints"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
        </java-type>

        <java-type name="RelatedLookups">
            <xml-root-element name="related-lookups"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="relatedLookup" name="related-lookup" type="inventory.aai.onap.org.v13.RelatedLookup"/>
            </java-attributes>
        </java-type>

        <java-type name="RelatedLookup">
            <xml-properties>
                <xml-property name="description" value="TBD"/>
                <xml-property name="uniqueProps" value="related-lookup-uuid"/>
                <xml-property name="indexedProps" value="related-lookup-uuid"/>
                <xml-property name="allowDirectRead" value="true"/>
                <xml-property name="allowDirectWrite" value="false"/>
                <xml-property name="container" value="related-lookups"/>
                <xml-property name="uriTemplate" value="/related-lookups/related-lookup/{related-lookup-uuid}"/>
            </xml-properties>
            <xml-root-element name="related-lookup"/>
            <java-attributes>
                <xml-element java-attribute="relatedLookupUuid" name="related-lookup-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="autoGenerateUuid" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="sourceNodeType" name="source-node-type" required="true" type="java.lang.String"/>
                <xml-element java-attribute="sourceNodeProperty" name="source-node-property" required="true" type="java.lang.String"/>
                <xml-element java-attribute="targetNodeType" name="target-node-type" required="true" type="java.lang.String"/>
                <xml-element java-attribute="targetNodeProperty" name="target-node-property" required="true" type="java.lang.String"/>
                <xml-element container-type="java.util.ArrayList" java-attribute="propertyCollectList" name="property-collect-list" type="java.lang.String"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
        </java-type>

        <java-type name="PropertyConstraints">
            <xml-root-element name="property-constraints"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="propertyConstraint" name="property-constraint" type="inventory.aai.onap.org.v13.PropertyConstraint"/>
            </java-attributes>
        </java-type>

        <java-type name="PropertyConstraint">
            <xml-properties>
                <xml-property name="description" value="TBD"/>
                <xml-property name="uniqueProps" value="property-constraint-uuid"/>
                <xml-property name="indexedProps" value="property-constraint-uuid"/>
                <xml-property name="allowDirectRead" value="true"/>
                <xml-property name="allowDirectWrite" value="false"/>
                <xml-property name="container" value="property-constraints"/>
                <xml-property name="uriTemplate" value="/property-constraints/property-constraint/{property-constraint-uuid}"/>
            </xml-properties>
            <xml-root-element name="property-constraint"/>
            <java-attributes>
                <xml-element java-attribute="propertyConstraintUuid" name="property-constraint-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="autoGenerateUuid" value="true"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="constraintType" name="constraint-type" required="true" type="java.lang.String"/>
                <xml-element java-attribute="propertyName" name="property-name" required="true" type="java.lang.String"/>
                <xml-element java-attribute="propertyValue" name="property-value" required="true" type="java.lang.String"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String"/>
            </java-attributes>
        </java-type>

        <java-type name="ModelAndNamedQuerySearch">
            <xml-properties>
                <xml-property name="description" value="ModelAndNamedQuerySearch holds query-parameters and instance-properties for performing a named-query or model query"/>
            </xml-properties>
            <xml-root-element name="model-and-named-query-search"/>
            <java-attributes>
                <xml-element java-attribute="queryParameters" name="query-parameters" type="inventory.aai.onap.org.v13.QueryParameters"/>
                <xml-element java-attribute="instanceFilters" name="instance-filters" type="inventory.aai.onap.org.v13.InstanceFilters"/>
                <xml-element java-attribute="secondaryFilts" name="secondary-filts" type="inventory.aai.onap.org.v13.SecondaryFilts"/>
                <xml-element java-attribute="topNodeType" name="top-node-type" type="java.lang.String"/>
                <xml-element java-attribute="secondaryFilterCutPoint" name="secondary-filter-cut-point" type="java.lang.String"/>
            </java-attributes>
        </java-type>

        <java-type name="QueryParameters">
            <xml-properties>
                <xml-property name="description" value="QueryParameters for performing a named-query or model query"/>
            </xml-properties>
            <xml-root-element name="query-parameters"/>
            <java-attributes>
                <xml-element java-attribute="namedQuery" name="named-query" type="inventory.aai.onap.org.v13.NamedQuery"/>
                <xml-element java-attribute="model" name="model" type="inventory.aai.onap.org.v13.OverloadedModel"/>
            </java-attributes>
        </java-type>

        <java-type name="OverloadedModel">
            <xml-root-element name="overloaded-model"/>
            <xml-properties>
                <xml-property name="description" value="Allows for legacy POST of old-style and new-style models"/>
            </xml-properties>
            <java-attributes>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique identifier corresponding to the main definition of a model in ASDC"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelNameVersionId" name="model-name-version-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique identifier corresponding to one version of a model in ASDC"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelType" name="model-type" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Type of the model, e.g., service, resource, widget, etc."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelName" name="model-name" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Name of the model, which can change from version to version."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelId" name="model-id" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Invariant unique ID which does not change from version to version"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersion" name="model-version" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Version"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelDescription" name="model-description" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Description"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVers" name="model-vers" type="inventory.aai.onap.org.v13.ModelVers"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
        </java-type>

        <java-type name="InstanceFilters">
            <xml-properties>
                <xml-property name="description" value="InstanceFilters for performing a named-query or model query"/>
            </xml-properties>
            <xml-root-element name="instance-filters"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="instanceFilter" name="instance-filter" type="inventory.aai.onap.org.v13.InstanceFilter"/>
            </java-attributes>
        </java-type>

        <java-type name="InstanceFilter">
            <xml-properties>
                <xml-property name="description" value="InstanceFilter for performing a named-query or model query"/>
                <xml-property name="container" value="instance-filters"/>
            </xml-properties>
            <xml-root-element name="instance-filter"/>
            <java-attributes>
                <xml-any-element container-type="java.util.ArrayList" java-attribute="any" lax="true" name="any"/>
            </java-attributes>
        </java-type>

        <java-type name="SecondaryFilts">
            <xml-properties>
                <xml-property name="description" value="SecondaryFilts for performing a named-query or model query"/>
            </xml-properties>
            <xml-root-element name="secondary-filts"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="secondaryFilt" name="secondary-filt" type="inventory.aai.onap.org.v13.SecondaryFilt"/>
            </java-attributes>
        </java-type>

        <java-type name="SecondaryFilt">
            <xml-properties>
                <xml-property name="description" value="SecondaryFilt for performing a named-query or model query"/>
            </xml-properties>
            <xml-root-element name="secondary-filt"/>
            <java-attributes>
                <xml-any-element container-type="java.util.ArrayList" java-attribute="any" lax="true" name="any"/>
            </java-attributes>
        </java-type>

        <java-type name="Properties">
            <xml-properties>
                <xml-property name="description" value="Property holder for query properties or instance properties"/>
            </xml-properties>
            <xml-root-element name="properties"/>
            <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="ResponseList">
            <xml-properties>
                <xml-property name="description" value="Response container for the results of a named-query or model query"/>
            </xml-properties>
            <xml-root-element name="response-list"/>
            <java-attributes>
                <xml-element java-attribute="inventoryResponseItems" name="inventory-response-items" type="inventory.aai.onap.org.v13.InventoryResponseItems"/>
            </java-attributes>
        </java-type>

        <java-type name="InventoryResponseItems">
            <xml-properties>
                <xml-property name="description" value="Container for inventory items in response list"/>
                <xml-property name="container" value="response-list"/>
            </xml-properties>
            <xml-root-element name="inventory-response-items"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="inventoryResponseItem" name="inventory-response-item" type="inventory.aai.onap.org.v13.InventoryResponseItem"/>
            </java-attributes>
        </java-type>

        <java-type name="InventoryResponseItem">
            <xml-properties>
                <xml-property name="description" value="Inventory item for response list"/>
                <xml-property name="container" value="inventory-response-items"/>
            </xml-properties>
            <xml-root-element name="inventory-response-item"/>
            <java-attributes>
                <xml-element java-attribute="modelName" name="model-name" type="java.lang.String"/>
                <xml-any-element java-attribute="item"/>
                <xml-element java-attribute="extraProperties" name="extra-properties" type="inventory.aai.onap.org.v13.ExtraProperties"/>
                <xml-element java-attribute="inventoryResponseItems" name="inventory-response-items" type="inventory.aai.onap.org.v13.InventoryResponseItems"/>
            </java-attributes>
        </java-type>

        <java-type name="ExtraProperties">
            <xml-properties>
                <xml-property name="description" value="Extra properties for inventory item for response list"/>
            </xml-properties>
            <xml-root-element name="extra-properties"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="extraProperty" name="extra-property" type="inventory.aai.onap.org.v13.ExtraProperty"/>
            </java-attributes>
        </java-type>

        <java-type name="ExtraProperty">
            <xml-root-element name="extra-property"/>
            <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="RouteTableReferences">
            <xml-properties>
                <xml-property name="description" value="Collection of openstack route table references"/>
            </xml-properties>
            <xml-root-element name="route-table-references"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="routeTableReference" name="route-table-reference" type="inventory.aai.onap.org.v13.RouteTableReference"/>
            </java-attributes>
        </java-type>

        <java-type name="RouteTableReference">
            <xml-root-element name="route-table-reference"/>
            <java-attributes>
                <xml-element java-attribute="routeTableReferenceId" name="route-table-reference-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Route Table Reference id, UUID assigned to this instance."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="routeTableReferenceFqdn" name="route-table-reference-fqdn" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="FQDN entry in the route table."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Concurrency value"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>

            <xml-properties>
                <xml-property name="description" value="Openstack route table reference."/>
                <xml-property name="nameProps" value="route-table-reference-fqdn"/>
                <xml-property name="uniqueProps" value="route-table-reference-id"/>
                <xml-property name="indexedProps" value="route-table-reference-id,route-table-reference-fqdn"/>
                <xml-property name="container" value="route-table-references"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/route-table-references/route-table-reference/{route-table-reference-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="InstanceGroups">
            <xml-properties>
                <xml-property name="description" value="Collection of openstack route table references"/>
            </xml-properties>
            <xml-root-element name="instance-groups"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="instanceGroup" name="instance-group" type="inventory.aai.onap.org.v13.InstanceGroup"/>
            </java-attributes>
        </java-type>

        <java-type name="InstanceGroup">
            <xml-root-element name="instance-group"/>
            <java-attributes>

                <xml-element java-attribute="id" name="id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Instance Group ID, UUID assigned to this instance."/>
                    </xml-properties>
                </xml-element>

                <xml-element java-attribute="instanceGroupRole" name="instance-group-role" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="role of the instance group."/>
                    </xml-properties>
                </xml-element>

                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ASDC model id for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>

                <xml-element java-attribute="modelVersionId" name="model-version-id" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ASDC model version uid for this resource model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="description" name="description" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Descriptive text to help identify the usage of this instance-group"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="instanceGroupType" name="instance-group-type" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Only valid value today is lower case ha for high availability"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Concurrency value"/>
                    </xml-properties>
                </xml-element>

                <xml-element java-attribute="instanceGroupName" name="instance-group-name" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Instance-Group Name."/>
                    </xml-properties>
                </xml-element>

                <xml-element java-attribute="instanceGroupFunction" name="instance-group-function" required="false" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Instance-Group Function"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>

            <xml-properties>
                <xml-property name="description" value="General mechanism for grouping instances"/>
                <xml-property name="nameProps" value="description,instance-group-name"/>
                <xml-property name="uniqueProps" value="id"/>
                <xml-property name="searchable" value="id,description"/>
                <xml-property name="indexedProps" value="id,description,type,sub-type,model-invariant-id,model-version-id"/>
                <xml-property name="container" value="instance-groups"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/instance-groups/instance-group/{id}"/>
            </xml-properties>
        </java-type>


        <java-type name="SegmentationAssignments">
            <xml-properties>
                <xml-property name="description" value="Collection of openstack segmentation assignments"/>
            </xml-properties>
            <xml-root-element name="segmentation-assignments"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="segmentationAssignment" name="segmentation-assignment" type="inventory.aai.onap.org.v13.SegmentationAssignment"/>
            </java-attributes>
        </java-type>

        <java-type name="SegmentationAssignment">
            <xml-root-element name="segmentation-assignment"/>
            <java-attributes>
                <xml-element java-attribute="segmentationId" name="segmentation-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Route Table Reference id, UUID assigned to this instance."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Concurrency value"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Openstack segmentation assignment."/>
                <xml-property name="indexedProps" value="segmentation-id"/>
                <xml-property name="dependentOn" value="l3-network"/>
                <xml-property name="container" value="segmentation-assignments"/>
                <xml-property name="uriTemplate" value="/segmentation-assignments/segmentation-assignment/{segmentation-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="AllottedResources">
            <xml-properties>
                <xml-property name="description" value="This object is used to store slices of services being offered"/>
            </xml-properties>
            <xml-root-element name="allotted-resources"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="allottedResource" name="allotted-resource" type="inventory.aai.onap.org.v13.AllottedResource"/>
            </java-attributes>
        </java-type>

        <java-type name="AllottedResource">
            <xml-root-element name="allotted-resource"/>
            <java-attributes>
                <xml-element java-attribute="id" name="id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Allotted Resource id UUID assigned to this instance."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="description" name="description" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The descriptive information assigned to this allotted resource instance"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="selflink" name="selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Link back to more information in the controller"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model id for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the ASDC model version for this resource or service model."/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Concurrency 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"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="operationalStatus" name="operational-status" 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="type" name="type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Generic description of the type of allotted resource."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="role" name="role" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="role in the network that this resource will be providing."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="tunnelXconnects" name="tunnel-xconnects" type="inventory.aai.onap.org.v13.TunnelXconnects"/>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>

            <xml-properties>
                <xml-property name="description" value="Represents a slice or partial piece of a resource that gets separately allotted"/>
                <xml-property name="nameProps" value="description"/>
                <xml-property name="uniqueProps" value="id"/>
                <xml-property name="indexedProps" value="id,model-invariant-id,model-version-id,type,role"/>
                <xml-property name="dependentOn" value="service-instance"/>
                <xml-property name="container" value="allotted-resources"/>
                <!--  <xml-property name="namespace" value="network" /> -->
                <xml-property name="uriTemplate" value="/allotted-resources/allotted-resource/{id}"/>
            </xml-properties>
        </java-type>

        <java-type name="TunnelXconnects">
            <xml-properties>
                <xml-property name="description" value="This object is used to store the specific tunnel cross connect aspects of an allotted resource"/>
            </xml-properties>
            <xml-root-element name="tunnel-xconnects"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="tunnelXconnect" name="tunnel-xconnect" type="inventory.aai.onap.org.v13.TunnelXconnect"/>
            </java-attributes>
        </java-type>

        <java-type name="TunnelXconnect">
            <xml-root-element name="tunnel-xconnect"/>
            <java-attributes>
                <xml-element java-attribute="id" name="id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Allotted Resource id UUID assigned to this instance."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="bandwidthUpWan1" name="bandwidth-up-wan1" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The WAN uplink bandwidth for WAN1"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="bandwidthDownWan1" name="bandwidth-down-wan1" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The WAN downlink bandwidth for WAN1"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="bandwidthUpWan2" name="bandwidth-up-wan2" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The WAN uplink bandwidth for WAN2"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="bandwidthDownWan2" name="bandwidth-down-wan2" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="The WAN downlink bandwidth for WAN2"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Concurrency value"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>

            <xml-properties>
                <xml-property name="description" value="Represents the specifics of a tunnel cross connect piece of a resource that gets separately allotted"/>
                <xml-property name="uniqueProps" value="id"/>
                <xml-property name="indexedProps" value="id"/>
                <xml-property name="dependentOn" value="allotted-resource"/>
                <xml-property name="container" value="tunnel-xconnects"/>
                <!--  <xml-property name="namespace" value="network" /> -->
                <xml-property name="uriTemplate" value="/tunnel-xconnects/tunnel-xconnect/{id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Entitlements">
            <xml-properties>
                <xml-property name="description" value="Entitlements, keyed by group-uuid and resource-uuid, related to license management"/>
            </xml-properties>
            <xml-root-element name="entitlements"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="entitlement" name="entitlement" type="inventory.aai.onap.org.v13.Entitlement"/>
            </java-attributes>
        </java-type>

        <java-type name="Entitlement">
            <xml-root-element name="entitlement"/>
            <java-attributes>
                <xml-element java-attribute="groupUuid" name="group-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique ID for the entitlement group the resource comes from, should be uuid."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceUuid" name="resource-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique ID of an entitlement resource. "/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Concurrency value"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Metadata for entitlement group."/>
                <xml-property name="indexedProps" value="group-uuid,resource-uuid"/>
                <xml-property name="dependentOn" value="generic-vnf,vce"/>
                <xml-property name="container" value="entitlements"/>
                <xml-property name="uriTemplate" value="/entitlements/entitlement/{group-uuid}/{resource-uuid}"/>
            </xml-properties>
        </java-type>


        <java-type name="Licenses">
            <xml-properties>
                <xml-property name="description" value="Licenses to be allocated across resources, keyed by group-uuid and resource-uuid, related to license management"/>
            </xml-properties>
            <xml-root-element name="licenses"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="license" name="license" type="inventory.aai.onap.org.v13.License"/>
            </java-attributes>
        </java-type>

        <java-type name="License">
            <xml-root-element name="license"/>
            <java-attributes>
                <xml-element java-attribute="groupUuid" name="group-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique ID for the license group the resource belongs to, should be uuid."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceUuid" name="resource-uuid" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique ID of a license resource. "/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Concurrency value"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Metadata for license group."/>
                <xml-property name="indexedProps" value="group-uuid,resource-uuid"/>
                <xml-property name="dependentOn" value="generic-vnf,vce"/>
                <xml-property name="container" value="licenses"/>
                <xml-property name="uriTemplate" value="/licenses/license/{group-uuid}/{resource-uuid}"/>
            </xml-properties>
        </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-type name="Zones">
            <xml-properties>
                <xml-property name="description" value="Collection of zones"/>
            </xml-properties>
            <xml-root-element name="zones"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="zone" name="zone" type="inventory.aai.onap.org.v13.Zone"/>
            </java-attributes>
        </java-type>

        <java-type name="Zone">
            <xml-root-element name="zone"/>
            <java-attributes>
                <xml-element java-attribute="zoneId" name="zone-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Code assigned by AIC to the zone"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="zoneName" name="zone-name" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="English name associated with the zone"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="designType" name="design-type" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Design of zone [Medium/Large…]"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="zoneContext" name="zone-context" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Context of zone [production/test]"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="status" name="status" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Status of a zone."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Concurrency value"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="A zone is a grouping of assets in a location homing to the same connections into the CBB"/>
                <xml-property name="nameProps" value="zone-name"/>
                <xml-property name="indexedProps" value="zone-id,design-type,zone-context"/>
                <xml-property name="uniqueProps" value="zone-id"/>
                <xml-property name="container" value="zones"/>
                <xml-property name="namespace" value="network"/>
                <xml-property name="uriTemplate" value="/network/zones/zone/{zone-id}"/>
            </xml-properties>
        </java-type>
        <java-type name="RouteTargets">
            <xml-properties>
                <xml-property name="description" value="Collection of route target information"/>
            </xml-properties>
            <xml-root-element name="route-targets"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="routeTarget" name="route-target" type="inventory.aai.onap.org.v13.RouteTarget"/>
            </java-attributes>
        </java-type>
        <java-type name="RouteTarget">
            <xml-root-element name="route-target"/>
            <java-attributes>
                <xml-element java-attribute="globalRouteTarget" name="global-route-target" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Number used to identify an RT, globally unique in the network"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="routeTargetRole" name="route-target-role" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Role assigned to this route target"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="Route target information"/>
                <xml-property name="container" value="route-targets"/>
                <xml-property name="dependentOn" value="vpn-binding"/>
                <xml-property name="canBeLinked" value="true"/>
                <xml-property name="uriTemplate" value="/route-targets/route-target/{global-route-target}/{route-target-role}"/>
            </xml-properties>
        </java-type>

        <java-type name="SriovPfs">
            <xml-properties>
                <xml-property name="description" value="Collection of SR-IOV Physical Functions."/>
            </xml-properties>
            <xml-root-element name="sriov-pfs"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="sriovPf" name="sriov-pf" type="inventory.aai.onap.org.v13.SriovPf"/>
            </java-attributes>
        </java-type>
        <java-type name="SriovPf">
            <xml-root-element name="sriov-pf"/>
            <java-attributes>
                <xml-element java-attribute="pfPciId" name="pf-pci-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Identifier for the sriov-pf"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="SR-IOV Physical Function"/>
                <xml-property name="indexedProps" value="pf-pci-id"/>
                <xml-property name="dependentOn" value="p-interface"/>
                <xml-property name="container" value="sriov-pfs"/>
                <xml-property name="uriTemplate" value="/sriov-pfs/sriov-pf/{pf-pci-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="HostRoutes">
            <xml-root-element name="host-routes"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="hostRoute" name="host-route" type="inventory.aai.onap.org.v13.HostRoute"/>
            </java-attributes>
        </java-type>
        <java-type name="HostRoute">
            <xml-root-element name="host-route"/>
            <java-attributes>
                <xml-element java-attribute="hostRouteId" name="host-route-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="host-route id"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="routePrefix" name="route-prefix" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="subnet prefix"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nextHop" name="next-hop" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Could be ip-address, hostname, or service-instance"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="nextHopType" name="next-hop-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Should be ip-address, hostname, or service-instance to match next-hop"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="indexedProps" value="host-route-id"/>
                <xml-property name="dependentOn" value="subnet"/>
                <xml-property name="container" value="host-routes"/>
                <xml-property name="uriTemplate" value="/host-routes/host-route/{host-route-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="VipIpv4AddressList">
            <xml-root-element name="vip-ipv4-address-list"/>
            <java-attributes>
                <xml-element java-attribute="vipIpv4Address" name="vip-ipv4-address" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="IP address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vipIpv4PrefixLength" name="vip-ipv4-prefix-length" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Prefix length, 32 for single address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlanIdInner" name="vlan-id-inner" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Inner VLAN tag"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlanIdOuter" name="vlan-id-outer" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Outer VLAN tag"/>
                    </xml-properties>
                </xml-element>
                <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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </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 the interface that address belongs to"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="neutronSubnetId" name="neutron-subnet-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Neutron id of subnet that address belongs to"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="IPv4 Address Range"/>
                <xml-property name="indexedProps" value="vip-ipv4-address,vlan-id-inner,neutron-network-id,neutron-subnet-id"/>
                <xml-property name="dependentOn" value="cloud-region"/>
            <xml-property name="uriTemplate" value="/vip-ipv4-address-list/{vip-ipv4-address}"/>
            </xml-properties>
        </java-type>

        <java-type name="VipIpv6AddressList">
            <xml-root-element name="vip-ipv6-address-list"/>
            <java-attributes>
                <xml-element java-attribute="vipIpv6Address" name="vip-ipv6-address" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="IP address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vipIpv6PrefixLength" name="vip-ipv6-prefix-length" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Prefix length, 128 for single address"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlanIdInner" name="vlan-id-inner" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Inner VLAN tag"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="vlanIdOuter" name="vlan-id-outer" type="java.lang.Long">
                    <xml-properties>
                        <xml-property name="description" value="Outer VLAN tag"/>
                    </xml-properties>
                </xml-element>
                <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="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </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 the interface that address belongs to"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="neutronSubnetId" name="neutron-subnet-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Neutron id of subnet that address belongs to"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="IPv6 Address Range"/>
                <xml-property name="indexedProps" value="vip-ipv6-address,vlan-id-inner,neutron-network-id,neutron-subnet-id"/>
                <xml-property name="dependentOn" value="cloud-region"/>
            <xml-property name="uriTemplate" value="/vip-ipv6-address-list/{vip-ipv6-address}"/>
            </xml-properties>
        </java-type>

        <java-type name="OperationalEnvironments">
            <xml-properties>
                <xml-property name="description" value="a logical partition of the cloud which allows to have multiple environments in the production AIC."/>
            </xml-properties>
            <xml-root-element name="operational-environments"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="operationalEnvironment" name="operational-environment" type="inventory.aai.onap.org.v13.OperationalEnvironment"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="maximumDepth" value="0"/>
            </xml-properties>
        </java-type>

        <java-type name="OperationalEnvironment">
            <xml-root-element name="operational-environment"/>
            <java-attributes>
                <xml-element java-attribute="operationalEnvironmentId" name="operational-environment-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="UUID of an operational environment"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="operationalEnvironmentName" name="operational-environment-name" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Operational Environment name"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="operationalEnvironmentType" name="operational-environment-type" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Operational Environment Type."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="operationalEnvironmentStatus" name="operational-environment-status" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Status"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="tenantContext" name="tenant-context" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Tenant Context."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="workloadContext" name="workload-context" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Workload Context."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency.  Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="It is a logical partition of the cloud which allows to have multiple environments in the production AIC."/>
                <xml-property name="indexedProps" value="operational-environment-id"/>
                <xml-property name="nameProps" value="operational-environment-name"/>
                <xml-property name="uniqueProps" value="operational-environment-id"/>
                <xml-property name="container" value="operational-environments"/>
                <xml-property name="namespace" value="cloud-infrastructure"/>
                <xml-property name="uriTemplate" value="/cloud-infrastructure/operational-environments/operational-environment/{operational-environment-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="ForwardingPaths">
            <xml-root-element name="forwarding-paths"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="forwardingPath" name="forwarding-path" type="inventory.aai.onap.org.v13.ForwardingPath"/>
            </java-attributes>
        </java-type>

        <java-type name="ForwardingPath">
            <xml-root-element name="forwarding-path"/>
            <xml-properties>
                <xml-property name="namespace" value="network"/>
                <xml-property name="indexedProps" value="forwarding-path-id,forwarding-path-name"/>
                <xml-property name="description" value="Entity that describes the sequenced forwarding path between interfaces of services or resources"/>
                <xml-property name="container" value="forwarding-paths"/>
                <xml-property name="nameProps" value="forwarding-path-name"/>
                <xml-property name="uniqueProps" value="forwarding-path-id"/>
                <xml-property name="uriTemplate" value="/network/forwarding-paths/forwarding-path/{forwarding-path-id}"/>
            </xml-properties>
            <java-attributes>
                <xml-element java-attribute="forwardingPathId" name="forwarding-path-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique ID of this FP"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="forwardingPathName" name="forwarding-path-name" required="true" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Name of the FP"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency. Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="selflink" name="selflink" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="the self link for this FP"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="forwarders" name="forwarders" type="inventory.aai.onap.org.v13.Forwarders"/>
            </java-attributes>
        </java-type>

        <java-type name="Forwarders">
            <xml-root-element name="forwarders"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="forwarder" name="forwarder" type="inventory.aai.onap.org.v13.Forwarder"/>
            </java-attributes>
        </java-type>

        <java-type name="Forwarder">
            <xml-root-element name="forwarder"/>
            <xml-properties>
                <xml-property name="indexedProps" value="sequence"/>
                <xml-property name="description" value="Entity describing a sequenced segment of forwarding path"/>
                <xml-property name="container" value="forwarders"/>
                <xml-property name="dependentOn" value="forwarding-path"/>
                <xml-property name="uriTemplate" value="/forwarders/forwarder/{sequence}"/>
            </xml-properties>
            <java-attributes>
                <xml-element java-attribute="sequence" name="sequence" required="true" type="java.lang.Integer" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique ID of this segmentation"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="forwarderRole" name="forwarder-role" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ingress, intermediate, egress"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency. Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
            </java-attributes>
        </java-type>

        <java-type name="ForwarderEvcs">
            <xml-root-element name="forwarder-evcs"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="forwarderEvc" name="forwarder-evc" type="inventory.aai.onap.org.v13.ForwarderEvc"/>
            </java-attributes>
        </java-type>

        <java-type name="ForwarderEvc">
            <xml-root-element name="forwarder-evc"/>
            <java-attributes>
                <xml-element java-attribute="forwarderEvcId" name="forwarder-evc-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Key for forwarder-evc object"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="circuitId" name="circuit-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Circuit ID from customer/ESP/ingress end of EVC, or reference to beater circuit on gateway/network/egress end of EVC"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="ivlan" name="ivlan" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Internal VLAN."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="svlan" name="svlan" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="SVLAN value for ingress of egress forwarder."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="cvlan" name="cvlan" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="CVLAN value for ingress of egress forwarder."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency. Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="forwarder object is an optional child object of the Configuration object."/>
                <xml-property name="dependentOn" value="configuration"/>
                <xml-property name="uniqueProps" value="forwarder-evc-id"/>
                <xml-property name="container" value="forwarder-evcs"/>
                <xml-property name="uriTemplate" value="/forwarder-evcs/forwarder-evc/{forwarder-evc-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Evcs">
            <xml-root-element name="evcs"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="evc" name="evc" type="inventory.aai.onap.org.v13.Evc"/>
            </java-attributes>
        </java-type>

        <java-type name="Evc">
            <xml-root-element name="evc"/>
            <java-attributes>
                <xml-element java-attribute="evcId" name="evc-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Unique/key field for the evc object"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="forwardingPathTopology" name="forwarding-path-topology" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Point-to-Point, Multi-Point"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="cirValue" name="cir-value" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Commited Information Rate"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="cirUnits" name="cir-units" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="CIR units"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="connectionDiversityGroupId" name="connection-diversity-group-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Diversity Group ID"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="serviceHours" name="service-hours" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="formerly Performance Group"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="espEvcCircuitId" name="esp-evc-circuit-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="EVC Circuit ID of ESP EVC"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="espEvcCirValue" name="esp-evc-cir-value" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Committed Information Rate (For ESP)"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="espEvcCirUnits" name="esp-evc-cir-units" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="CIR units (For ESP)"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="espItuCode" name="esp-itu-code" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Identifies ESP"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="collectorPopClli" name="collector-pop-clli" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Collector POP CLLI (from the hostname of the access pnf)"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="interConnectTypeIngress" name="inter-connect-type-ingress" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Interconnect type on ingress side of EVC."/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="tagmodeAccessIngress" name="tagmode-access-ingress" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="tagode for collector side of EVC"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="tagmodeAccessEgress" name="tagmode-access-egress" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="tagMode for network side of EVC"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency. Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
            </java-attributes>
            <xml-properties>
                <xml-property name="description" value="evc object is an optional child object of the Configuration object."/>
                <xml-property name="dependentOn" value="configuration"/>
                <xml-property name="uniqueProps" value="evc-id"/>
                <xml-property name="container" value="evcs"/>
                <xml-property name="uriTemplate" value="/evcs/evc/{evc-id}"/>
            </xml-properties>
        </java-type>

        <java-type name="Collections">
            <xml-root-element name="collections"/>
            <java-attributes>
                <xml-element container-type="java.util.ArrayList" java-attribute="collection" name="collection" type="inventory.aai.onap.org.v13.Collection"/>
            </java-attributes>
        </java-type>

        <java-type name="Collection">
            <xml-root-element name="collection"/>
            <java-attributes>
                <xml-element java-attribute="collectionId" name="collection-id" required="true" type="java.lang.String" xml-key="true">
                    <xml-properties>
                        <xml-property name="description" value="Collection Object UUID"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelInvariantId" name="model-invariant-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="ASDC model id for this resource or service model"/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-version-id"/>
                        <xml-property name="dbAlias" value="model-invariant-id-local"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="modelVersionId" name="model-version-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Model Version"/>
                        <xml-property name="visibility" value="deployment"/>
                        <xml-property name="requires" value="model-invariant-id"/>
                        <xml-property name="dbAlias" value="model-version-id-local"/>
                        <xml-property name="privateEdge" value="service-design-and-creation/models/model/{model-invariant-id}/model-vers/model-ver/{model-version-id}"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="collectionName" name="collection-name" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="collection name"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="collectionType" name="collection-type" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Collection type"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="collectionRole" name="collection-role" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Collection Role"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="collectionFunction" name="collection-function" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Collection function"/>
                    </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"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="collectionCustomizationId" name="collection-customization-id" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Captures the id of all the configuration used to customize the resource for the service"/>
                    </xml-properties>
                </xml-element>
                <xml-element java-attribute="relationshipList" name="relationship-list" type="inventory.aai.onap.org.v13.RelationshipList"/>
                <xml-element java-attribute="resourceVersion" name="resource-version" type="java.lang.String">
                    <xml-properties>
                        <xml-property name="description" value="Used for optimistic concurrency. Must be empty on create, valid on update and delete."/>
                    </xml-properties>
                </xml-element>
            </java-attributes>
            <xml-properties>
                <xml-property name="namespace" value="network"/>
                <xml-property name="description" value="represents the collection resource in the TOSCA model"/>
                <xml-property name="uniqueProps" value="collection-id"/>
                <xml-property name="indexedProps" value="collection-id,model-invariant-id,model-version-id"/>
                <xml-property name="container" value="collections"/>
                <xml-property name="uriTemplate" value="/network/collections/collection/{collection-id}"/>
            </xml-properties>
        </java-type>

    </java-types>
</xml-bindings>