1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 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
|
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns="http://naesb.org/espi" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://naesb.org/espi" elementFormDefault="qualified" attributeFormDefault="unqualified" version="0.7.20121113">
<xs:import namespace="http://www.w3.org/2005/Atom" schemaLocation="oadr_atom.xsd"/>
<!--
=======================================
Resource Types
=======================================
-->
<xs:complexType name="IntervalBlock">
<xs:annotation>
<xs:documentation>Time sequence of Readings of the same ReadingType.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="IdentifiedObject">
<xs:sequence>
<xs:element name="interval" type="DateTimeInterval" minOccurs="0">
<xs:annotation>
<xs:documentation>Specifies the time period during which the contained readings were taken.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="IntervalReading" type="IntervalReading" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="MeterReading">
<xs:annotation>
<xs:documentation>Set of values obtained from the meter.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="IdentifiedObject"/>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ReadingType">
<xs:annotation>
<xs:documentation>Characteristics associated with all Readings included in a MeterReading.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="IdentifiedObject">
<xs:sequence>
<xs:element name="accumulationBehaviour" type="AccumulationKind" minOccurs="0">
<xs:annotation>
<xs:documentation>Code indicating how value is accumulated over time for Readings of ReadingType. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="commodity" type="CommodityKind" minOccurs="0">
<xs:annotation>
<xs:documentation>Code for commodity classification of Readings of ReadingType.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="consumptionTier" type="Int16" minOccurs="0">
<xs:annotation>
<xs:documentation>Code for consumption tier associated with a Reading of ReadingType.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="currency" type="Currency" minOccurs="0">
<xs:annotation>
<xs:documentation>Code for the currency for costs associated with this ReadingType. The valid values per the standard are defined in CurrencyCode.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="dataQualifier" type="DataQualifierKind" minOccurs="0">
<xs:annotation>
<xs:documentation>Code describing a salient attribute of Readings of ReadingType.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="defaultQuality" type="QualityOfReading" minOccurs="0">
<xs:annotation>
<xs:documentation>Default value to be used if no value of ReadingQuality.quality is provided.
Specific format and valid values per the standard are specified in QualityOfReading.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="flowDirection" type="FlowDirectionKind" minOccurs="0">
<xs:annotation>
<xs:documentation>Direction associated with current related Readings.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="intervalLength" type="UInt32" minOccurs="0">
<xs:annotation>
<xs:documentation>Default interval length specified in seconds for Readings of ReadingType.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="kind" type="MeasurementKind" minOccurs="0">
<xs:annotation>
<xs:documentation>Code for general classification of a Reading of ReadingType. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="phase" type="PhaseCodeKind" minOccurs="0">
<xs:annotation>
<xs:documentation>Code for phase information associated with Readings of ReadingType.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="powerOfTenMultiplier" type="UnitMultiplierKind" minOccurs="0">
<xs:annotation>
<xs:documentation>Code for the power of ten multiplier which, when used in combination with the uom, specifies the actual unit of measure for Readings of ReadingType.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="timeAttribute" type="TimePeriodOfInterest" minOccurs="0">
<xs:annotation>
<xs:documentation>Code used to specify a particular type of time interval method for Readings of ReadingType. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="tou" type="Int16" minOccurs="0">
<xs:annotation>
<xs:documentation>Code for the TOU type of Readings of ReadingType.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="uom" type="UnitSymbolKind" minOccurs="0">
<xs:annotation>
<xs:documentation>Code for the base unit of measure for Readings of ReadingType. Used in combination with the powerOfTenMultiplier to specify the actual unit of measure</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="cpp" type="Int16" minOccurs="0">
<xs:annotation>
<xs:documentation>[extension] Critical peak period (CPP) bucket the reading value is attributed to. Value 0 means not applicable. Even though CPP is usually considered a specialized form of time of use 'tou', this attribute is defined explicitly for flexibility.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="interharmonic" type="ReadingInterharmonic" minOccurs="0">
<xs:annotation>
<xs:documentation>[extension] Indication of a "harmonic" or "interharmonic" basis for the measurement. Value 0 in 'numerator' and 'denominator' means not applicable.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="measuringPeriod" type="TimeAttributeKind" minOccurs="0">
<xs:annotation>
<xs:documentation>[extension] Time attribute inherent or fundamental to the reading value (as opposed to 'macroPeriod' that supplies an "adjective" to describe aspects of a time period with regard to the measurement). It refers to the way the value was originally measured and not to the frequency at which it is reported or presented. For example, an hourly interval of consumption data would have value 'hourly' as an attribute. However in the case of an hourly sampled voltage value, the meterReadings schema would carry the 'hourly' interval size information.
It is common for meters to report demand in a form that is measured over the course of a portion of an hour, while enterprise applications however commonly assume the demand (in kW or kVAr) normalised to 1 hour. The sytem that receives readings directly from the meter therefore must perform this transformation before publishing readings for use by the other enterprise systems. The scalar used is chosen based on the block size (not any sub-interval size).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="argument" type="RationalNumber" minOccurs="0">
<xs:annotation>
<xs:documentation>[extension] Argument used to introduce numbers into the unit of measure description where they are needed (e.g., 4 where the measure needs an argument such as CEMI(n=4)). Most arguments used in practice however will be integers (i.e., 'denominator'=1).
Value 0 in 'numerator' and 'denominator' means not applicable.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="UsagePoint">
<xs:annotation>
<xs:documentation>Logical point on a network at which consumption or production is either physically measured (e.g., metered) or estimated (e.g., unmetered street lights).</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="IdentifiedObject">
<xs:sequence>
<xs:element name="roleFlags" type="HexBinary16" minOccurs="0">
<xs:annotation>
<xs:documentation>Specifies the roles that this usage point has been assigned. Bit 1 - isMirror Bit 2 - isPremisesAggregationPoint Bit 3 - isPEV Bit 4 - isDER Bit 5 - isRevenueQuality Bit 6 - isDC Bit 7-16 - Reserved</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ServiceCategory" type="ServiceCategory" minOccurs="0"/>
<xs:element name="status" type="UInt8" minOccurs="0">
<xs:annotation>
<xs:documentation>Specifies the current status of this usage point. Valid values include: 0 = off 1 = on</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ServiceDeliveryPoint" type="ServiceDeliveryPoint" minOccurs="0">
<xs:annotation>
<xs:documentation>[extension] Contains service delivery point information about the UsagePoint if it does represent the service delivery point.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ElectricPowerQualitySummary">
<xs:annotation>
<xs:documentation>A summary of power quality events. This information represents a summary of power quality information typically required by customer facility energy management systems. It is not intended to satisfy the detailed requirements of power quality monitoring. All values are as defined by measurementProtocol during the period. The standards typically also give ranges of allowed values; the information attributes are the raw measurements, not the "yes/no" determination by the various standards. See referenced standards for definition, measurement protocol and period.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="IdentifiedObject">
<xs:sequence>
<xs:element name="flickerPlt" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A measurement of long term Rapid Voltage Change in hundredths of a Volt. flickerPlt is derived from 2 hours of Pst values (12 values combined in cubic relationship).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="flickerPst" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>flickerPst is a value measured over 10 minutes that characterizes the likelihood that the voltage fluctuations would result in perceptible light flicker. A value of 1.0 is designed to represent the level that 50% of people would perceive flicker in a 60 watt incandescent bulb. The value reported is represented as an integer in hundredths.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="harmonicVoltage" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A measurement of the Harmonic Voltage during the period. For DC, distortion is with respect to a signal of zero Hz.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="longInterruptions" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A count of Long Interruption events (as defined by measurementProtocol) during the summary interval period.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="mainsVoltage" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A measurement of the Mains [Signaling] Voltage during the summary interval period in uV.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="measurementProtocol" type="UInt8" minOccurs="0">
<xs:annotation>
<xs:documentation>A reference to the source standard used as the measurement protocol definition. Examples are: 0 = "IEEE1519-2009" 1 = "EN50160"</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="powerFrequency" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A measurement of the power frequency during the summary interval period in uHz.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="rapidVoltageChanges" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A count of Rapid Voltage Change events during the summary interval period</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="shortInterruptions" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A count of Short Interruption events during the summary interval period</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="summaryInterval" type="DateTimeInterval">
<xs:annotation>
<xs:documentation>Interval of summary period</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="supplyVoltageDips" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A count of Supply Voltage Dip events during the summary interval period</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="supplyVoltageImbalance" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A count of Supply Voltage Imbalance events during the summary interval period</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="supplyVoltageVariations" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A count of Supply Voltage Variations during the summary interval period</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="tempOvervoltage" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>A count of Temporary Overvoltage events (as defined by measurementProtocol) during the summary interval period</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ElectricPowerUsageSummary">
<xs:annotation>
<xs:documentation>Summary of usage for a billing period</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="IdentifiedObject">
<xs:sequence>
<xs:element name="billingPeriod" type="DateTimeInterval" minOccurs="0">
<xs:annotation>
<xs:documentation>The billing period to which the included measurements apply</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="billLastPeriod" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>The amount of the bill for the previous billing period , in hundred-thousandths of the currency specified in the ReadingType for this reading (e.g., 840 = USD, US dollar).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="billToDate" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>The bill amount related to the billing period as of the date received, in hundred-thousandths of the currency specified in the ReadingType for this reading. (e.g., 840 = USD, US dollar).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="costAdditionalLastPeriod" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>Additional charges from the last billing period, in hundred-thousandths of the currency specified in the ReadingType for this reading. (e.g., 840 = USD, US dollar).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="costAdditionalDetailLastPeriod" type="LineItem" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>[extension] Additional charges from the last billing period which in total add up to costAdditionalLastPeriod</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="currency" type="Currency" minOccurs="0">
<xs:annotation>
<xs:documentation>The ISO 4217 code indicating the currency applicable to the bill amounts in the summary. See list at http://tiny.cc/4217</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="overallConsumptionLastPeriod" type="SummaryMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>[extension] The amount of energy consumed in the last billing period.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="currentBillingPeriodOverAllConsumption" type="SummaryMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>The total consumption for the billing period</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="currentDayLastYearNetConsumption" type="SummaryMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>The amount of energy consumed one year ago interpreted as same day of week same week of year (see ISO 8601).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="currentDayNetConsumption" type="SummaryMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>Net consumption for the current day (delivered - received)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="currentDayOverallConsumption" type="SummaryMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>Overall energy consumption for the current day</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="peakDemand" type="SummaryMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>Peak demand recorded for the current period</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="previousDayLastYearOverallConsumption" type="SummaryMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>The amount of energy consumed on the previous day one year ago interpreted as same day of week same week of year (see ISO 8601).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="previousDayNetConsumption" type="SummaryMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>Net consumption for the previous day</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="previousDayOverallConsumption" type="SummaryMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>The total consumption for the previous day</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="qualityOfReading" type="QualityOfReading" minOccurs="0">
<xs:annotation>
<xs:documentation>Indication of the quality of the summary readings</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ratchetDemand" type="SummaryMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>The current ratchet demand value for the ratchet demand period</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ratchetDemandPeriod" type="DateTimeInterval" minOccurs="0">
<xs:annotation>
<xs:documentation>The period over which the ratchet demand applies</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="statusTimeStamp" type="TimeType">
<xs:annotation>
<xs:documentation>Date/Time status of this UsageSummary</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="TimeConfiguration">
<xs:annotation>
<xs:documentation>[extension] Contains attributes related to the configuration of the time service.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="IdentifiedObject">
<xs:sequence>
<xs:element name="dstEndRule" type="DstRuleType">
<xs:annotation>
<xs:documentation>Rule to calculate end of daylight savings time in the current year. Result of dstEndRule must be greater than result of dstStartRule.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="dstOffset" type="TimeType">
<xs:annotation>
<xs:documentation>Daylight savings time offset from local standard time.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="dstStartRule" type="DstRuleType">
<xs:annotation>
<xs:documentation>Rule to calculate start of daylight savings time in the current year. Result of dstEndRule must be greater than result of dstStartRule.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="tzOffset" type="TimeType">
<xs:annotation>
<xs:documentation>Local time zone offset from UTCTime. Does not include any daylight savings time offsets.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<!--
=======================================
Other EUI Types
=======================================
-->
<xs:complexType name="IntervalReading">
<xs:annotation>
<xs:documentation>Specific value measured by a meter or other asset. Each Reading is associated with a specific ReadingType.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Object">
<xs:sequence>
<xs:element name="cost" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>[correction] Specifies a cost associated with this reading, in hundred-thousandths of the currency specified in the ReadingType for this reading. (e.g., 840 = USD, US dollar)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ReadingQuality" type="ReadingQuality" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="timePeriod" type="DateTimeInterval" minOccurs="0">
<xs:annotation>
<xs:documentation>The date time and duration of a reading. If not specified, readings for each "intervalLength" in ReadingType are present.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="value" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>[correction] Value in units specified by ReadingType</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ReadingQuality">
<xs:annotation>
<xs:documentation>Quality of a specific reading value or interval reading value. Note that more than one Quality may be applicable to a given Reading. Typically not used unless problems or unusual conditions occur (i.e., quality for each Reading is assumed to be 'Good' (valid) unless stated otherwise in associated ReadingQuality).</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Object">
<xs:sequence>
<xs:element name="quality" type="QualityOfReading">
<xs:annotation>
<xs:documentation>Quality, to be specified if different than ReadingType.defaultQuality. The specific format is specified per the standard is defined in QualityOfReading.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ServiceCategory">
<xs:annotation>
<xs:documentation>Category of service provided to the customer.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Object">
<xs:sequence>
<xs:element name="kind" type="ServiceKind">
<xs:annotation>
<xs:documentation>Service classification Examples are: 0 - electricity 1 - gas The list of specific valid values per the standard are itemized in ServiceKind.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="SummaryMeasurement">
<xs:annotation>
<xs:documentation>An aggregated summary measurement reading.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Object">
<xs:sequence>
<xs:element name="powerOfTenMultiplier" type="UnitMultiplierKind" minOccurs="0">
<xs:annotation>
<xs:documentation>The multiplier part of the unit of measure, e.g. "kilo" (k)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="timeStamp" type="TimeType" minOccurs="0">
<xs:annotation>
<xs:documentation>The date and time (if needed) of the summary measurement.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="uom" type="UnitSymbolKind" minOccurs="0">
<xs:annotation>
<xs:documentation>The units of the reading, e.g. "Wh"</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="value" type="Int48" minOccurs="0">
<xs:annotation>
<xs:documentation>The value of the summary measurement.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="BatchItemInfo">
<xs:annotation>
<xs:documentation>Includes elements that make it possible to include multiple transactions in a single (batch) request.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Object">
<xs:sequence>
<xs:element name="name" type="HexBinary16" minOccurs="0">
<xs:annotation>
<xs:documentation>An identifier for this object that is only unique within the containing collection.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="operation" type="CRUDOperation" minOccurs="0">
<xs:annotation>
<xs:documentation>Specifies the operation requested of this item.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="statusCode" type="StatusCode" minOccurs="0">
<xs:annotation>
<xs:documentation>Indicates the status code of the associated transaction.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="statusReason" type="String256" minOccurs="0">
<xs:annotation>
<xs:documentation>Indicates the reason for the indicated status code.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ServiceDeliveryPoint">
<xs:annotation>
<xs:documentation>[extension] Service Delivery Point is representation of revenue UsagePoint attributes</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Object">
<xs:sequence>
<xs:element name="name" type="String256" minOccurs="0">
<xs:annotation>
<xs:documentation>The name is any free human readable and possibly non unique text naming the object.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="tariffProfile" type="String256" minOccurs="0">
<xs:annotation>
<xs:documentation>A schedule of charges; structure associated with Tariff that allows the definition of complex tariff structures such as step and time of use.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="customerAgreement" type="String256" minOccurs="0">
<xs:annotation>
<xs:documentation>Agreement between the customer and the ServiceSupplier to pay for service at a specific service location. It provides for the recording of certain billing information about the type of service provided at the service location and is used during charge creation to determine the type of service.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<!--
=======================================
Basic Types
=======================================
-->
<xs:simpleType name="HexBinary128">
<xs:annotation>
<xs:documentation>A 128-bit field encoded as a hex string (32 characters / 16 octets)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:hexBinary">
<xs:maxLength value="16"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="HexBinary32">
<xs:annotation>
<xs:documentation>A 32-bit field encoded as a hex string (8 characters / 4 octets)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:hexBinary">
<xs:maxLength value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="HexBinary16">
<xs:annotation>
<xs:documentation>A 16-bit field encoded as a hex string (4 characters / 2 octets)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:hexBinary">
<xs:maxLength value="2"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="HexBinary8">
<xs:annotation>
<xs:documentation>An 8-bit field encoded as a hex string (2 characters / 1 octets)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:hexBinary">
<xs:maxLength value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="String256">
<xs:annotation>
<xs:documentation>Character string of max length 256</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="256"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="String32">
<xs:annotation>
<xs:documentation>Character string of max length 32</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="32"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="String64">
<xs:annotation>
<xs:documentation>Character string of max length 64</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="64"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="UInt16">
<xs:annotation>
<xs:documentation>Unsigned integer, max inclusive 65535 (2^16-1), same as xs:unsignedShort</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:unsignedShort"/>
</xs:simpleType>
<xs:simpleType name="UInt32">
<xs:annotation>
<xs:documentation>Unsigned integer, max inclusive 4294967295 (2^32-1), same as xs:unsignedInt</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:unsignedInt"/>
</xs:simpleType>
<xs:simpleType name="UInt48">
<xs:annotation>
<xs:documentation>Unsigned integer, max inclusive 281474976710655 (2^48-1), restriction of xs:unsignedLong</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:unsignedLong">
<xs:maxInclusive value="281474976710655"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="UInt8">
<xs:annotation>
<xs:documentation>Unsigned integer, max inclusive 255 (2^8-1), same as xs:unsignedByte</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:unsignedByte"/>
</xs:simpleType>
<xs:simpleType name="Int48">
<xs:annotation>
<xs:documentation>Signed integer, max inclusive -140737488355327 to +140737488355327 (2^47-1), restriction of xs:long</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:long">
<xs:minInclusive value="-140737488355328"/>
<xs:maxInclusive value="140737488355328"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Int16">
<xs:annotation>
<xs:documentation>Signed integer, max inclusive (2^16-1), restriction of xs:short</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:short"/>
</xs:simpleType>
<xs:simpleType name="TimeType">
<xs:annotation>
<xs:documentation>Time is a signed 64-bit value representing the number of seconds since 0 hours, 0 minutes, 0 seconds, on the 1st of January, 1970.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:long"/>
</xs:simpleType>
<!--
=======================================
Additional Complex Types
=======================================
-->
<xs:complexType name="DateTimeInterval">
<xs:annotation>
<xs:documentation>Interval of date and time. End is not included because it can be derived from the start and the duration.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Object">
<xs:sequence>
<xs:element name="duration" type="UInt32" minOccurs="0">
<xs:annotation>
<xs:documentation>[correction] Duration of the interval, in seconds.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="start" type="TimeType" minOccurs="0">
<xs:annotation>
<xs:documentation>[correction] Date and time that this interval started.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="IdentifiedObject">
<xs:annotation>
<xs:documentation>This is a root class to provide common naming attributes for all classes needing naming attributes</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Object">
<xs:sequence>
<xs:element name="batchItemInfo" type="BatchItemInfo" minOccurs="0"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:simpleType name="UUIDType">
<xs:annotation>
<xs:documentation>This pattern defines a UUID </xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="Object">
<xs:annotation>
<xs:documentation>Superclass of all object classes to allow extensions.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="extension" type="xs:anyType" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Contains an extension.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ServiceStatus">
<xs:annotation>
<xs:documentation>Contains the current status of the service.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Object">
<xs:sequence>
<xs:element name="currentStatus" type="ESPIServiceStatus">
<xs:annotation>
<xs:documentation>The current status of the service.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="RationalNumber">
<xs:annotation>
<xs:documentation>[extension] Rational number = 'numerator' / 'denominator'.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="numerator" type="xs:integer" minOccurs="0"/>
<xs:element name="denominator" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ReadingInterharmonic">
<xs:annotation>
<xs:documentation>[extension] Interharmonics are represented as a rational number 'numerator' / 'denominator', and harmonics are represented using the same mechanism and identified by 'denominator'=1.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="numerator" type="xs:integer" minOccurs="0"/>
<xs:element name="denominator" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="LineItem">
<xs:annotation>
<xs:documentation>[extension] Line item of detail for additional cost</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="amount" type="Int48"/>
<xs:element name="rounding" type="Int48" minOccurs="0"/>
<xs:element name="dateTime" type="TimeType"/>
<xs:element name="note" type="String256"/>
</xs:sequence>
</xs:complexType>
<!--
=======================================
Enumerations
=======================================
-->
<xs:simpleType name="AccumulationKind">
<xs:annotation>
<xs:documentation>Code indicating how value is accumulated over time for Readings of ReadingType. The list of valid values per the standard are defined in AccumulationBehaviorType.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>none</xs:appinfo>
<xs:documentation>Not Applicable, or implied by the unit of measure.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>bulkQuantity</xs:appinfo>
<xs:documentation>A value from a register which represents the bulk quantity of a commodity. This quantity is computed as the integral of the commodity usage rate. This value is typically used as the basis for the dial reading at the meter, and as a result, will roll over upon reaching a maximum dial value. Note 1: With the metering system, the roll-over behaviour typically implies a roll-under behavior so that the value presented is always a positive value (e.g. unsigned integer or positive decimal.) However, when communicating data between enterprise applications a negative value might occur in a case such as net metering.Note 2: A BulkQuantity refers primarily to the dial reading and not the consumption over a specific period of time.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>continuousCumulative</xs:appinfo>
<xs:documentation>The sum of the previous billing period values and the present period value. Note: “ContinuousCumulative” is commonly used in conjunction with “demand.” The “ContinuousCumulative Demand” would be the cumulative sum of the previous billing period maximum demand values (as occurring with each demand reset) summed with the present period maximum demand value (which has yet to be reset.)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>cumulative</xs:appinfo>
<xs:documentation>The sum of the previous billing period values. Note: “Cumulative” is commonly used in conjunction with “demand.” Each demand reset causes the maximum demand value for the present billing period (since the last demand reset) to accumulate as an accumulative total of all maximum demands. So instead of “zeroing” the demand register, a demand reset has the affect of adding the present maximum demand to this accumulating total.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>deltaData</xs:appinfo>
<xs:documentation>The difference between the value at the end of the prescribed interval and the beginning of the interval. This is used for incremental interval data. Note: One common application would be for load profile data, another use might be to report the number of events within an interval (such as the number of equipment energizations within the specified period of time.)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="6">
<xs:annotation>
<xs:appinfo>indicating</xs:appinfo>
<xs:documentation>As if a needle is swung out on the meter face to a value to indicate the current value. (Note: An “indicating” value is typically measured over hundreds of milliseconds or greater, or may imply a “pusher” mechanism to capture a value. Compare this to “instantaneous” which is measured over a shorter period of time.)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="9">
<xs:annotation>
<xs:appinfo>summation</xs:appinfo>
<xs:documentation>A form of accumulation which is selective with respect to time. Note : “Summation” could be considered a specialization of “Bulk Quantity” according to the rules of inheritance where “Summation” selectively accumulates pulses over a timing pattern, and “BulkQuantity” accumulates pulses all of the time.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="10">
<xs:annotation>
<xs:appinfo>timeDelay</xs:appinfo>
<xs:documentation>A form of computation which introduces a time delay characteristic to the data value</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="12">
<xs:annotation>
<xs:appinfo>instantaneous</xs:appinfo>
<xs:documentation>Typically measured over the fastest period of time allowed by the definition of the metric (usually milliseconds or tens of milliseconds.) (Note: “Instantaneous” was moved to attribute #3 in 61968-9Ed2 from attribute #1 in 61968-9Ed1.)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="13">
<xs:annotation>
<xs:appinfo>latchingQuantity</xs:appinfo>
<xs:documentation>When this description is applied to a metered value, it implies that the value is a time-independent cumulative quantity much a BulkQuantity, except that it latches upon the maximum value upon reaching that value. Any additional accumulation (positive or negative) is discarded until a reset occurs. Note: A LatchingQuantity may also occur in the downward direction – upon reaching a minimum value. The terms “maximum” or “minimum” will usually be included as an attribute when this type of accumulation behaviour is present.When this description is applied to an encoded value (UOM= “Code”), it implies that the value has one or more bits which are latching. The condition that caused the bit to be set may have long since evaporated.In either case, the timestamp that accompanies the value may not coincide with the moment the value was initially set.In both cases a system will need to perform an operation to clear the latched value.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="14">
<xs:annotation>
<xs:appinfo>boundedQuantity</xs:appinfo>
<xs:documentation>A time-independent cumulative quantity much a BulkQuantity or a LatchingQuantity, except that the accumulation stops at the maximum or minimum values. When the maximum is reached, any additional positive accumulation is discarded, but negative accumulation may be accepted (thus lowering the counter.) Likewise, when the negative bound is reached, any additional negative accumulation is discarded, but positive accumulation is accepted (thus increasing the counter.)</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="CommodityKind">
<xs:annotation>
<xs:documentation>Code for commodity classification of Readings of ReadingType. The valid values per the standard are defined in CommodityType.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>none</xs:appinfo>
<xs:documentation>Not Applicable</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>electricity SecondaryMetered</xs:appinfo>
<xs:documentation>All types of metered quantities. This type of reading comes from the meter and represents a “secondary” metered value.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>electricity PrimaryMetere</xs:appinfo>
<xs:documentation>It is possible for a meter to be outfitted with an external VT and/or CT. The meter might not be aware of these devices, and the display not compensate for their presence. Ultimately, when these scalars are applied, the value that represents the service value is called the “primary metered” value. The “index” in sub-category 3 mirrors those of sub-category 0.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>communication</xs:appinfo>
<xs:documentation>A measurement of the communication infrastructure itself.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>air</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="5">
<xs:annotation>
<xs:appinfo>insulativeGas</xs:appinfo>
<xs:documentation>(SF6 is found separately below.)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="6">
<xs:annotation>
<xs:appinfo>insulativeOil</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="7">
<xs:annotation>
<xs:appinfo>naturalGas</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="8">
<xs:annotation>
<xs:appinfo>propane</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="9">
<xs:annotation>
<xs:appinfo>potableWater</xs:appinfo>
<xs:documentation>Drinkable water</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="10">
<xs:annotation>
<xs:appinfo>steam</xs:appinfo>
<xs:documentation>Water in steam form, usually used for heating.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="11">
<xs:annotation>
<xs:appinfo>wasteWater</xs:appinfo>
<xs:documentation>(Sewerage)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="12">
<xs:annotation>
<xs:appinfo>heatingFluid</xs:appinfo>
<xs:documentation>This fluid is likely in liquid form. It is not necessarily water or water based. The warm fluid returns cooler than when it was sent. The heat conveyed may be metered.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="13">
<xs:annotation>
<xs:appinfo>coolingFluid</xs:appinfo>
<xs:documentation>The cool fluid returns warmer than when it was sent. The heat conveyed may be metered.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="14">
<xs:annotation>
<xs:appinfo>nonpotableWater</xs:appinfo>
<xs:documentation>Reclaimed water – possibly used for irrigation but not sufficiently treated to be considered safe for drinking.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="15">
<xs:annotation>
<xs:appinfo>nox</xs:appinfo>
<xs:documentation>Nitrous Oxides NOX</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="16">
<xs:annotation>
<xs:appinfo>so2</xs:appinfo>
<xs:documentation>Sulfur Dioxide SO2</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="17">
<xs:annotation>
<xs:appinfo>ch4</xs:appinfo>
<xs:documentation>Methane CH4</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="18">
<xs:annotation>
<xs:appinfo>co2</xs:appinfo>
<xs:documentation>Carbon Dioxide CO2</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="19">
<xs:annotation>
<xs:appinfo>carbon</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="20">
<xs:annotation>
<xs:appinfo>hch</xs:appinfo>
<xs:documentation>Hexachlorocyclohexane HCH</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="21">
<xs:annotation>
<xs:appinfo>pfc</xs:appinfo>
<xs:documentation>Perfluorocarbons PFC</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="22">
<xs:annotation>
<xs:appinfo>sf6</xs:appinfo>
<xs:documentation>Sulfurhexafluoride SF6</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="23">
<xs:annotation>
<xs:appinfo>tvLicence</xs:appinfo>
<xs:documentation>Television</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="24">
<xs:annotation>
<xs:appinfo>internet</xs:appinfo>
<xs:documentation>Internet service</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="25">
<xs:annotation>
<xs:appinfo>refuse</xs:appinfo>
<xs:documentation>trash</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="Currency">
<xs:annotation>
<xs:documentation>Code for the currency for costs associated with this ReadingType. The valid values per the standard are defined in CurrencyCode.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="840">
<xs:annotation>
<xs:appinfo>USD</xs:appinfo>
<xs:documentation>US dollar</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="978">
<xs:annotation>
<xs:appinfo>EUR</xs:appinfo>
<xs:documentation>European euro</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="36">
<xs:annotation>
<xs:appinfo>AUD</xs:appinfo>
<xs:documentation>Australian dollar</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="124">
<xs:annotation>
<xs:appinfo>CAD</xs:appinfo>
<xs:documentation>Canadian dollar</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="756">
<xs:annotation>
<xs:appinfo>CHF</xs:appinfo>
<xs:documentation>Swiss francs</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="156">
<xs:annotation>
<xs:appinfo>CNY</xs:appinfo>
<xs:documentation>Chinese yuan renminbi</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="208">
<xs:annotation>
<xs:appinfo>DKK</xs:appinfo>
<xs:documentation>Danish crown</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="826">
<xs:annotation>
<xs:appinfo>GBP</xs:appinfo>
<xs:documentation>British pound</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="392">
<xs:annotation>
<xs:appinfo>JPY</xs:appinfo>
<xs:documentation>Japanese yen</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="578">
<xs:annotation>
<xs:appinfo>NOK</xs:appinfo>
<xs:documentation>Norwegian crown</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="643">
<xs:annotation>
<xs:appinfo>RUB</xs:appinfo>
<xs:documentation>Russian ruble</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="752">
<xs:annotation>
<xs:appinfo>SEK</xs:appinfo>
<xs:documentation>Swedish crown</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="356">
<xs:annotation>
<xs:appinfo>INR</xs:appinfo>
<xs:documentation>India rupees</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>other</xs:appinfo>
<xs:documentation>Another type of currency.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="DataQualifierKind">
<xs:annotation>
<xs:documentation>Code describing a salient attribute of Readings of ReadingType. Valid values per the standard are defined in DataQualifierType.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>none</xs:appinfo>
<xs:documentation>Not Applicable</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>average</xs:appinfo>
<xs:documentation>Average value</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>excess</xs:appinfo>
<xs:documentation>The value represents an amount over which a threshold was exceeded.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="5">
<xs:annotation>
<xs:appinfo>highThreshold</xs:appinfo>
<xs:documentation>The value represents a programmed threshold.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="7">
<xs:annotation>
<xs:appinfo>lowThreshold</xs:appinfo>
<xs:documentation>The value represents a programmed threshold.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="8">
<xs:annotation>
<xs:appinfo>maximum</xs:appinfo>
<xs:documentation>The highest value observed</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="9">
<xs:annotation>
<xs:appinfo>minimum</xs:appinfo>
<xs:documentation>The smallest value observed</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="11">
<xs:annotation>
<xs:appinfo>nominal</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="12">
<xs:annotation>
<xs:appinfo>normal</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="16">
<xs:annotation>
<xs:appinfo>secondMaximum</xs:appinfo>
<xs:documentation>The second highest value observed</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="17">
<xs:annotation>
<xs:appinfo>secondMinimum</xs:appinfo>
<xs:documentation>The second smallest value observed</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="23">
<xs:annotation>
<xs:appinfo>thirdMaximum</xs:appinfo>
<xs:documentation>The third highest value observed</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="24">
<xs:annotation>
<xs:appinfo>fourthMaximum</xs:appinfo>
<xs:documentation>The fourth highest value observed</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="25">
<xs:annotation>
<xs:appinfo>fifthMaximum</xs:appinfo>
<xs:documentation>The fifth highest value observed</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="26">
<xs:annotation>
<xs:appinfo>sum</xs:appinfo>
<xs:documentation>The accumulated sum</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="FlowDirectionKind">
<xs:annotation>
<xs:documentation>Direction associated with current related Readings. valid values per the standard are defined in FlowDirectionType.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>none</xs:appinfo>
<xs:documentation>Not Applicable (N/A)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>forward</xs:appinfo>
<xs:documentation>"Delivered," or "Imported" as defined 61968-2.Forward Active Energy is a positive kWh value as one would naturally expect to find as energy is supplied by the utility and consumed at the service.Forward Reactive Energy is a positive VArh value as one would naturally expect to find in the presence of inductive loading.In polyphase metering, the forward energy register is incremented when the sum of the phase energies is greater than zero.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>lagging</xs:appinfo>
<xs:documentation>Typically used to describe that a power factor is lagging the reference value. Note 1: When used to describe VA, “lagging” describes a form of measurement where reactive power is considered in all four quadrants, but real power is considered only in quadrants I and IV.Note 2: When used to describe power factor, the term “Lagging” implies that the PF is negative. The term “lagging” in this case takes the place of the negative sign. If a signed PF value is to be passed by the data producer, then the direction of flow enumeration zero (none) should be used in order to avoid the possibility of creating an expression that employs a double negative. The data consumer should be able to tell from the sign of the data if the PF is leading or lagging. This principle is analogous to the concept that “Reverse” energy is an implied negative value, and to publish a negative reverse value would be ambiguous.Note 3: Lagging power factors typically indicate inductive loading.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>leading</xs:appinfo>
<xs:documentation>Typically used to describe that a power factor is leading the reference value.Note: Leading power factors typically indicate capacitive loading.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>net</xs:appinfo>
<xs:documentation>|Forward| - |Reverse|, See 61968-2.Note: In some systems, the value passed as a “net” value could become negative. In other systems the value passed as a “net” value is always a positive number, and rolls-over and rolls-under as needed.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="5">
<xs:annotation>
<xs:appinfo>q1plusQ2</xs:appinfo>
<xs:documentation>Reactive positive quadrants. (The term “lagging” is preferred.)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="7">
<xs:annotation>
<xs:appinfo>q1plusQ3</xs:appinfo>
<xs:documentation>Quadrants 1 and 3</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="8">
<xs:annotation>
<xs:appinfo>q1plusQ4</xs:appinfo>
<xs:documentation>Quadrants 1 and 4 usually represent forward active energy</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="9">
<xs:annotation>
<xs:appinfo>q1minusQ4</xs:appinfo>
<xs:documentation>Q1 minus Q4</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="10">
<xs:annotation>
<xs:appinfo>q2plusQ3</xs:appinfo>
<xs:documentation>Quadrants 2 and 3 usually represent reverse active energy</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="11">
<xs:annotation>
<xs:appinfo>q2plusQ4</xs:appinfo>
<xs:documentation>Quadrants 2 and 4</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="12">
<xs:annotation>
<xs:appinfo>q2minusQ3</xs:appinfo>
<xs:documentation>Q2 minus Q3</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="13">
<xs:annotation>
<xs:appinfo>q3plusQ4</xs:appinfo>
<xs:documentation>Reactive negative quadrants. (The term “leading” is preferred.)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="14">
<xs:annotation>
<xs:appinfo>q3minusQ2</xs:appinfo>
<xs:documentation>Q3 minus Q2</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="15">
<xs:annotation>
<xs:appinfo>quadrant1</xs:appinfo>
<xs:documentation>Q1 only</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="16">
<xs:annotation>
<xs:appinfo>quadrant2</xs:appinfo>
<xs:documentation>Q2 only</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="17">
<xs:annotation>
<xs:appinfo>quadrant3</xs:appinfo>
<xs:documentation>Q3 only</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="18">
<xs:annotation>
<xs:appinfo>quadrant4</xs:appinfo>
<xs:documentation>Q4 only</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="19">
<xs:annotation>
<xs:appinfo>reverse</xs:appinfo>
<xs:documentation>Reverse Active Energy is equivalent to "Received," or "Exported" as defined in 61968-2.Reverse Active Energy is a positive kWh value as one would expect to find when energy is backfed by the service onto the utility network.Reverse Reactive Energy is a positive VArh value as one would expect to find in the presence of capacitive loading and a leading Power Factor.In polyphase metering, the reverse energy register is incremented when the sum of the phase energies is less than zero.Note: The value passed as a reverse value is always a positive value. It is understood by the label “reverse” that it represents negative flow.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="20">
<xs:annotation>
<xs:appinfo>total</xs:appinfo>
<xs:documentation>|Forward| + |Reverse|, See 61968-2.The sum of the commodity in all quadrants Q1+Q2+Q3+Q4.In polyphase metering, the total energy register is incremented when the absolute value of the sum of the phase energies is greater than zero.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="21">
<xs:annotation>
<xs:appinfo>totalByPhase</xs:appinfo>
<xs:documentation>In polyphase metering, the total by phase energy register is incremented when the sum of the absolute values of the phase energies is greater than zero.In single phase metering, the formulas for “Total” and “Total by phase” collapse to the same expression. For communication purposes however, the “Total” enumeration should be used with single phase meter data.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="MeasurementKind">
<xs:annotation>
<xs:documentation>Name of physical measurement</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>none</xs:appinfo>
<xs:documentation>Not Applicable</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>apparentPowerFactor</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>currency</xs:appinfo>
<xs:documentation>funds</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>current</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="5">
<xs:annotation>
<xs:appinfo>currentAngle</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="6">
<xs:annotation>
<xs:appinfo>currentImbalance</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="7">
<xs:annotation>
<xs:appinfo>date</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="8">
<xs:annotation>
<xs:appinfo>demand</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="9">
<xs:annotation>
<xs:appinfo>distance</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="10">
<xs:annotation>
<xs:appinfo>distortionVoltAmperes</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="11">
<xs:annotation>
<xs:appinfo>energization</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="12">
<xs:annotation>
<xs:appinfo>energy</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="13">
<xs:annotation>
<xs:appinfo>energizationLoadSide</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="14">
<xs:annotation>
<xs:appinfo>fan</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="15">
<xs:annotation>
<xs:appinfo>frequency</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="16">
<xs:annotation>
<xs:appinfo>Funds</xs:appinfo>
<xs:documentation>Dup with “currency”</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="17">
<xs:annotation>
<xs:appinfo>ieee1366ASAI</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="18">
<xs:annotation>
<xs:appinfo>ieee1366ASIDI</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="19">
<xs:annotation>
<xs:appinfo>ieee1366ASIFI</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="20">
<xs:annotation>
<xs:appinfo>ieee1366CAIDI</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="21">
<xs:annotation>
<xs:appinfo>ieee1366CAIFI</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="22">
<xs:annotation>
<xs:appinfo>ieee1366CEMIn</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="23">
<xs:annotation>
<xs:appinfo>ieee1366CEMSMIn</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="24">
<xs:annotation>
<xs:appinfo>ieee1366CTAIDI</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="25">
<xs:annotation>
<xs:appinfo>ieee1366MAIFI</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="26">
<xs:annotation>
<xs:appinfo>ieee1366MAIFIe</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="27">
<xs:annotation>
<xs:appinfo>ieee1366SAIDI</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="28">
<xs:annotation>
<xs:appinfo>ieee1366SAIFI</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="31">
<xs:annotation>
<xs:appinfo>lineLosses</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="32">
<xs:annotation>
<xs:appinfo>losses</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="33">
<xs:annotation>
<xs:appinfo>negativeSequence</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="34">
<xs:annotation>
<xs:appinfo>phasorPowerFactor</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="35">
<xs:annotation>
<xs:appinfo>phasorReactivePower</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="36">
<xs:annotation>
<xs:appinfo>positiveSequence</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="37">
<xs:annotation>
<xs:appinfo>power</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="38">
<xs:annotation>
<xs:appinfo>powerFactor</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="40">
<xs:annotation>
<xs:appinfo>quantityPower</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="41">
<xs:annotation>
<xs:appinfo>sag</xs:appinfo>
<xs:documentation>or Voltage Dip</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="42">
<xs:annotation>
<xs:appinfo>swell</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="43">
<xs:annotation>
<xs:appinfo>switchPosition</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="44">
<xs:annotation>
<xs:appinfo>tapPosition</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="45">
<xs:annotation>
<xs:appinfo>tariffRate</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="46">
<xs:annotation>
<xs:appinfo>temperature</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="47">
<xs:annotation>
<xs:appinfo>totalHarmonicDistortion</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="48">
<xs:annotation>
<xs:appinfo>transformerLosses</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="49">
<xs:annotation>
<xs:appinfo>unipedeVoltageDip10to15</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="50">
<xs:annotation>
<xs:appinfo>unipedeVoltageDip15to30</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="51">
<xs:annotation>
<xs:appinfo>unipedeVoltageDip30to60</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="52">
<xs:annotation>
<xs:appinfo>unipedeVoltageDip60to90</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="53">
<xs:annotation>
<xs:appinfo>unipedeVoltageDip90to100</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="54">
<xs:annotation>
<xs:appinfo>voltage</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="55">
<xs:annotation>
<xs:appinfo>voltageAngle</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="56">
<xs:annotation>
<xs:appinfo>voltageExcursion</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="57">
<xs:annotation>
<xs:appinfo>voltageImbalance</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="58">
<xs:annotation>
<xs:appinfo>volume</xs:appinfo>
<xs:documentation>Clarified from Ed. 1. to indicate fluid volume</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="59">
<xs:annotation>
<xs:appinfo>zeroFlowDuration</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="60">
<xs:annotation>
<xs:appinfo>zeroSequence</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="64">
<xs:annotation>
<xs:appinfo>distortionPowerFactor</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="81">
<xs:annotation>
<xs:appinfo>frequencyExcursion</xs:appinfo>
<xs:documentation>Usually expressed as a “count”</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="90">
<xs:annotation>
<xs:appinfo>applicationContext</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="91">
<xs:annotation>
<xs:appinfo>apTitle</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="92">
<xs:annotation>
<xs:appinfo>assetNumber</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="93">
<xs:annotation>
<xs:appinfo>bandwidth</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="94">
<xs:annotation>
<xs:appinfo>batteryVoltage</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="95">
<xs:annotation>
<xs:appinfo>broadcastAddress</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="96">
<xs:annotation>
<xs:appinfo>deviceAddressType1</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="97">
<xs:annotation>
<xs:appinfo>deviceAddressType2</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="98">
<xs:annotation>
<xs:appinfo>deviceAddressType3</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="99">
<xs:annotation>
<xs:appinfo>deviceAddressType4</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="100">
<xs:annotation>
<xs:appinfo>deviceClass</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="101">
<xs:annotation>
<xs:appinfo>electronicSerialNumber</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="102">
<xs:annotation>
<xs:appinfo>endDeviceID</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="103">
<xs:annotation>
<xs:appinfo>groupAddressType1</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="104">
<xs:annotation>
<xs:appinfo>groupAddressType2</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="105">
<xs:annotation>
<xs:appinfo>groupAddressType3</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="106">
<xs:annotation>
<xs:appinfo>groupAddressType4</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="107">
<xs:annotation>
<xs:appinfo>ipAddress</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="108">
<xs:annotation>
<xs:appinfo>macAddress</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="109">
<xs:annotation>
<xs:appinfo>mfgAssignedConfigurationID</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="110">
<xs:annotation>
<xs:appinfo>mfgAssignedPhysicalSerialNumber</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="111">
<xs:annotation>
<xs:appinfo>mfgAssignedProductNumber</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="112">
<xs:annotation>
<xs:appinfo>mfgAssignedUniqueCommunicationAddress</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="113">
<xs:annotation>
<xs:appinfo>multiCastAddress</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="114">
<xs:annotation>
<xs:appinfo>oneWayAddress</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="115">
<xs:annotation>
<xs:appinfo>signalStrength</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="116">
<xs:annotation>
<xs:appinfo>twoWayAddress</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="117">
<xs:annotation>
<xs:appinfo>signaltoNoiseRatio</xs:appinfo>
<xs:documentation>Moved here from Attribute #9 UOM</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="118">
<xs:annotation>
<xs:appinfo>alarm</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="119">
<xs:annotation>
<xs:appinfo>batteryCarryover</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="120">
<xs:annotation>
<xs:appinfo>dataOverflowAlarm</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="121">
<xs:annotation>
<xs:appinfo>demandLimit</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="122">
<xs:annotation>
<xs:appinfo>demandReset</xs:appinfo>
<xs:documentation>Usually expressed as a count as part of a billing cycle</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="123">
<xs:annotation>
<xs:appinfo>diagnostic</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="124">
<xs:annotation>
<xs:appinfo>emergencyLimit</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="125">
<xs:annotation>
<xs:appinfo>encoderTamper</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="126">
<xs:annotation>
<xs:appinfo>ieee1366MomentaryInterruption</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="127">
<xs:annotation>
<xs:appinfo>ieee1366MomentaryInterruptionEvent</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="128">
<xs:annotation>
<xs:appinfo>ieee1366SustainedInterruption</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="129">
<xs:annotation>
<xs:appinfo>interruptionBehaviour</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="130">
<xs:annotation>
<xs:appinfo>inversionTamper</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="131">
<xs:annotation>
<xs:appinfo>loadInterrupt</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="132">
<xs:annotation>
<xs:appinfo>loadShed</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="133">
<xs:annotation>
<xs:appinfo>maintenance</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="134">
<xs:annotation>
<xs:appinfo>physicalTamper</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="135">
<xs:annotation>
<xs:appinfo>powerLossTamper</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="136">
<xs:annotation>
<xs:appinfo>powerOutage</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="137">
<xs:annotation>
<xs:appinfo>powerQuality</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="138">
<xs:annotation>
<xs:appinfo>powerRestoration</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="139">
<xs:annotation>
<xs:appinfo>programmed</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="140">
<xs:annotation>
<xs:appinfo>pushbutton</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="141">
<xs:annotation>
<xs:appinfo>relayActivation</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="142">
<xs:annotation>
<xs:appinfo>relayCycle</xs:appinfo>
<xs:documentation>Usually expressed as a count</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="143">
<xs:annotation>
<xs:appinfo>removalTamper</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="144">
<xs:annotation>
<xs:appinfo>reprogrammingTamper</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="145">
<xs:annotation>
<xs:appinfo>reverseRotationTamper</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="146">
<xs:annotation>
<xs:appinfo>switchArmed</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="147">
<xs:annotation>
<xs:appinfo>switchDisabled</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="148">
<xs:annotation>
<xs:appinfo>tamper</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="149">
<xs:annotation>
<xs:appinfo>watchdogTimeout</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="150">
<xs:annotation>
<xs:appinfo>billLastPeriod</xs:appinfo>
<xs:documentation>Customer’s bill for the previous billing period (Currency)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="151">
<xs:annotation>
<xs:appinfo>billToDate</xs:appinfo>
<xs:documentation>Customer’s bill, as known thus far within the present billing period (Currency)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="152">
<xs:annotation>
<xs:appinfo>billCarryover</xs:appinfo>
<xs:documentation>Customer’s bill for the (Currency)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="153">
<xs:annotation>
<xs:appinfo>connectionFee</xs:appinfo>
<xs:documentation>Monthly fee for connection to commodity.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="154">
<xs:annotation>
<xs:appinfo>audibleVolume</xs:appinfo>
<xs:documentation>Sound</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="155">
<xs:annotation>
<xs:appinfo>volumetricFlow</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="PhaseCodeKind">
<xs:annotation>
<xs:documentation>Enumeration of phase identifiers. Allows designation of phases for both transmission and distribution equipment, circuits and loads.Residential and small commercial loads are often served from single-phase, or split-phase, secondary circuits. Phases 1 and 2 refer to hot wires that are 180 degrees out of phase, while N refers to the neutral wire. Through single-phase transformer connections, these secondary circuits may be served from one or two of the primary phases A, B, and C. For three-phase loads, use the A, B, C phase codes instead of s12N.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="225">
<xs:annotation>
<xs:appinfo>ABCN</xs:appinfo>
<xs:documentation>ABC to Neutral</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="224">
<xs:annotation>
<xs:appinfo>ABC</xs:appinfo>
<xs:documentation>Involving all phases</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="193">
<xs:annotation>
<xs:appinfo>ABN</xs:appinfo>
<xs:documentation>AB to Neutral</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="97">
<xs:annotation>
<xs:appinfo>ACN</xs:appinfo>
<xs:documentation>Phases A, C and neutral.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="97">
<xs:annotation>
<xs:appinfo>BCN</xs:appinfo>
<xs:documentation>BC to neutral.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="132">
<xs:annotation>
<xs:appinfo>AB</xs:appinfo>
<xs:documentation>Phases A to B</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="96">
<xs:annotation>
<xs:appinfo>AC</xs:appinfo>
<xs:documentation>Phases A and C</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="66">
<xs:annotation>
<xs:appinfo>BC</xs:appinfo>
<xs:documentation>Phases B to C</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="129">
<xs:annotation>
<xs:appinfo>AN</xs:appinfo>
<xs:documentation>Phases A to neutral.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="65">
<xs:annotation>
<xs:appinfo>BN</xs:appinfo>
<xs:documentation>Phases B to neutral.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="33">
<xs:annotation>
<xs:appinfo>CN</xs:appinfo>
<xs:documentation>Phases C to neutral.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="128">
<xs:annotation>
<xs:appinfo>A</xs:appinfo>
<xs:documentation>Phase A.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="64">
<xs:annotation>
<xs:appinfo>B</xs:appinfo>
<xs:documentation>Phase B.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="32">
<xs:annotation>
<xs:appinfo>C</xs:appinfo>
<xs:documentation>Phase C.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="16">
<xs:annotation>
<xs:appinfo>N</xs:appinfo>
<xs:documentation>Neutral</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="272">
<xs:annotation>
<xs:appinfo>S2N</xs:appinfo>
<xs:documentation>Phase S2 to neutral.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="784">
<xs:annotation>
<xs:appinfo>S12N</xs:appinfo>
<xs:documentation>Phase S1, S2 to neutral.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="528">
<xs:annotation>
<xs:appinfo>S1N</xs:appinfo>
<xs:documentation>Phase S1 to Neutral</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="256">
<xs:annotation>
<xs:appinfo>S2</xs:appinfo>
<xs:documentation>Phase S2.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="768">
<xs:annotation>
<xs:appinfo>S12</xs:appinfo>
<xs:documentation>Phase S1 to S2</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>none</xs:appinfo>
<xs:documentation>Not applicable to any phase</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="136">
<xs:annotation>
<xs:appinfo>AtoAv</xs:appinfo>
<xs:documentation>Phase A current relative to Phase A voltage</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="72">
<xs:annotation>
<xs:appinfo>BAv</xs:appinfo>
<xs:documentation>Phase B current or voltage relative to Phase A voltage</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="41">
<xs:annotation>
<xs:appinfo>CAN</xs:appinfo>
<xs:documentation>CA to Neutral</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="40">
<xs:annotation>
<xs:appinfo>CAv</xs:appinfo>
<xs:documentation>hase C current or voltage relative to Phase A voltage</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="17">
<xs:annotation>
<xs:appinfo>NG</xs:appinfo>
<xs:documentation>Neutral to ground</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="512">
<xs:annotation>
<xs:appinfo>S1</xs:appinfo>
<xs:documentation>Phase S1</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="UnitMultiplierKind">
<xs:annotation>
<xs:documentation>The power of ten unit multipliers.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="Int16">
<xs:simpleType>
<xs:restriction base="Int16">
<xs:enumeration value="-12">
<xs:annotation>
<xs:appinfo>p</xs:appinfo>
<xs:documentation>Pico 10**-12</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="-9">
<xs:annotation>
<xs:appinfo>n</xs:appinfo>
<xs:documentation>Nano 10**-9</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="-6">
<xs:annotation>
<xs:appinfo>micro</xs:appinfo>
<xs:documentation>Micro 10**-6</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="-3">
<xs:annotation>
<xs:appinfo>m</xs:appinfo>
<xs:documentation>Milli 10**-3</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="-2">
<xs:annotation>
<xs:appinfo>c</xs:appinfo>
<xs:documentation>Centi 10**-2</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="-1">
<xs:annotation>
<xs:appinfo>d</xs:appinfo>
<xs:documentation>Deci 10**-1</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>k</xs:appinfo>
<xs:documentation>Kilo 10**3</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="6">
<xs:annotation>
<xs:appinfo>M</xs:appinfo>
<xs:documentation>Mega 10**6</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="9">
<xs:annotation>
<xs:appinfo>G</xs:appinfo>
<xs:documentation>Giga 10**9</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="12">
<xs:annotation>
<xs:appinfo>T</xs:appinfo>
<xs:documentation>Tera 10**12</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>none</xs:appinfo>
<xs:documentation>Not Applicable or "x1"</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>da</xs:appinfo>
<xs:documentation>deca 10**1</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>h</xs:appinfo>
<xs:documentation>hecto 10**2</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="QualityOfReading">
<xs:annotation>
<xs:documentation>List of codes indicating the quality of the reading</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>valid</xs:appinfo>
<xs:documentation>data that has gone through all required validation checks and either passed them all or has been verified</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="7">
<xs:annotation>
<xs:appinfo>manually edited</xs:appinfo>
<xs:documentation>Replaced or approved by a human</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="8">
<xs:annotation>
<xs:appinfo>estimated using reference day</xs:appinfo>
<xs:documentation>data value was replaced by a machine computed value based on analysis of historical data using the same type of measurement.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="9">
<xs:annotation>
<xs:appinfo>estimated using linear interpolation</xs:appinfo>
<xs:documentation>data value was computed using linear interpolation based on the readings before and after it</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="10">
<xs:annotation>
<xs:appinfo>questionable</xs:appinfo>
<xs:documentation>data that has failed one or more checks</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="11">
<xs:annotation>
<xs:appinfo>derived</xs:appinfo>
<xs:documentation>data that has been calculated (using logic or mathematical operations)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="12">
<xs:annotation>
<xs:appinfo>projected (forecast)</xs:appinfo>
<xs:documentation>data that has been calculated as a projection or forecast of future readings</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="13">
<xs:annotation>
<xs:appinfo>mixed</xs:appinfo>
<xs:documentation>indicates that the quality of this reading has mixed characteristics</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="14">
<xs:annotation>
<xs:appinfo>raw</xs:appinfo>
<xs:documentation>data that has not gone through the validation</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="15">
<xs:annotation>
<xs:appinfo>normalized for weather</xs:appinfo>
<xs:documentation>the values have been adjusted to account for weather</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="16">
<xs:annotation>
<xs:appinfo>other</xs:appinfo>
<xs:documentation>specifies that a characteristic applies other than those defined</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="17">
<xs:annotation>
<xs:appinfo>validated</xs:appinfo>
<xs:documentation>data that has been validated and possibly edited and/or estimated in accordance with approved procedures</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="18">
<xs:annotation>
<xs:appinfo>verified</xs:appinfo>
<xs:documentation>data that failed at least one of the required validation checks but was determined to represent actual usage</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="ServiceKind">
<xs:annotation>
<xs:documentation>Kind of service represented by the UsagePoint</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>electricity</xs:appinfo>
<xs:documentation>Electricity service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>gas</xs:appinfo>
<xs:documentation>Gas service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>water</xs:appinfo>
<xs:documentation>Water service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>time</xs:appinfo>
<xs:documentation>Time service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>heat</xs:appinfo>
<xs:documentation>Heat service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="5">
<xs:annotation>
<xs:appinfo>refuse</xs:appinfo>
<xs:documentation>Refuse (waster) service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="6">
<xs:annotation>
<xs:appinfo>sewerage</xs:appinfo>
<xs:documentation>Sewerage service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="7">
<xs:annotation>
<xs:appinfo>rates</xs:appinfo>
<xs:documentation>Rates (e.g. tax, charge, toll, duty, tariff, etc.) service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="8">
<xs:annotation>
<xs:appinfo>tvLicence</xs:appinfo>
<xs:documentation>TV license service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="9">
<xs:annotation>
<xs:appinfo>internet</xs:appinfo>
<xs:documentation>Internet service.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="TimeAttributeKind">
<xs:annotation>
<xs:documentation>Code used to specify a particular type of time interval method for Readings of ReadingType. Valid values per the standard are defined in TimeAttributeType.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>none</xs:appinfo>
<xs:documentation>Not Applicable</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>tenMinute</xs:appinfo>
<xs:documentation>10-minute</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>fifteenMinute</xs:appinfo>
<xs:documentation>15-minute</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>oneMinute</xs:appinfo>
<xs:documentation>1-minute</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>twentyfourHour</xs:appinfo>
<xs:documentation>24-hour</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="5">
<xs:annotation>
<xs:appinfo>thirtyMinute</xs:appinfo>
<xs:documentation>30-minute</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="6">
<xs:annotation>
<xs:appinfo>fiveMinute</xs:appinfo>
<xs:documentation>5-minute</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="7">
<xs:annotation>
<xs:appinfo>sixtyMinute</xs:appinfo>
<xs:documentation>60-minute</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="10">
<xs:annotation>
<xs:appinfo>twoMinute</xs:appinfo>
<xs:documentation>2-minute</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="14">
<xs:annotation>
<xs:appinfo>threeMinute</xs:appinfo>
<xs:documentation>3-minute</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="15">
<xs:annotation>
<xs:appinfo>present</xs:appinfo>
<xs:documentation>Within the present period of time</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="16">
<xs:annotation>
<xs:appinfo>previous</xs:appinfo>
<xs:documentation>Shifted within the previous monthly cycle and data set</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="31">
<xs:annotation>
<xs:appinfo>twentyMinute</xs:appinfo>
<xs:documentation>20-minute interval</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="50">
<xs:annotation>
<xs:appinfo>fixedBlock60Min</xs:appinfo>
<xs:documentation>60-minute Fixed Block</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="51">
<xs:annotation>
<xs:appinfo>fixedBlock30Min</xs:appinfo>
<xs:documentation>30-minute Fixed Block</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="52">
<xs:annotation>
<xs:appinfo>fixedBlock20Min</xs:appinfo>
<xs:documentation>20-minute Fixed Block</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="53">
<xs:annotation>
<xs:appinfo>fixedBlock15Min</xs:appinfo>
<xs:documentation>15-minute Fixed Block</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="54">
<xs:annotation>
<xs:appinfo>fixedBlock10Min</xs:appinfo>
<xs:documentation>10-minute Fixed Block</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="55">
<xs:annotation>
<xs:appinfo>fixedBlock5Min</xs:appinfo>
<xs:documentation>5-minute Fixed Block</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="56">
<xs:annotation>
<xs:appinfo>fixedBlock1Min</xs:appinfo>
<xs:documentation>1-minute Fixed Block</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="57">
<xs:annotation>
<xs:appinfo>rollingBlock60MinIntvl30MinSubIntvl</xs:appinfo>
<xs:documentation>60-minute Rolling Block with 30-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="58">
<xs:annotation>
<xs:appinfo>rollingBlock60MinIntvl20MinSubIntvl</xs:appinfo>
<xs:documentation>60-minute Rolling Block with 20-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="59">
<xs:annotation>
<xs:appinfo>rollingBlock60MinIntvl15MinSubIntvl</xs:appinfo>
<xs:documentation>60-minute Rolling Block with 15-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="60">
<xs:annotation>
<xs:appinfo>rollingBlock60MinIntvl12MinSubIntvl</xs:appinfo>
<xs:documentation>60-minute Rolling Block with 12-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="61">
<xs:annotation>
<xs:appinfo>rollingBlock60MinIntvl10MinSubIntvl</xs:appinfo>
<xs:documentation>60-minute Rolling Block with 10-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="62">
<xs:annotation>
<xs:appinfo>rollingBlock60MinIntvl6MinSubIntvl</xs:appinfo>
<xs:documentation>60-minute Rolling Block with 6-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="63">
<xs:annotation>
<xs:appinfo>rollingBlock60MinIntvl5MinSubIntvl</xs:appinfo>
<xs:documentation>60-minute Rolling Block with 5-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="64">
<xs:annotation>
<xs:appinfo>rollingBlock60MinIntvl4MinSubIntvl</xs:appinfo>
<xs:documentation>60-minute Rolling Block with 4-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="65">
<xs:annotation>
<xs:appinfo>rollingBlock30MinIntvl15MinSubIntvl</xs:appinfo>
<xs:documentation>30-minute Rolling Block with 15-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="66">
<xs:annotation>
<xs:appinfo>rollingBlock30MinIntvl10MinSubIntvl</xs:appinfo>
<xs:documentation>30-minute Rolling Block with 10-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="67">
<xs:annotation>
<xs:appinfo>rollingBlock30MinIntvl6MinSubIntvl</xs:appinfo>
<xs:documentation>30-minute Rolling Block with 6-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="68">
<xs:annotation>
<xs:appinfo>rollingBlock30MinIntvl5MinSubIntvl</xs:appinfo>
<xs:documentation>30-minute Rolling Block with 5-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="69">
<xs:annotation>
<xs:appinfo>rollingBlock30MinIntvl3MinSubIntvl</xs:appinfo>
<xs:documentation>30-minute Rolling Block with 3-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="70">
<xs:annotation>
<xs:appinfo>rollingBlock30MinIntvl2MinSubIntvl</xs:appinfo>
<xs:documentation>30-minute Rolling Block with 2-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="71">
<xs:annotation>
<xs:appinfo>rollingBlock15MinIntvl5MinSubIntvl</xs:appinfo>
<xs:documentation>15-minute Rolling Block with 5-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="72">
<xs:annotation>
<xs:appinfo>rollingBlock15MinIntvl3MinSubIntvl</xs:appinfo>
<xs:documentation>15-minute Rolling Block with 3-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="73">
<xs:annotation>
<xs:appinfo>rollingBlock15MinIntvl1MinSubIntvl</xs:appinfo>
<xs:documentation>15-minute Rolling Block with 1-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="74">
<xs:annotation>
<xs:appinfo>rollingBlock10MinIntvl5MinSubIntvl</xs:appinfo>
<xs:documentation>10-minute Rolling Block with 5-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="75">
<xs:annotation>
<xs:appinfo>rollingBlock10MinIntvl2MinSubIntvl</xs:appinfo>
<xs:documentation>10-minute Rolling Block with 2-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="76">
<xs:annotation>
<xs:appinfo>rollingBlock10MinIntvl1MinSubIntvl</xs:appinfo>
<xs:documentation>10-minute Rolling Block with 1-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="77">
<xs:annotation>
<xs:appinfo>rollingBlock5MinIntvl1MinSubIntvl</xs:appinfo>
<xs:documentation>5-minute Rolling Block with 1-minute sub-intervals</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="TimePeriodOfInterest">
<xs:annotation>
<xs:documentation>[extension]</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>none</xs:appinfo>
<xs:documentation>Not Applicable</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="8">
<xs:annotation>
<xs:appinfo>billingPeriod</xs:appinfo>
<xs:documentation>Captured during the billing period starting at midnight of the first day of the billing period (as defined by the billing cycle day). If during the current billing period, it specifies a period from the start of the current billing period until "now".</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="11">
<xs:annotation>
<xs:appinfo>daily</xs:appinfo>
<xs:documentation>Daily Period starting at midnight. If for the current day, this specifies the time from midnight to "now".</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="13">
<xs:annotation>
<xs:appinfo>monthly</xs:appinfo>
<xs:documentation>Monthly period starting at midnight on the first day of the month. If within the current month, this specifies the period from the start of the month until "now."</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="22">
<xs:annotation>
<xs:appinfo>seasonal</xs:appinfo>
<xs:documentation>A season of time spanning multiple months. E.g. "Summer," "Spring," "Fall," and "Winter" based cycle. If within the current season, it specifies the period from the start of the current season until "now."</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="24">
<xs:annotation>
<xs:appinfo>weekly</xs:appinfo>
<xs:documentation>Weekly period starting at midnight on the first day of the week and ending the instant before midnight the last day of the week. If within the current week, it specifies the period from the start of the week until "now."</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="32">
<xs:annotation>
<xs:appinfo>specifiedPeriod</xs:appinfo>
<xs:documentation>For the period defined by the start and end of the TimePeriod element in the message.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="UnitSymbolKind">
<xs:annotation>
<xs:documentation>Code for the base unit of measure for Readings of ReadingType. Used in combination with the powerOfTenMultiplier to specify the actual unit of measure. Valid values per the standard are defined in UomType.
</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="61">
<xs:annotation>
<xs:appinfo>VA</xs:appinfo>
<xs:documentation>Apparent power, Volt Ampere (See also real power and reactive power.), VA</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="38">
<xs:annotation>
<xs:appinfo>W</xs:appinfo>
<xs:documentation>Real power, Watt. By definition, one Watt equals oneJoule per second. Electrical power may have real and reactive components. The real portion of electrical power (I²R) or VIcos?, is expressed in Watts. (See also apparent power and reactive power.), W</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="63">
<xs:annotation>
<xs:appinfo>VAr</xs:appinfo>
<xs:documentation>Reactive power, Volt Ampere reactive. The “reactive” or “imaginary” component of electrical power (VISin?). (See also real power and apparent power)., VAr</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="71">
<xs:annotation>
<xs:appinfo>VAh</xs:appinfo>
<xs:documentation>Apparent energy, Volt Ampere hours, VAh</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="72">
<xs:annotation>
<xs:appinfo>Wh</xs:appinfo>
<xs:documentation>Real energy, Watt hours, Wh</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="73">
<xs:annotation>
<xs:appinfo>VArh</xs:appinfo>
<xs:documentation>Reactive energy, Volt Ampere reactive hours, VArh</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="29">
<xs:annotation>
<xs:appinfo>V</xs:appinfo>
<xs:documentation>Electric potential, Volt (W/A), V</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="30">
<xs:annotation>
<xs:appinfo>ohm</xs:appinfo>
<xs:documentation>Electric resistance, Ohm (V/A), O</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="5">
<xs:annotation>
<xs:appinfo>A</xs:appinfo>
<xs:documentation>Current, ampere, A</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="25">
<xs:annotation>
<xs:appinfo>F</xs:appinfo>
<xs:documentation>Electric capacitance, Farad (C/V), °C</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="28">
<xs:annotation>
<xs:appinfo>H</xs:appinfo>
<xs:documentation>Electric inductance, Henry (Wb/A), H</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="23">
<xs:annotation>
<xs:appinfo>degC</xs:appinfo>
<xs:documentation>Relative temperature in degrees Celsius. In the SI unit system the symbol is ºC. Electric charge is measured in coulomb that has the unit symbol C. To destinguish degree Celsius form coulomb the symbol used in the UML is degC. Reason for not using ºC is the special character º is difficult to manage in software.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="27">
<xs:annotation>
<xs:appinfo>sec</xs:appinfo>
<xs:documentation>Time, seconds, s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="159">
<xs:annotation>
<xs:appinfo>min</xs:appinfo>
<xs:documentation>Time, minute = s * 60, min</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="160">
<xs:annotation>
<xs:appinfo>h</xs:appinfo>
<xs:documentation>Time, hour = minute * 60, h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="9">
<xs:annotation>
<xs:appinfo>deg</xs:appinfo>
<xs:documentation>Plane angle, degrees, deg</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="10">
<xs:annotation>
<xs:appinfo>rad</xs:appinfo>
<xs:documentation>Plane angle, Radian (m/m), rad</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="31">
<xs:annotation>
<xs:appinfo>J</xs:appinfo>
<xs:documentation>Energy joule, (N·m = C·V = W·s), J</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="32">
<xs:annotation>
<xs:appinfo>n</xs:appinfo>
<xs:documentation>Force newton, (kg m/s²), N</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="53">
<xs:annotation>
<xs:appinfo>siemens</xs:appinfo>
<xs:documentation>Electric conductance, Siemens (A / V = 1 / O), S</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>none</xs:appinfo>
<xs:documentation>N/A, None</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="33">
<xs:annotation>
<xs:appinfo>Hz</xs:appinfo>
<xs:documentation>Frequency hertz, (1/s), Hz</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>g</xs:appinfo>
<xs:documentation>Mass in gram, g</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="39">
<xs:annotation>
<xs:appinfo>pa</xs:appinfo>
<xs:documentation>Pressure, Pascal (N/m²)(Note: the absolute or relative measurement of pressure is implied with this entry. See below for more explicit forms.), Pa</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>m</xs:appinfo>
<xs:documentation>Length, meter, m</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="41">
<xs:annotation>
<xs:appinfo>m2</xs:appinfo>
<xs:documentation>Area, square meter, m²</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="42">
<xs:annotation>
<xs:appinfo>m3</xs:appinfo>
<xs:documentation>Volume, cubic meter, m³</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="69">
<xs:annotation>
<xs:appinfo>A2</xs:appinfo>
<xs:documentation>Amps squared, amp squared, A2</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="105">
<xs:annotation>
<xs:appinfo>A2h</xs:appinfo>
<xs:documentation>ampere-squared, Ampere-squared hour, A²h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="70">
<xs:annotation>
<xs:appinfo>A2s</xs:appinfo>
<xs:documentation>Amps squared time, square amp second, A²s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="106">
<xs:annotation>
<xs:appinfo>Ah</xs:appinfo>
<xs:documentation>Ampere-hours, Ampere-hours, Ah</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="152">
<xs:annotation>
<xs:appinfo>APerA</xs:appinfo>
<xs:documentation>Current, Ratio of Amperages, A/A</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="103">
<xs:annotation>
<xs:appinfo>aPerM</xs:appinfo>
<xs:documentation>A/m, magnetic field strength, Ampere per metre, A/m</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="68">
<xs:annotation>
<xs:appinfo>As</xs:appinfo>
<xs:documentation>Amp seconds, amp seconds, As</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="79">
<xs:annotation>
<xs:appinfo>b</xs:appinfo>
<xs:documentation>Sound pressure level, Bel, acoustic, Combine with multiplier prefix “d” to form decibels of Sound Pressure Level“dB (SPL).”, B (SPL)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="113">
<xs:annotation>
<xs:appinfo>bm</xs:appinfo>
<xs:documentation>Signal Strength, Bel-mW, normalized to 1mW. Note: to form “dBm” combine “Bm” with multiplier “d”. Bm</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="22">
<xs:annotation>
<xs:appinfo>bq</xs:appinfo>
<xs:documentation>Radioactivity, Becquerel (1/s), Bq</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="132">
<xs:annotation>
<xs:appinfo>btu</xs:appinfo>
<xs:documentation>Energy, British Thermal Units, BTU</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="133">
<xs:annotation>
<xs:appinfo>btuPerH</xs:appinfo>
<xs:documentation>Power, BTU per hour, BTU/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="8">
<xs:annotation>
<xs:appinfo>cd</xs:appinfo>
<xs:documentation>Luminous intensity, candela, cd</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="76">
<xs:annotation>
<xs:appinfo>char</xs:appinfo>
<xs:documentation>Number of characters, characters, char</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="75">
<xs:annotation>
<xs:appinfo>HzPerSec</xs:appinfo>
<xs:documentation>Rate of change of frequency, hertz per second, Hz/s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="114">
<xs:annotation>
<xs:appinfo>code</xs:appinfo>
<xs:documentation>Application Value, encoded value, code</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="65">
<xs:annotation>
<xs:appinfo>cosTheta</xs:appinfo>
<xs:documentation>Power factor, Dimensionless <img src="HTS_1.PNG" width="64" height="29" border="0" alt="graphic"/>, cos?</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="111">
<xs:annotation>
<xs:appinfo>count</xs:appinfo>
<xs:documentation>Amount of substance, counter value, count</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="119">
<xs:annotation>
<xs:appinfo>ft3</xs:appinfo>
<xs:documentation>Volume, cubic feet, ft³</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="120">
<xs:annotation>
<xs:appinfo>ft3compensated</xs:appinfo>
<xs:documentation>Volume, cubic feet, ft³(compensated)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="123">
<xs:annotation>
<xs:appinfo>ft3compensatedPerH</xs:appinfo>
<xs:documentation>Volumetric flow rate, compensated cubic feet per hour, ft³(compensated)/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="78">
<xs:annotation>
<xs:appinfo>gM2</xs:appinfo>
<xs:documentation>Turbine inertia, gram·meter2 (Combine with multiplier prefix “k” to form kg·m2.), gm²</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="144">
<xs:annotation>
<xs:appinfo>gPerG</xs:appinfo>
<xs:documentation>Concentration, The ratio of the mass of a solute divided by the mass of the solution., g/g</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="21">
<xs:annotation>
<xs:appinfo>gy</xs:appinfo>
<xs:documentation>Absorbed dose, Gray (J/kg), GY</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="150">
<xs:annotation>
<xs:appinfo>HzPerHz</xs:appinfo>
<xs:documentation>Frequency, Rate of frequency change, Hz/Hz</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="77">
<xs:annotation>
<xs:appinfo>charPerSec</xs:appinfo>
<xs:documentation>Data rate, characters per second, char/s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="130">
<xs:annotation>
<xs:appinfo>imperialGal</xs:appinfo>
<xs:documentation>Volume, imperial gallons, ImperialGal</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="131">
<xs:annotation>
<xs:appinfo>imperialGalPerH</xs:appinfo>
<xs:documentation>Volumetric flow rate, Imperial gallons per hour, ImperialGal/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="51">
<xs:annotation>
<xs:appinfo>jPerK</xs:appinfo>
<xs:documentation>Heat capacity, Joule/Kelvin, J/K</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="165">
<xs:annotation>
<xs:appinfo>jPerKg</xs:appinfo>
<xs:documentation>Specific energy, Joules / kg, J/kg</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="6">
<xs:annotation>
<xs:appinfo>K</xs:appinfo>
<xs:documentation>Temperature, Kelvin, K</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="158">
<xs:annotation>
<xs:appinfo>kat</xs:appinfo>
<xs:documentation>Catalytic activity, katal = mol / s, kat</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="47">
<xs:annotation>
<xs:appinfo>kgM</xs:appinfo>
<xs:documentation>Moment of mass ,kilogram meter (kg·m), M</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="48">
<xs:annotation>
<xs:appinfo>kgPerM3</xs:appinfo>
<xs:documentation>Density, gram/cubic meter (combine with prefix multiplier “k” to form kg/ m³), g/m³</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="134">
<xs:annotation>
<xs:appinfo>litre</xs:appinfo>
<xs:documentation>Volume, litre = dm3 = m3/1000., L</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="157">
<xs:annotation>
<xs:appinfo>litreCompensated</xs:appinfo>
<xs:documentation>Volume, litre, with the value compensated for weather effects, L(compensated)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="138">
<xs:annotation>
<xs:appinfo>litreCompensatedPerH</xs:appinfo>
<xs:documentation>Volumetric flow rate, litres (compensated) per hour, L(compensated)/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="137">
<xs:annotation>
<xs:appinfo>litrePerH</xs:appinfo>
<xs:documentation>Volumetric flow rate, litres per hour, L/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="143">
<xs:annotation>
<xs:appinfo>litrePerLitre</xs:appinfo>
<xs:documentation>Concentration, The ratio of the volume of a solute divided by the volume of the solution., L/L</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="82">
<xs:annotation>
<xs:appinfo>litrePerSec</xs:appinfo>
<xs:documentation>Volumetric flow rate, Volumetric flow rate, L/s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="156">
<xs:annotation>
<xs:appinfo>litreUncompensated</xs:appinfo>
<xs:documentation>Volume, litre, with the value uncompensated for weather effects., L(uncompensated)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="139">
<xs:annotation>
<xs:appinfo>litreUncompensatedPerH</xs:appinfo>
<xs:documentation>Volumetric flow rate, litres (uncompensated) per hour, L(uncompensated)/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="35">
<xs:annotation>
<xs:appinfo>lm</xs:appinfo>
<xs:documentation>Luminous flux, lumen (cd sr), Lm</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="34">
<xs:annotation>
<xs:appinfo>lx</xs:appinfo>
<xs:documentation>Illuminance lux, (lm/m²), L(uncompensated)/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="49">
<xs:annotation>
<xs:appinfo>m2PerSec</xs:appinfo>
<xs:documentation>Viscosity, meter squared / second, m²/s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="167">
<xs:annotation>
<xs:appinfo>m3compensated</xs:appinfo>
<xs:documentation>Volume, cubic meter, with the value compensated for weather effects., m3(compensated)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="126">
<xs:annotation>
<xs:appinfo>m3compensatedPerH</xs:appinfo>
<xs:documentation>Volumetric flow rate, compensated cubic meters per hour, ³(compensated)/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="125">
<xs:annotation>
<xs:appinfo>m3PerH</xs:appinfo>
<xs:documentation>Volumetric flow rate, cubic meters per hour, m³/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="45">
<xs:annotation>
<xs:appinfo>m3PerSec</xs:appinfo>
<xs:documentation>m3PerSec, cubic meters per second, m³/s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="166">
<xs:annotation>
<xs:appinfo>m3uncompensated</xs:appinfo>
<xs:documentation>m3uncompensated, cubic meter, with the value uncompensated for weather effects., m3(uncompensated)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="127">
<xs:annotation>
<xs:appinfo>m3uncompensatedPerH</xs:appinfo>
<xs:documentation>Volumetric flow rate, uncompensated cubic meters per hour, m³(uncompensated)/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="118">
<xs:annotation>
<xs:appinfo>meCode</xs:appinfo>
<xs:documentation>EndDeviceEvent, value to be interpreted as a EndDeviceEventCode, meCode</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="7">
<xs:annotation>
<xs:appinfo>mol</xs:appinfo>
<xs:documentation>Amount of substance, mole, mol</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="147">
<xs:annotation>
<xs:appinfo>molPerKg</xs:appinfo>
<xs:documentation>Concentration, Molality, the amount of solute in moles and the amount of solvent in kilograms., mol/kg</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="145">
<xs:annotation>
<xs:appinfo>molPerM3</xs:appinfo>
<xs:documentation>Concentration, The amount of substance concentration, (c), the amount of solvent in moles divided by the volume of solution in m³., mol/ m³</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="146">
<xs:annotation>
<xs:appinfo>molPerMol</xs:appinfo>
<xs:documentation>Concentration, Molar fraction (?), the ratio of the molar amount of a solute divided by the molar amount of the solution.,mol/mol</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="80">
<xs:annotation>
<xs:appinfo>money</xs:appinfo>
<xs:documentation>Monetary unit, Generic money (Note: Specific monetary units are identified the currency class)., ¤</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="148">
<xs:annotation>
<xs:appinfo>mPerM</xs:appinfo>
<xs:documentation>Length, Ratio of length, m/m</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="46">
<xs:annotation>
<xs:appinfo>mPerM3</xs:appinfo>
<xs:documentation>Fuel efficiency, meters / cubic meter, m/m³</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="43">
<xs:annotation>
<xs:appinfo>mPerSec</xs:appinfo>
<xs:documentation>Velocity, meters per second (m/s), m/s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="44">
<xs:annotation>
<xs:appinfo>mPerSec2</xs:appinfo>
<xs:documentation>Acceleration, meters per second squared, m/s²</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="102">
<xs:annotation>
<xs:appinfo>ohmM</xs:appinfo>
<xs:documentation>resistivity, ? (rho), ?m</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="155">
<xs:annotation>
<xs:appinfo>paA</xs:appinfo>
<xs:documentation>Pressure, Pascal, absolute pressure, PaA</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="140">
<xs:annotation>
<xs:appinfo>paG</xs:appinfo>
<xs:documentation>Pressure, Pascal, gauge pressure, PaG</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="141">
<xs:annotation>
<xs:appinfo>psiA</xs:appinfo>
<xs:documentation>Pressure, Pounds per square inch, absolute, psiA</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="142">
<xs:annotation>
<xs:appinfo>psiG</xs:appinfo>
<xs:documentation>Pressure, Pounds per square inch, gauge, psiG</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="100">
<xs:annotation>
<xs:appinfo>q</xs:appinfo>
<xs:documentation>Quantity power, Q, Q</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="161">
<xs:annotation>
<xs:appinfo>q45</xs:appinfo>
<xs:documentation>Quantity power, Q measured at 45º, Q45</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="163">
<xs:annotation>
<xs:appinfo>q45h</xs:appinfo>
<xs:documentation>Quantity energy, Q measured at 45º, Q45h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="162">
<xs:annotation>
<xs:appinfo>q60</xs:appinfo>
<xs:documentation>Quantity power, Q measured at 60º, Q60</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="164">
<xs:annotation>
<xs:appinfo>q60h</xs:appinfo>
<xs:documentation>Quantity energy, Qh measured at 60º, Q60h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="101">
<xs:annotation>
<xs:appinfo>qh</xs:appinfo>
<xs:documentation>Quantity energy, Qh, Qh</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="54">
<xs:annotation>
<xs:appinfo>radPerSec</xs:appinfo>
<xs:documentation>Angular velocity, radians per second, rad/s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="154">
<xs:annotation>
<xs:appinfo>rev</xs:appinfo>
<xs:documentation>Amount of rotation, Revolutions, rev</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>revPerSec</xs:appinfo>
<xs:documentation>Rotational speed, Rotations per second, rev/s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="149">
<xs:annotation>
<xs:appinfo>secPerSec</xs:appinfo>
<xs:documentation>Time, Ratio of time (can be combined with an multiplier prefix to show rates such as a clock drift rate, e.g. “µs/s”), s/s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="11">
<xs:annotation>
<xs:appinfo>sr</xs:appinfo>
<xs:documentation>Solid angle, Steradian (m2/m2), sr</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="109">
<xs:annotation>
<xs:appinfo>status</xs:appinfo>
<xs:documentation>State, "1" = "true", "live", "on", "high", "set"; "0" = "false", "dead", "off", "low", "cleared"Note: A Boolean value is preferred but other values may be supported, status</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="24">
<xs:annotation>
<xs:appinfo>sv</xs:appinfo>
<xs:documentation>Doe equivalent, Sievert (J/kg), Sv</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="37">
<xs:annotation>
<xs:appinfo>t</xs:appinfo>
<xs:documentation>Magnetic flux density, Tesla (Wb/m2), T</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="169">
<xs:annotation>
<xs:appinfo>therm</xs:appinfo>
<xs:documentation>Energy, Therm, therm</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="108">
<xs:annotation>
<xs:appinfo>timeStamp</xs:appinfo>
<xs:documentation>Timestamp, time and date per ISO 8601 format, timeStamp</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="128">
<xs:annotation>
<xs:appinfo>usGal</xs:appinfo>
<xs:documentation>Volume, US gallons, Gal</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="129">
<xs:annotation>
<xs:appinfo>usGalPerH</xs:appinfo>
<xs:documentation>Volumetric flow rate, US gallons per hour, USGal/h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="67">
<xs:annotation>
<xs:appinfo>V2</xs:appinfo>
<xs:documentation>Volts squared, Volt squared (W2/A2), V²</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="104">
<xs:annotation>
<xs:appinfo>V2h</xs:appinfo>
<xs:documentation>volt-squared hour, Volt-squared-hours, V²h</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="117">
<xs:annotation>
<xs:appinfo>VAhPerRev</xs:appinfo>
<xs:documentation>Kh-Vah, apparent energy metering constant, VAh/rev</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="116">
<xs:annotation>
<xs:appinfo>VArhPerRev</xs:appinfo>
<xs:documentation>Kh-VArh, reactive energy metering constant, VArh/rev</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="74">
<xs:annotation>
<xs:appinfo>VPerHz</xs:appinfo>
<xs:documentation>Magnetic flux, Volts per Hertz, V/Hz</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="151">
<xs:annotation>
<xs:appinfo>VPerV</xs:appinfo>
<xs:documentation>Voltage, Ratio of voltages (e.g. mV/V), V/V</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="66">
<xs:annotation>
<xs:appinfo>Vs</xs:appinfo>
<xs:documentation>Volt seconds, Volt seconds (Ws/A), Vs</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="36">
<xs:annotation>
<xs:appinfo>wb</xs:appinfo>
<xs:documentation>Magnetic flux, Weber (V s), Wb</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="107">
<xs:annotation>
<xs:appinfo>WhPerM3</xs:appinfo>
<xs:documentation>Wh/m3, energy per volume, Wh/m³</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="115">
<xs:annotation>
<xs:appinfo>WhPerRev</xs:appinfo>
<xs:documentation>Kh-Wh, active energy metering constant, Wh/rev</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="50">
<xs:annotation>
<xs:appinfo>wPerMK</xs:appinfo>
<xs:documentation>Thermal conductivity, Watt/meter Kelvin, W/m K</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="81">
<xs:annotation>
<xs:appinfo>WPerSec</xs:appinfo>
<xs:documentation>Ramp rate, Watts per second, W/s</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="153">
<xs:annotation>
<xs:appinfo>WPerVA</xs:appinfo>
<xs:documentation>Power Factor, PF, W/VA</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="168">
<xs:annotation>
<xs:appinfo>WPerW</xs:appinfo>
<xs:documentation>Signal Strength, Ratio of power, W/W</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="StatusCode">
<xs:annotation>
<xs:documentation>indicates the status code of the associated transaction</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="200">
<xs:annotation>
<xs:appinfo>Ok</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="201">
<xs:annotation>
<xs:appinfo>Created</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="204">
<xs:annotation>
<xs:appinfo>No Content</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="301">
<xs:annotation>
<xs:appinfo>Moved Permanently</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="302">
<xs:annotation>
<xs:appinfo>Redirect</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="304">
<xs:annotation>
<xs:appinfo>Not Modified</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="400">
<xs:annotation>
<xs:appinfo>Bad Request</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="401">
<xs:annotation>
<xs:appinfo>Unauthorized</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="403">
<xs:annotation>
<xs:appinfo>Forbidden</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="404">
<xs:annotation>
<xs:appinfo>Not Found</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="405">
<xs:annotation>
<xs:appinfo>Method Not Allowed</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="410">
<xs:annotation>
<xs:appinfo>Gone</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="500">
<xs:annotation>
<xs:appinfo>Internal Server Error</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="CRUDOperation">
<xs:annotation>
<xs:documentation>Specifies the operation requrested of this item</xs:documentation>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>Create</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>Read</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>Update</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>Delete</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="DataCustodianApplicationStatus">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>Review</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>Production (Live)</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>On Hold</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>Revoked</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="ThirdPartyApplicatonStatus">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>Development</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>ReviewTest</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>Production</xs:appinfo>
<xs:documentation>Live</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>Retired</xs:appinfo>
<xs:documentation>Remove</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="ThirdPartyApplicationType">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>Web</xs:appinfo>
<xs:documentation>The application is on the web</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>Desktop</xs:appinfo>
<xs:documentation>The application is on a desktop</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>Mobile</xs:appinfo>
<xs:documentation>The application is on a mobil device</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>Device</xs:appinfo>
<xs:documentation>The application is on another device</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="ThirdPartyApplicationUse">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>EnergyManagement</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:appinfo>Comparisons</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:appinfo>Government</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:appinfo>Academic</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="5">
<xs:annotation>
<xs:appinfo>LawEnforcement</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="AuthorizationStatus">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>Revoked</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>Active</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="ESPIServiceStatus">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:union memberTypes="UInt16">
<xs:simpleType>
<xs:restriction base="UInt16">
<xs:enumeration value="0">
<xs:annotation>
<xs:appinfo>Unavailable</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:appinfo>Normal</xs:appinfo>
<xs:documentation/>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="DstRuleType">
<xs:annotation>
<xs:documentation>[extension] Bit map encoded rule from which is calculated the start or end time, within the current year, to which daylight savings time offset must be applied.
The rule encoding:
Bits 0 - 11: seconds 0 - 3599
Bits 12 - 16: hours 0 - 23
Bits 17 - 19: day of the week 0 = not applicable, 1 - 7 (Monday = 1)
Bits:20 - 24: day of the month 0 = not applicable, 1 - 31
Bits: 25 - 27: operator (detailed below)
Bits: 28 - 31: month 1 - 12
Rule value of 0xFFFFFFFF means rule processing/DST correction is disabled.
The operators:
0: DST starts/ends on the Day of the Month
1: DST starts/ends on the Day of the Week that is on or after the Day of the Month
2: DST starts/ends on the first occurrence of the Day of the Week in a month
3: DST starts/ends on the second occurrence of the Day of the Week in a month
4: DST starts/ends on the third occurrence of the Day of the Week in a month
5: DST starts/ends on the forth occurrence of the Day of the Week in a month
6: DST starts/ends on the fifth occurrence of the Day of the Week in a month
7: DST starts/ends on the last occurrence of the Day of the Week in a month
An example: DST starts on third Friday in March at 1:45 AM. The rule...
Seconds: 2700
Hours: 1
Day of Week: 5
Day of Month: 0
Operator: 4
Month: 3</xs:documentation>
</xs:annotation>
<xs:restriction base="HexBinary32"/>
</xs:simpleType>
<!--
=======================================
Global Elements
=======================================
-->
<xs:element name="IntervalBlock" type="IntervalBlock"/>
<xs:element name="IntervalReading" type="IntervalReading"/>
<xs:element name="MeterReading" type="MeterReading"/>
<xs:element name="ReadingQuality" type="ReadingQuality"/>
<xs:element name="ReadingType" type="ReadingType"/>
<xs:element name="IdentifiedObject" type="IdentifiedObject"/>
<xs:element name="UsagePoint" type="UsagePoint"/>
<xs:element name="ElectricPowerQualitySummary" type="ElectricPowerQualitySummary"/>
<xs:element name="ElectricPowerUsageSummary" type="ElectricPowerUsageSummary"/>
<xs:element name="DateTimeInterval" type="DateTimeInterval"/>
<xs:element name="SummaryMeasurement" type="SummaryMeasurement"/>
<xs:element name="BatchItemInfo" type="BatchItemInfo"/>
<xs:element name="Object" type="Object"/>
<xs:element name="ServiceStatus" type="ServiceStatus"/>
<xs:element name="LocalTimeParameters" type="TimeConfiguration"/>
</xs:schema>
|