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 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894
|
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="2.001" id="OTA2003A2007A">
<xs:include schemaLocation="OTA_SimpleTypes.xsd"/>
<xs:annotation>
<xs:documentation xml:lang="en">All Schema files in the OTA specification are made available according to the terms defined by the OTA License Agreement at http://www.opentravel.org/ota_downloads_form.cfm</xs:documentation>
</xs:annotation>
<xs:attributeGroup name="AcceptablePaymentCardGroup">
<xs:annotation>
<xs:documentation xml:lang="en">This complex type defines the information needed to describe a type of payment card that is acceptable as a form of payment. A usage fee (amount or percentage) may also be stated for this particular card type.</xs:documentation>
</xs:annotation>
<xs:attribute name="CardType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A code used to identify this payment card. Refer to OTA Code List Card Type (CDT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CardName" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The name used to describe this type of payment card, for example, American Express</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="UsagePercentage" type="Percentage" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If applicable, defines the percentage of the total amount that is incurred as a usage fee.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="UsageAmount" type="Money" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If applicable, defines the additonal amount that is incurred as a usage fee.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="CurrencyCodeGroup"/>
</xs:attributeGroup>
<xs:attributeGroup name="AirportLocationGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Airport location includes 3 letter code, terminal and gate.</xs:documentation>
</xs:annotation>
<xs:attribute name="LocationCode" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en"> Location code used to identify a specific airport.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CodeContext" type="StringLength1to32" use="optional" default="IATA">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the context of the identifying code, such as IATA, ARC, or internal code, etc.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Terminal" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en"> Arrival or departure terminal (e.g., Concourse A)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Gate" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en"> Arrival or departure gate (e.g., B12)</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="AltLangID_Group">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the alternate language for a customer or message. The human language is identified by ISO 639 codes.</xs:documentation>
</xs:annotation>
<xs:attribute name="AltLangID" type="xs:language" use="optional"/>
</xs:attributeGroup>
<xs:attributeGroup name="AreaID_Group">
<xs:annotation>
<xs:documentation xml:lang="en">Used in place of a property code to retrieve availability across multiple properties in a hotel reservation system defined area. This attribute does not map to a code list, it maps to a hotel reservation system defined value.</xs:documentation>
</xs:annotation>
<xs:attribute name="AreaID" type="NumericStringLength1to8" use="optional"/>
</xs:attributeGroup>
<xs:attributeGroup name="BirthDateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide a date of birth.</xs:documentation>
</xs:annotation>
<xs:attribute name="BirthDate" type="xs:date" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the date of birth as indicated in the document, in ISO 8601 prescribed format.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="BookingChannelGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the booking channel types and whether it is the primary means of connectivity of the source.</xs:documentation>
</xs:annotation>
<xs:attribute name="Type" type="OTA_CodeType" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">The type of booking channel (e.g. Global Distribution System (GDS), Alternative Distribution System (ADS), Sales and Catering System (SCS), Property Management System (PMS), Central Reservation System (CRS), Tour Operator System (TOS), Internet and ALL). Refer to OTA Code List Booking Channel Type (BCT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Primary" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates whether the enumerated booking channel is the primary means of connectivity used by the source.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="ChargeUnitGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies charge information by unit (e.g., room, person, item) and frequency (e.g., daily, weekly, stay).</xs:documentation>
</xs:annotation>
<xs:attribute name="ChargeUnit" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is the unit for which the charge applies (e.g. room, person, seat). Refer to OTA Code List Charge Type (CHG).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ChargeFrequency" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is the timeframe used to apply the charge during the course of the reservation (e.g. Daily, Weekly, Stay). Refer to OTA Code List Charge Type (CHG).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ChargeUnitExempt" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Number of units permitted before charges are applied (e.g., more than 4 persons).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ChargeFrequencyExempt" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">ChargeFrequency exemptions before charges are applied (e.g. after 2 nights).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MaxChargeUnitApplies" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Maximum number of Units for which the charge will be applied (e.g., waive charges above 10 rooms).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MaxChargeFrequencyApplies" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Maximum number of times the charge will be applied (e.g. waive charges above 30 nights).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="CitizenCountryNameGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Name of the (self-professed) country that is claimed for citizenship</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="DefaultIndGroup"/>
<xs:attribute name="Code" type="ISO3166"/>
</xs:attributeGroup>
<xs:attributeGroup name="CodeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify a code and the context of the code.</xs:documentation>
</xs:annotation>
<xs:attribute name="Code" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Any code used to specify an item, for example, type of traveler, service code, room amenity, etc.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CodeContext" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the source authority for the code. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="CodeInfoGroup">
<xs:annotation>
<xs:documentation xml:lang="en">This is intended to be used in conjunction with an attribute that uses an OTA code list. It is used to provide additional information about the code being referenced. </xs:documentation>
<xs:documentation xml:lang="en">May be used to give further detail on the code or to remove an obsolete item.</xs:documentation>
</xs:annotation>
<xs:attribute name="CodeDetail" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">May be used to give further detail on the code. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="RemovalGroup"/>
</xs:attributeGroup>
<xs:attributeGroup name="CodeListGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify a code and its associated attributes; meaning is derived from actual use.</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="CodeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify a code and the context of the code.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="URI" type="xs:anyURI" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the location of the code table</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="QuantityGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the number of items that are identified by the Code (e.g., 2 adults, 5 first class seats).</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
<xs:attributeGroup name="CodePrefGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides a code along with the preferred usage of this information.</xs:documentation>
</xs:annotation>
<xs:attribute name="Code" type="StringLength1to8" use="required"/>
<xs:attributeGroup ref="PreferLevelGroup"/>
</xs:attributeGroup>
<xs:attributeGroup name="CompanyID_AttributesGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides meaning to a company code.</xs:documentation>
</xs:annotation>
<xs:attribute name="CompanyShortName" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide the company common name.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="TravelSector" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">
Refer to OTA Code List Travel Sector (TVS).
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Code" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies a company by the company code.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CodeContext" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the context of the identifying code, such as DUNS, IATA or internal code, etc.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="CurrencyAmountGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides a monetary amount and the currency code to reflect the currency in which this amount is expressed.</xs:documentation>
</xs:annotation>
<xs:attribute name="Amount" type="Money" use="optional"/>
<xs:attributeGroup ref="CurrencyCodeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides a currency code to reflect the currency in which an amount may be expressed as well as the number of decimal places of that currency.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
<xs:attributeGroup name="CurrencyCodeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides a currency code to reflect the currency in which an amount may be expressed.</xs:documentation>
</xs:annotation>
<xs:attribute name="CurrencyCode" type="AlphaLength3" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The code specifying a monetary unit. Use ISO 4217, three alpha code.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DecimalPlaces" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the number of decimal places for a particular currency. This is equivalent to the ISO 4217 standard "minor unit". Typically used when the amount provided includes the minor unit of currency without a decimal point (e.g., USD 8500 needs DecimalPlaces="2" to represent $85).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="CustomerLoyaltyGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Program rewarding frequent use by accumulating credits for services provided by vendors.</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attribute name="ProgramID" type="StringLength1to16">
<xs:annotation>
<xs:documentation xml:lang="en">Identifier to indicate the company owner of the loyalty program.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MembershipID" type="StringLength1to32">
<xs:annotation>
<xs:documentation xml:lang="en">Unique identifier of the member in the program (membership number, account number, etc.).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="TravelSector" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the travel sector. Refer to OTA Code List Travel Sector (TVS).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="LoyalLevelGroup"/>
<xs:attributeGroup ref="SingleVendorIndGroup"/>
<xs:attributeGroup ref="SignupDateGroup"/>
<xs:attributeGroup ref="EffectiveExpireOptionalDateGroup"/>
<xs:attribute name="RPH" type="RPH_Type">
<xs:annotation>
<xs:documentation xml:lang="en">A reference placeholder for this loyalty membership.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="VendorCode" type="ListOfStringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicate the partner(s)/vendor(s) for which the customer loyalty number is valid. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="DatePeriodGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to define a period of time using either actual dates or a day and month.</xs:documentation>
</xs:annotation>
<xs:attribute name="StartPeriod" type="DateOrMonthDay" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the start of a period either the day and month or the actual date.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Duration" type="DurationType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the duration of a period.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EndPeriod" type="DateOrMonthDay" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the end of a period either the day and month or the actual date.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="DateTimeSpanGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The attributes of the OTA DateTimeSpan data type are based on the W3C base data types of timeInstant and timeDuration. The lexical representation for timeDuration is the [ISO 8601] extended format PnYn MnDTnH nMnS, where nY represents the number of years, nM the number of months, nD the number of days, 'T' is the date/time separator, nH the number of hours, nM the number of minutes and nS the number of seconds. The number of seconds can include decimal digits to arbitrary precision. As an example, 7 months, 2 days, 2hours and 30 minutes would be expressed as P0Y7M2DT2H30M0S. Truncated representations are allowed provided they conform to ISO 8601 format. </xs:documentation>
<xs:documentation xml:lang="en">Time periods, i.e. specific durations of time, can be represented by supplying two items of information: a start instant and a duration or a start instant and an end instant or an end instant and a duration. The OTA standards use the XML mapping that provides for two elements to represent the specific period of time; a startInstant and a duration.</xs:documentation>
</xs:annotation>
<xs:attribute name="Start" type="DateOrTimeOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The starting value of the time span. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Duration" type="DurationType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The duration datatype represents a combination of year, month, day and time values representing a single duration of time, encoded as a single string. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="End" type="DateOrTimeOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The ending value of the time span. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="DateTimeStampGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Creation date time, Creator Id, last modification date time and last Modifier Id.</xs:documentation>
</xs:annotation>
<xs:attribute name="CreateDateTime" type="xs:dateTime" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Time stamp of the creation.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CreatorID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">ID of creator. The creator could be a software system identifier or an identifier of an employee resposible for the creation.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="LastModifyDateTime" type="xs:dateTime" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Time stamp of last modification.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="LastModifierID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the last software system or person to modify a record.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PurgeDate" type="xs:date" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Date an item will be purged from a database (e.g., from a live database to an archive).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="DeadlineGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The absolute deadline or amount of offset time before a deadline for a payment of cancel goes into effect.</xs:documentation>
</xs:annotation>
<xs:attribute name="AbsoluteDeadline" type="TimeOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the absolute deadline. Either this or the offset attributes may be used.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="OffsetTimeUnit" type="TimeUnitType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The units of time, e.g.: days, hours, etc., that apply to the deadline.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="OffsetUnitMultiplier" type="Numeric0to999" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The number of units of DeadlineTimeUnit.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="OffsetDropTime" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An enumerated type indicating when the deadline drop time goes into effect.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="BeforeArrival"/>
<xs:enumeration value="AfterBooking"/>
<xs:enumeration value="AfterConfirmation">
<xs:annotation>
<xs:documentation xml:lang="en">The deadline information applies from when the reservation was confirmed. In some systems the confirmation time will differ from the booking time.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="DefaultIndGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates that the receiving system should assume the default value if the user specifies no overriding value or action.</xs:documentation>
</xs:annotation>
<xs:attribute name="DefaultInd" type="xs:boolean" use="optional" default="false"/>
</xs:attributeGroup>
<xs:attributeGroup name="DetailResponseGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to determine the level of detail in the response.</xs:documentation>
</xs:annotation>
<xs:attribute name="DetailResponse" type="xs:boolean" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">To indicate whether full details should be returned in the response. "True" indicates details should be included and "false" means details are not required.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="DistanceAttributesGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide distance and direction information.</xs:documentation>
</xs:annotation>
<xs:attribute name="Distance" type="NumericStringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An optional attribute indicating the distance to/from a reference point. When used in conjunction with DistanceMax, this represents the minimum distance.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DistanceMeasure" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When the Distance attribute contains a value, (presumably a numerical value), the unit of measure is a string value that indicate what units are used for the value.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Direction" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An optional string value used to indicate the compass point(s) direction, e.g.: S, SE (South, Southeast), FROM the Reference Point TO the hotel location if the search is not a full circumference from the reference point.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DistanceMax" type="NumericStringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An optional attribute indicating the maximum distance to/from a reference point.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="DOW_PatternGroup">
<xs:annotation>
<xs:documentation xml:lang="en">If a day(s) of the week is set to true then the associated item is available on that day of the week (e.g. if Mon="T" then a flight operates on Mondays or a certain rate is available on Mondays).</xs:documentation>
</xs:annotation>
<xs:attribute name="Mon" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, apply to Monday.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Tue" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, apply to Tuesday.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Weds" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, apply to Wednesday.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Thur" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, apply to Thursday.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Fri" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, apply to Friday.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Sat" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, apply to Saturday.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Sun" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, apply to Sunday.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="EffectiveExpireOptionalDateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to send the effective date and/or expiration date.</xs:documentation>
</xs:annotation>
<xs:attribute name="EffectiveDate" type="xs:date" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the starting date.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExpireDate" type="xs:date" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the ending date.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="ErrorWarningAttributeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to identify an application error by either text, code, or by an online description and also to give the status, tag, and/or identification of the record that may have caused the error.</xs:documentation>
</xs:annotation>
<xs:attribute name="ShortText" type="StringLength1to64" use="optional"/>
<xs:attribute name="Code" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If present, this refers to a table of coded values exchanged between applications to identify errors or warnings. Refer to OTA Code List Error Codes (ERR).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DocURL" type="xs:anyURI" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If present, this URL refers to an online description of the error that occurred.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Status" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If present, recommended values are those enumerated in the OTA_ErrorRS, (NotProcessed | Incomplete | Complete | Unknown) however, the data type is designated as string data, recognizing that trading partners may identify additional status conditions not included in the enumeration.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Tag" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If present, this attribute may identify an unknown or misspelled tag that caused an error in processing. It is recommended that the Tag attribute use XPath notation to identify the location of a tag in the event that more than one tag of the same name is present in the document. Alternatively, the tag name alone can be used to identify missing data [Type=ReqFieldMissing].</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RecordID" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If present, this attribute allows for batch processing and the identification of the record that failed amongst a group of records. This value may contain a concatenation of a unique failed transaction ID with specific record(s) associated with that transaction.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="ExchangeRateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify the rate for exchanging from one currency to another currency.</xs:documentation>
</xs:annotation>
<xs:attribute name="FromCurrency" type="AlphaLength3" use="optional"/>
<xs:attribute name="ToCurrency" type="AlphaLength3" use="optional"/>
<xs:attribute name="Rate" type="xs:decimal" use="optional"/>
<xs:attribute name="Date" type="xs:date" use="optional"/>
</xs:attributeGroup>
<xs:attributeGroup name="FeeTaxGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the fees and/or taxes associated with a charge (e.g. taxes associated with a hotel rate).</xs:documentation>
</xs:annotation>
<xs:attribute name="Type" type="AmountDeterminationType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate if the amount is inclusive or exclusive of other charges, such as taxes, or is cumulative (amounts have been added to each other).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Code" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Code identifying the fee (e.g.,agency fee, municipality fee). Refer to OTA Code List Fee Tax Type (FTT).
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Percent" type="Percentage" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Fee percentage; if zero, assume use of the Amount attribute (Amount or Percent must be a zero value).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="CurrencyAmountGroup"/>
</xs:attributeGroup>
<xs:attributeGroup name="FileAttachmentGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides information about any files attached (e.g., multimedia objects) at the transport layer (e.g., HTTP/SOAP)</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="CodeInfoGroup">
<xs:annotation>
<xs:documentation xml:lang="en">May be used to give further detail on the code or to remove an obsolete item.
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="ContentData" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Vendor-specific format that contains the content data for the multimedia object. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Description" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A short description of the multimedia object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PictureCategoryCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A code defining the type of picture (e.g. Exterior, Lobby, Reception area, RoomTypes, Facilities, Dining areas, Meeting Rooms, Logo). Refer to OTA Code List Picture Category Code (PIC).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Version" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The version of the multimedia object. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ContentTitle" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The title for the multimedia object. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ContentCaption" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The caption to be published with the multimedia file. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CopyrightNotice" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The information describing the copyright notice for the multimedia object at a hotel facility. If this field is filled in, this copyright notice must be printed with the multimedia object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="FileName" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the name of the file being sent.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="FileSize" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The size of the file sent, in bytes. This may be used to validate that the received file is the correct size.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MultimediaObjectHeight" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The height of the image.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MultimediaObjectWidth" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The width of the image.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="UnitOfMeasureCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The unit of measure for the multimedia object (e.g., inches, pixels, centimeters). Refer to OTA Code List Unit of Measure Code (UOM).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ContentID" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The content ID of a file attachment with the prefix 'cid:'. The value of this can be used to retrieve the corresponding attachment by the receiving system.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ContentCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Description of the multimedia object or attached file contents. Refer to OTA Code List Content Code (CTT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ContentFormatCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The specific file format of the multimedia object or attached file (e.g., mpeg, jpg, gif). Refer to OTA Code List Content Format Code (CFC).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RecordID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Uniquely identifies this file in the message.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="FormattedInd">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies if the associated data is formatted into its individual pieces, or exists as a single entity.</xs:documentation>
</xs:annotation>
<xs:attribute name="FormattedInd" type="xs:boolean" use="optional" default="false">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies if the associated data is formatted or not. When true, then it is formatted; when false, then not formatted.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="GenderGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate the gender of a person, if known.</xs:documentation>
</xs:annotation>
<xs:attribute name="Gender" use="optional">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Male"/>
<xs:enumeration value="Female"/>
<xs:enumeration value="Unknown"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="HotelReferenceGroup">
<xs:annotation>
<xs:documentation xml:lang="en">HotelReference: The hotel reference identifies a specific hotel by using the Chain Code, the Brand Code, and the Hotel Code. The codes used are agreed upon by trading partners.</xs:documentation>
</xs:annotation>
<xs:attribute name="ChainCode" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The code that identifies a hotel chain or management group. The hotel chain code is decided between vendors. This attribute is optional if the hotel is an independent property that can be identified by the HotelCode attribute.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="BrandCode" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A code that identifies the brand or flag of a hotel, often used for independently-owned or franchised properties who are known by a specific brand.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="HotelCode" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The code that uniquely identifies a single hotel property. The hotel code is decided between vendors.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="HotelCityCode" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The IATA city code; for example DCA, ORD.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="HotelName" type="StringLength1to128" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en"> A text field used to communicate the proper name of the hotel.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="HotelCodeContext" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A text field used to communicate the context (or source of - ex Sabre, Galileo, Worldspan, Amadeus) the HotelReferenceGroup codes.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ChainName" type="StringLength1to64" use="optional"/>
<xs:attribute name="BrandName" type="StringLength1to64" use="optional"/>
<xs:attributeGroup ref="AreaID_Group"/>
</xs:attributeGroup>
<xs:attributeGroup name="ID_Group">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide a required unique identifier.</xs:documentation>
</xs:annotation>
<xs:attribute name="ID" type="StringLength1to32" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">A unique identifying value assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="ID_LevelTitleGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides employee information.</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="ID_OptionalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Identifier assigned to the employee.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="Level" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Level in employer organization (e.g. seniority) that conveys privileges.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Title" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Title of employee in the employer company that conveys rank or privileges.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="ID_OptionalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide an optional unique identifier.</xs:documentation>
</xs:annotation>
<xs:attribute name="ID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A unique identifying value assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="IssuerNameGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Name of bank or organization issuing the card (e.g., alumni association, bank, fraternal organization, etc.).</xs:documentation>
</xs:annotation>
<xs:attribute name="BankID" type="StringLength1to64">
<xs:annotation>
<xs:documentation xml:lang="en">Code of bank issuing the card.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="LanguageGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies language.</xs:documentation>
</xs:annotation>
<xs:attribute name="Language" type="xs:language" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Language identification.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="LocationGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Code and optional string to describe a location point.</xs:documentation>
</xs:annotation>
<xs:attribute name="LocationCode" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Code used to identify a location.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CodeContext" type="StringLength1to32" default="IATA">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the context of the identifying code (e.g., IATA, ARC, or internal code).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="LoyalLevelGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides the level within a loyalty program.</xs:documentation>
</xs:annotation>
<xs:attribute name="LoyalLevel" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates special privileges in program assigned to individual.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="LoyaltyCertificateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the Loyalty Program, membership, form factor used by the certificate and its current status</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="ID_OptionalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the individual program or promotion within a loyalty scheme</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="ID_Context" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the source of the code that identifies program or promotion within a loyalty scheme</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="LoyaltyCertificateNumberGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the unique certificate number and the loyalty program and the membership ID associated with this certificate</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup ref="EffectiveExpireOptionalDateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies either the date range when the Certificate is valid or the dates against which the certificate is being applied</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="NmbrOfNights" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The number of nights of the hotel stay that are used to calculate the redemption amount.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Format" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates what form the certificate is in e.g. Paper or Electronic</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Paper"/>
<xs:enumeration value="Electronic"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="Status" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to define the status of the certificate e.g. Available, Voided, Cancelled, Reserved, Used.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="LoyaltyCertificateNumberGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies a loyalty certificate.</xs:documentation>
</xs:annotation>
<xs:attribute name="CertificateNumber" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The loyalty redemption certificate identifier.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MemberNumber" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Unique identifier of the member in the program.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ProgramName" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This identifies the loyalty program.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="MaxResponsesGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify the maximum number of responses to a request.</xs:documentation>
</xs:annotation>
<xs:attribute name="MaxResponses" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A positive integer value that indicates the maximum number of responses desired in the return.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="MultimediaDescriptionGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Generic information about a multimedia item.</xs:documentation>
</xs:annotation>
<xs:attribute name="ContentID" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The content ID of a file attachment with the prefix 'cid:'. The value of this can be used to retrieve the corresponding attachment by the receiving system.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Title" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The title of the multimedia object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Author" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The author of the multimedia object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CopyrightNotice" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A copyright notice for the multimedia object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CopyrightOwner" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Owner of the copyright for the multimedia content.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CopyrightStart" type="DateOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The start date for which the multimedia content rights are claimed.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CopyrightEnd" type="DateOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The end date for which the multimedia content rights are claimed.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EffectiveStart" type="DateOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The start date for which the content is considered valid.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EffectiveEnd" type="DateOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The end date for which the content is considered valid.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ApplicableStart" type="DateOrMonthDay" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Start month and day or date for which the multimedia content is relevent (e.g. the start of a season or the start of an event). When a year is not used (i.e. only the month and day) it signifies a recurring event.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ApplicableEnd" type="DateOrMonthDay" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">End month and day or date for which the multimedia content is relevent (e.g. the end of a season or the start of an event). When a year is not used (i.e. only the month and day) it signifies a recurring event.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RecordID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Uniquely identifies this file in the message.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SourceID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Unique identifier for the source of the multimedia object (e.g., the original image file).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="MultimediaItemGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Specific information about a multimedia item.</xs:documentation>
</xs:annotation>
<xs:attribute name="Language" type="xs:language" use="optional"/>
<xs:attribute name="Format" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The code associated with the format of the multimedia item.
Refer to OTA code list Content Format Code (CFC)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="FileSize" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The size of the multimedia file in bytes.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="FileName" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The name of the multimedia file.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="NameOptionalCodeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">An attribute group to be used when the associated item has a required name and an optional code. If the length of the name could exceed 64 characters the complexType LongNameoptionalCodeType should be used.</xs:documentation>
</xs:annotation>
<xs:attribute name="Name" type="StringLength1to64" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">The name of an item.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Code" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Provides the code identifying the item.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="OccupancyGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Minimum and maximum occupancy values.</xs:documentation>
</xs:annotation>
<xs:attribute name="MinOccupancy" type="Numeric1to99" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Minimum number of persons allowed in a unit of accommodation or place. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MaxOccupancy" type="Numeric1to99" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Maximum number of persons allowed in a unit of accommodation or place. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="OfficeTypeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Designates the office category within an organization.</xs:documentation>
</xs:annotation>
<xs:attribute name="OfficeType" type="OfficeLocationType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates main office, field office, or division of the organization.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="OptionalCodeOptionalNameGroup">
<xs:annotation>
<xs:documentation xml:lang="en">An attribute group to be used when the associated item has an optional code and an optional name.</xs:documentation>
</xs:annotation>
<xs:attribute name="Code" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Provides the code identifying the item.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Name" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The name of an item.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="OTA_PayloadStdAttributes">
<xs:annotation>
<xs:documentation xml:lang="en">The OTA_PayloadStdAttributes defines the standard attributes that appear on the root element for all OTA payloads.</xs:documentation>
</xs:annotation>
<xs:attribute name="EchoToken" type="StringLength1to128" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A reference for additional message identification, assigned by the requesting host system. When a request message includes an echo token the corresponding response message MUST include an echo token with an identical value.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="TimeStamp" type="xs:dateTime" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the creation date and time of the message in UTC using the following format specified by ISO 8601; YYYY-MM-DDThh:mm:ssZ with time values using the 24 hour clock (e.g. 20 November 2003, 1:59:38 pm UTC becomes 2003-11-20T13:59:38Z).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Target" use="optional" default="Production">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate whether the request is for the Test or Production system.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Test"/>
<xs:enumeration value="Production"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="Version" type="xs:decimal" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">For all OTA versioned messages, the version of the message is indicated by a decimal value.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="TransactionIdentifier" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A unique identifier to relate all messages within a transaction (e.g. this would be sent in all request and response messages that are part of an on-going transaction).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SequenceNmbr" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to identify the sequence number of the transaction as assigned by the sending system; allows for an application to process messages in a certain order or to request a resynchronization of messages in the event that a system has been off-line and needs to retrieve messages that were missed. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="TransactionStatusCode" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This indicates where this message falls within a sequence of messages. </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Start">
<xs:annotation>
<xs:documentation xml:lang="en">This is the first message within a transaction.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="End">
<xs:annotation>
<xs:documentation xml:lang="en">This is the last message within a transaction.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Rollback">
<xs:annotation>
<xs:documentation xml:lang="en">This indicates that all messages within the current transaction must be ignored.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="InSeries">
<xs:annotation>
<xs:documentation xml:lang="en">This is any message that is not the first or last message within a transaction.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Continuation">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies that this is a followup request asking for more of what was requested in the previous request.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Subsequent">
<xs:annotation>
<xs:documentation xml:lang="en">This request message is a subsequent request based on the previous message sent in this transaction.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attributeGroup ref="PrimaryLangID_Group"/>
<xs:attributeGroup ref="AltLangID_Group"/>
<xs:attribute name="RetransmissionIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, indicates the message is being re-sent after a failure. It is recommended that this attribute is used (i.e., set to TRUE) only when a message is retransmitted.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="PaymentCardDateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the start and end date for a payment card.</xs:documentation>
</xs:annotation>
<xs:attribute name="EffectiveDate" type="MMYYDate" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the starting date.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExpireDate" type="MMYYDate" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the ending date.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="PositionGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify the geographic coordinates of a location.</xs:documentation>
</xs:annotation>
<xs:attribute name="Latitude" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The measure of the angular distance on a meridian north or south of the equator.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Longitude" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The measure of the angular distance on a meridian east or west of the prime meridian.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Altitude" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The height of an item, typically above sea level.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AltitudeUnitOfMeasureCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Provides the unit of measure for the altitude (e.g., feet, meters, miles, kilometers). Refer to OTA Code List Unit of Measure Code (UOM).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="PreferLevelGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate a level of prefernce for an associated item, only, unacceptable, preferred.</xs:documentation>
</xs:annotation>
<xs:attribute name="PreferLevel" type="PreferLevelType" use="optional" default="Preferred">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate a level of preference for an associated item.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="PrimaryLangID_Group">
<xs:annotation>
<xs:documentation xml:lang="en">Identifes the primary language preference for the message.</xs:documentation>
</xs:annotation>
<xs:attribute name="PrimaryLangID" type="xs:language" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifes the primary language preference for the message. The human language is identified by ISO 639 codes.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="PrivacyGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Allows for control of the sharing of data between parties.</xs:documentation>
</xs:annotation>
<xs:attribute name="ShareSynchInd" use="optional">
<xs:simpleType>
<xs:annotation>
<xs:documentation xml:lang="en"> value="Inherit" Permission for sharing data for synchronization of information held by other travel service providers. </xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Yes"/>
<xs:enumeration value="No"/>
<xs:enumeration value="Inherit"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="ShareMarketInd" use="optional">
<xs:simpleType>
<xs:annotation>
<xs:documentation xml:lang="en"> value="Inherit" Permission for sharing data for marketing purposes.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Yes"/>
<xs:enumeration value="No"/>
<xs:enumeration value="Inherit"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="ProfileTypeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify a profile type.</xs:documentation>
</xs:annotation>
<xs:attribute name="ProfileType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Code to specify a profile such as Customer, Tour Operator, Corporation, etc. Refer to OTA Code List Profile Type (PRT).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="PromotionCodeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide a promotion code.</xs:documentation>
</xs:annotation>
<xs:attribute name="PromotionCode" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Promotion code is the identifier used by the host to link directly with a specific named advertising campaign. By including the required code, the client is able to gain access to special offers which may have been created for a specifically targeted group via a CRM system or for a wider advertising campaign using Television or press adverts.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PromotionVendorCode" type="ListOfStringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">List of the vendor codes associated with a promotion.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="QuantityGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to define a quantity.</xs:documentation>
</xs:annotation>
<xs:attribute name="Quantity" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to define the quantity for an associated element or attribute.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="QueueGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Information to identify a queue.</xs:documentation>
</xs:annotation>
<xs:attribute name="PseudoCityCode" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The ATA/IATA airport/city code, office code, pseudo city code, etc. of the queue.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="QueueNumber" type="AlphaNumericStringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An identifier specifying the queue on which the booking file resides in the system.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="QueueCategory" type="AlphaNumericStringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The category of the queue.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SystemCode" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the airline and/or system where the queue resides. If this is omitted, the airline and/or system code (AirlineVendorID) contained in the point of sale information should be used.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="QueueID" type="AlphaNumericStringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An additional identifier to determine the exact queue on which a reservation record should be placed</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="RateQualifierCoreGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the rate information that is common to all transactions. Such information may include rate codes, rate type, promotional codes, etc. This information may be used to determine the rate that is made available.</xs:documentation>
</xs:annotation>
<xs:attribute name="TravelPurpose" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate the purpose, whether for business, personal or other. Refer to OTA Code List Travel Purpose (TVP).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RateCategory" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The RateCategory attribute defines a set of valid values for the category of a rate. Typically rates are offered as either Leisure rates or Business (Corporate) rates, with a business rate usually including additional costs such as the cost of insurance, etc. This set of values defines the rate categories. Refer to OTA Code List Rate Category(RTC).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CorpDiscountNmbr" type="AlphaNumericStringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is the vendor specific code used to identify a special rate associated with a specific organization.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="PromotionCodeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Promotion code is the identifier used by the host to link directly with a specific named advertising campaign. By including the required code, the client is able to gain access to special offers which may have been created for a specifically targeted group via a CRM system or for a wider advertising campaign using Television or press adverts.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="RateQualifier" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is the vendor specific code for rate codes (e.g. WES, 2A, DLY00).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RatePeriod" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The RatePeriod attribute defines the type of rate that may be applied. For example, typically car rental rates differ based upon the duration of the rental, and the actual rate is then expressed in terms of the period of the rental.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="RatePeriodSimpleType"/>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="GuaranteedInd" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, only guaranteed rates should be returned. When false, all rates should be returned</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="RateRangeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">A range of monetary values within which the cost of the available products are requested.</xs:documentation>
</xs:annotation>
<xs:attribute name="MinRate" type="Money" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A decimal value that indicates the minimum monetary value to be considered in a request for an available product.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MaxRate" type="Money" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A decimal value that indicates the maximum monetary value to be considered in a request for an available product.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="FixedRate" type="Money" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The rate amount used in place of MinRate and MaxRate when a specific rate is being requested.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RateTimeUnit" type="TimeUnitType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify the period of time to which the rates apply.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="CurrencyCodeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide currency code and decimal places for the rate attributes.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
<xs:attributeGroup name="RelativePositionGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the position of an entity in relation to another entity (e.g. from an airport to a hotel, the relationship is dependant on use). </xs:documentation>
</xs:annotation>
<xs:attribute name="Direction" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the cardinal direction (e.g., north, south, southwest).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Distance" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the distance between two points.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DistanceUnitName" type="DistanceUnitNameType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">
<DeprecationWarning>Candidate for potential removal, usage is not recommended. Deprecation Warning added in 2006A.
</DeprecationWarning>
</xs:documentation>
<xs:documentation xml:lang="en">Provides the ability to specify the unit of measure to which the "Distance" attribute is referring.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="UnitOfMeasureCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The unit of measure in a code format. Refer to OTA Code List Unit of Measure Code (UOM).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="RemovalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">This is used to indicate that an item is obsolete.</xs:documentation>
</xs:annotation>
<xs:attribute name="Removal" type="xs:boolean" use="optional" default="false">
<xs:annotation>
<xs:documentation xml:lang="en">If true, this item is obsolete and should be removed from the receiving system.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="ReqRespVersion">
<xs:annotation>
<xs:documentation xml:lang="en">Used to request the version of the payload message desired for the response.</xs:documentation>
</xs:annotation>
<xs:attribute name="ReqRespVersion" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to request the version of the payload message desired for the response.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="ResponseGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates that additional records are available and provides the echo token to be used to retrieve those records.</xs:documentation>
</xs:annotation>
<xs:attribute name="MoreIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If true, this indicates more items are available. If false, no more items are available.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MoreDataEchoToken" type="StringLength1to128" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A reference to the last response returned. Originally set in the response message and will be used in the next query for more details.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="MaxResponsesGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify the maximum number of responses to a request.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
<xs:attributeGroup name="RPH_PrefGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates a preference for an item that is referred to using a Reference Place Holder (RPH). Often an object is stored in a collection of similar objects, and a preference for use of one these objects is to be made known. This complex type can be used to specify the preference level, and to provide the indicator to the object in the collection.</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="PreferLevelGroup"/>
<xs:attribute name="RPH" type="RPH_Type"/>
</xs:attributeGroup>
<xs:attributeGroup name="SeatRequestAttributes">
<xs:annotation>
<xs:documentation xml:lang="en">Attributes for seat request. Note: you can choose a specific seat or just a general preference</xs:documentation>
</xs:annotation>
<xs:attribute name="SeatNumber" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide the seat number.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SeatPreference" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Refer to OTA Code List Seat Preference (STP).
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="SmokingIndicatorGroup"/>
</xs:attributeGroup>
<xs:attributeGroup name="ShareAllGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate whether information can be shared.</xs:documentation>
</xs:annotation>
<xs:attribute name="ShareAllSynchInd" type="YesNoType" use="optional" default="No">
<xs:annotation>
<xs:documentation xml:lang="en">Permission for sharing all data in profile for synchronization of profiles held by other travel service providers.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ShareAllMarketInd" type="YesNoType" use="optional" default="No">
<xs:annotation>
<xs:documentation xml:lang="en">Permission for sharing all data in profile for marketing purposes.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="SignupDateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides the date of registration for a loyalty program.</xs:documentation>
</xs:annotation>
<xs:attribute name="SignupDate" type="xs:date" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates when the member signed up for the loyalty program.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="SingleVendorIndGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the alliance status of a program.</xs:documentation>
</xs:annotation>
<xs:attribute name="SingleVendorInd">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates if program is affiliated with a group of related offers accumulating credits.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="SingleVndr">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the program is not part of an alliance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Alliance">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the program is part of an alliance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="SmokingIndicatorGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies a position with regard to the smoking of cigarettes, either Allowed or NotAllowed. This may be of use when expressing a preference (I prefer a room that allows smoking) or when stating the attributes of an item (smoking in this rental car is not allowed).</xs:documentation>
</xs:annotation>
<xs:attribute name="SmokingAllowed" type="xs:boolean" use="optional" default="false">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates smoking is allowed when true and is not allowed when false.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="TelephoneAttributesGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides telephone information details.</xs:documentation>
</xs:annotation>
<xs:attribute name="PhoneLocationType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Refer to OTA Code List Phone Location Type (PLT).
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PhoneTechType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates type of technology associated with this telephone number, such as Voice, Data, Fax, Pager, Mobile, TTY, etc. Refer to OTA Code List Phone Technology Type (PTT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PhoneUseType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Describes the type of telephone number, in the context of its general use (e.g. Home, Business, Emergency Contact, Travel Arranger, Day, Evening). Refer to OTA Code List Phone Use Type (PUT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CountryAccessCode" type="NumericStringLength1to3" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Code assigned by telecommunications authorities for international country access identifier.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AreaCityCode" type="NumericStringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Code assigned for telephones in a specific region, city, or area.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PhoneNumber" type="StringLength1to32" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">Telephone number assigned to a single location.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Extension" type="NumericStringLength1to5" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Extension to reach a specific party at the phone number.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PIN" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Additional codes used for pager or telephone access rights.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Remark" type="StringLength1to128" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A remark associated with the telephone number.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="TelephoneGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Construct for holding a telephone number.</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attributeGroup ref="TelephoneAttributesGroup"/>
<xs:attributeGroup ref="FormattedInd"/>
</xs:attributeGroup>
<xs:attributeGroup name="TelephoneInfoGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Information about a telephone number, including the actual number and its usage</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="TelephoneGroup"/>
<xs:attributeGroup ref="DefaultIndGroup"/>
<xs:attribute name="RPH" type="RPH_Type" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used elsewhere in the message to reference a specific telephone number (including faxes).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="TimeWindowGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Total time span covered by this availability request (from the earliest arrival to the latest departure)</xs:documentation>
</xs:annotation>
<xs:attribute name="EarliestDate" type="DateOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The earliest ending date/time for the availability requested, expressed in dateTime format as prescribed by ISO 8601.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="LatestDate" type="DateOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The latest ending date/time for the availability requested, expressed in dateTime format as prescribed by ISO 8601.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DOW" type="DayOfWeekType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The Day of Week of the starting date for the availability requested. Enumerated values of StartDOW are the seven days of the week: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, or Sunday.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="TravelDateTimeAttributesGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides times related to a travel segment.</xs:documentation>
</xs:annotation>
<xs:attribute name="DayofWeek" type="DayOfWeekType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The day of week of travel segment.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CheckInTime" type="xs:dateTime" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The check in time and date of travel segment.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DepartureDateTime" type="xs:dateTime" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The departure time and date of the travel segment</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ArrivalDateTime" type="xs:dateTime" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The arrival time and date of the travel segment.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="TravelerCountGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Defines information on the number of travelers of a specific type (e.g. a driver type can be either one of a defined set, Adult, YoungDriver, YoungerDriver, or it may be a code that is acceptable to both Trading Partners).</xs:documentation>
</xs:annotation>
<xs:attribute name="Age" type="Numeric0to999" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is used to specify age in years.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Code" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Refer to OTA Code List Age Qualifying Code (AQC) or use StringLength1to8 with CodeContext to use a non-OTA code.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:union memberTypes="StringLength1to8 OTA_CodeType"/>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="CodeContext" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the source authority for the code. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="URI" type="xs:anyURI" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the location of the code table</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="QuantityGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the number of travelers.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
<xs:attributeGroup name="UniqueID_Group">
<xs:annotation>
<xs:documentation xml:lang="en">Provides unique identification information.</xs:documentation>
</xs:annotation>
<xs:attribute name="URL" type="xs:anyURI">
<xs:annotation>
<xs:documentation xml:lang="en">URL that identifies the location associated with the record identified by the UniqueID.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Type" type="OTA_CodeType" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">A reference to the type of object defined by the UniqueID element. Refer to OTA Code List Unique ID Type (UIT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Instance" type="StringLength1to32">
<xs:annotation>
<xs:documentation xml:lang="en">The identification of a record as it exists at a point in time. An instance is used in update messages where the sender must assure the server that the update sent refers to the most recent modification level of the object being updated.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="ID_Group"/>
<xs:attribute name="ID_Context" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to identify the source of the identifier (e.g., IATA, ABTA).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="UnitsOfMeasureGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Provides measurement information.</xs:documentation>
</xs:annotation>
<xs:attribute name="UnitOfMeasureQuantity" type="xs:decimal" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is the numeric value associated with the measurement.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="UnitOfMeasure" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is the standard unit of measure name (e.g., it could be generic such as metric or imperial or specific such as inches, feet, yards, miles, millimeters, centimeters, meters, kilometers- according to usage). </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="UnitOfMeasureCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The unit of measure in a code format (e.g., inches, pixels, centimeters). Refer to OTA Code List Unit of Measure Code (UOM).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="VoucherGroup">
<xs:annotation>
<xs:documentation xml:lang="en">A form of payment using a voucher or coupon.</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="EffectiveExpireOptionalDateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The date when a voucher becomes valid for use, if applicable, and the the date when a voucher or series of coupons expires and is no longer valid.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="SeriesCode" type="StringLength1to32">
<xs:annotation>
<xs:documentation xml:lang="en">Identification of a series of coupons or vouchers identified by serial number(s).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:complexType name="AcceptablePaymentCardsInfoType">
<xs:annotation>
<xs:documentation xml:lang="en">This complex type identifies payment cards that are acceptable for a specific form of payment, along with the ability to provide free text information regarding payment cards.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="AcceptablePaymentCards" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of payment cards that are acceptable as a form of payment.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="AcceptablePaymentCard" maxOccurs="99">
<xs:annotation>
<xs:documentation xml:lang="en">Specific information of one payment card that is acceptable as a form of payment.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="AcceptablePaymentCardGroup"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Info" type="FormattedTextType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">General information regarding the use of payment cards.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AcceptedPaymentsType">
<xs:annotation>
<xs:documentation xml:lang="en">Used to define the types of payments accepted.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="AcceptedPayment" type="PaymentFormType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AddressInfoType">
<xs:annotation>
<xs:documentation xml:lang="en">Information about an address that identifies a location for a specific purposes.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="AddressType">
<xs:attributeGroup ref="DefaultIndGroup"/>
<xs:attribute name="UseType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Describes the use of the address (e.g. mailing, delivery, billing, etc.). Refer to OTA Code List Address Use Type (AUT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RPH" type="RPH_Type" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used elsewhere in the message to reference this specific address.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="AddressType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides address information.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="StreetNmbr" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">May contain the street number and optionally the street name.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="StreetNmbrType">
<xs:attribute name="StreetNmbrSuffix" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Usually a letter right after the street number (A in 66-A, B in 123-B etc).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="StreetDirection" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Street direction of an address (e.g., N, E, S, NW, SW).
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RuralRouteNmbr" type="NumericStringLength1to5" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Numerical equivalent of a rural township as defined within a given area (e.g., 12, 99).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="BldgRoom" minOccurs="0" maxOccurs="2">
<xs:annotation>
<xs:documentation xml:lang="en">Building name, room, apartment, or suite number.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="StringLength0to64">
<xs:attribute name="BldgNameIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, the information is a building name.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="AddressLine" type="StringLength1to255" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">When the address is unformatted (FormattedInd="false") these lines will contain free form address details. When the address is formatted and street number and street name must be sent independently, the street number will be sent using StreetNmbr, and the street name will be sent in the first AddressLine occurrence.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CityName" type="StringLength1to64" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">City (e.g., Dublin), town, or postal station (i.e., a postal service territory, often used in a military address).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PostalCode" type="StringLength1to16" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Post Office Code number.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="County" type="StringLength1to32" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">County or Region Name (e.g., Fairfax).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="StateProv" type="StateProvType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">State or Province name (e.g., Texas).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CountryName" type="CountryNameType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Country name (e.g., Ireland).</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="FormattedInd">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies if the associated data is formatted or not. When true, then it is formatted; when false, then not formatted.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attribute name="Type" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the type of address (e.g. home, business, other). Refer to OTA Code List Communication Location Type (CLT).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="BankAcctType">
<xs:annotation>
<xs:documentation xml:lang="en">Customer bank accounts for payments, either for paper checks or electronic funds transfer.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="BankAcctName" type="StringLength1to64" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">The name the account is held under.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attribute name="BankID" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Code assigned by authorities to financial institutions; sometimes called bank routing number.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AcctType" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Describes the bank account used for financing travel (e.g., checking, savings, investment).
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="BankAcctNumber" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifier for the account assigned by the bank.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ChecksAcceptedInd" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If true, checks are accepted. If false, checks are not accepted.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="BlackoutDateType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides blackout date information.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="BlackoutDate" type="DateTimeSpanType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates black-out dates for the travel product/service.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="CancelInfoRQType">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the common, or core, information associated with the request for cancellation of a reservation or other type of record.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="UniqueID" type="UniqueID_Type" maxOccurs="2">
<xs:annotation>
<xs:documentation xml:lang="en">Sending own UniqueID and partner UniqueID - the receiving system needs to know which one - UniqueID acts as a reference for each system</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PersonName" type="PersonNameType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">The person's name in a reservation.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="CancelType" type="TransactionActionType" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify if this is to initiate a cancellation or to commit the cancellation.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="CancelInfoRSType">
<xs:annotation>
<xs:documentation xml:lang="en">May contain rules associated with canceling a reservation as well as the supplier's cancellation number.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="CancelRules" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="CancelRule" type="CancelRuleType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="UniqueID" type="UniqueID_Type" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Contains the supplier's cancellation number.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="CancelRuleType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides the cancellation amount due according to the time before the booking date that the cancellation occurs. The amount may be either an amount or a percentage (e.g. 50% within 30 days or $100 outside 30 days). </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="PaymentCard" type="PaymentCardType" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="CancelByDate" type="DateOrDateTimeType"/>
<xs:attributeGroup ref="CurrencyAmountGroup"/>
<xs:attribute name="Percent" type="Percentage" use="optional"/>
<xs:attribute name="Type" use="optional">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Refund"/>
<xs:enumeration value="Charge"/>
<xs:enumeration value="Forfeiture"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
<xs:complexType name="CommentType">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of comments.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Comment" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">Comment details.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ParagraphType">
<xs:attribute name="CommentOriginatorCode" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">CommentOriginatorCode : String
Unique identifier for the system which created the comment.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="GuestViewable" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">GuestViewable : Boolean
Whether or not this comment should be shown to the guest.
Values: False or No, and True or Yes.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="CommissionType">
<xs:annotation>
<xs:documentation xml:lang="en">Contains details pertaining to commissions.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="UniqueID" type="UniqueID_Type" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the recipient of the commission.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CommissionableAmount" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">The amount on which commission is calculated.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="CurrencyAmountGroup"/>
<xs:attribute name="TaxInclusiveIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, indicates that the commission is calculated using the rate including tax. When false, indicates that the commission is calculated using the net rate.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="PrepaidAmount" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">The amount of commission paid to the agency prior to the service being rendered.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="CurrencyAmountGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="FlatCommission" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">A fixed commission amount. </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="CurrencyAmountGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="CommissionPayableAmount" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">The amount of commission to be paid.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="CurrencyAmountGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="Comment" type="ParagraphType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Text related to the commission.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="StatusType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the status of the commission payment itself (e.g. no-show indicates that a different commission may be applied if the reservation is not fulfilled).</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Full">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates full commission.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Partial">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates partial commission.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Non-paying">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates no commission.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="No-show">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates customer did not use the reserved product or service and did not cancel. This "no show" may impact commission.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Adjustment">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the commission is being adjusted.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="Percent" type="Percentage" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The percent applied to the commissionable amount to determine the commission payable amount.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="CurrencyCodeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the currency to be applied to the amounts located in the child elements.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="ReasonCode" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the reason why a commission is not paid or not paid in full.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="BillToID" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies who should be billed for the commission amount.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Frequency" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is the frequency at which the commission is applied (e.g. per stay, daily). Refer to OTA Code List Charge Type (CHG).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MaxCommissionUnitApplies" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Maximum number of units for which the commission will be applied. This may be used in conjunction with the frequency attribute.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CapAmount" type="Money" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The highest monetary value that may be paid for the commission.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="CompanyNameType">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies a company by name.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="StringLength0to128">
<xs:attributeGroup ref="CompanyID_AttributesGroup"/>
<xs:attribute name="Division" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The division name or ID with which the contact is associated.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Department" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The department name or ID with which the contact is associated.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="ConnectionType">
<xs:annotation>
<xs:documentation xml:lang="en">To specify connection locations, preference level for each, min connection time, and whether location is specified for stopping or changing.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ConnectionLocation" maxOccurs="9">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="LocationType">
<xs:attribute name="Inclusive" type="xs:boolean" use="optional" default="true"/>
<xs:attributeGroup ref="PreferLevelGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The preference level for the connection point - only, unacceptable, preferred. </xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="MinChangeTime" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Number of minutes between connections.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ConnectionInfo" use="optional">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Via"/>
<xs:enumeration value="Stop"/>
<xs:enumeration value="Change"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ContactPersonType">
<xs:annotation>
<xs:documentation xml:lang="en">Name of an individual and appropriate contact information. May be contact information for the customer or someone affiliated with the customer.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="PersonName" type="PersonNameType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">This provides name information for a person.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Telephone" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Information about a telephone number, including the actual number and its usage</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="TelephoneInfoGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="Address" type="AddressInfoType" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Information about an address that identifies a location for a specific purposes.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Email" type="EmailType" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Electronic email addresses, in IETF specified format.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="URL" type="URL_Type" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Web site address, in IETF specified format.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CompanyName" type="CompanyNameType" minOccurs="0" maxOccurs="3">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies a company by name.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EmployeeInfo" type="EmployeeInfoType" minOccurs="0" maxOccurs="3">
<xs:annotation>
<xs:documentation xml:lang="en">Employment identification; using an employee ID number, title, level within the company, and an indication of their status, i.e.: active, retired, on leave, or terminated from employment. Additional information about an employee can be entered into the element, including the name of the employee, if it differs from the person name identified as a customer or contact.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="PrivacyGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Allows for control of the sharing of data between parties.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup ref="DefaultIndGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates that the receiving system should assume the default value if the user specifies no overriding value or action.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="ContactType" type="StringLength1to32">
<xs:annotation>
<xs:documentation xml:lang="en">Type of contact in the context of use for the travel experience; such as permanent, temporary, affiliation,
travel arranger, etc.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Relation" type="StringLength1to32">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the type of relationship with the person or company in the profile, such as Spouse, Child, Family, Business Associate, Interest Group, Medical, Security,Other, etc.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EmergencyFlag" type="xs:boolean" use="optional" default="false">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates if this contact should be used in the case of an emergency.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RPH" type="RPH_Type">
<xs:annotation>
<xs:documentation xml:lang="en">Provides a unique reference to this contact person.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="CountryNameType">
<xs:annotation>
<xs:documentation xml:lang="en">The name or code of a country (e.g. as used in an address or to specify citizenship of a traveller).</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="StringLength0to64">
<xs:attribute name="Code" type="ISO3166" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">ISO 3166 code for a country.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="CustomerType">
<xs:annotation>
<xs:documentation xml:lang="en">Contains basic data on the customer's identity, location, relationships, finances, memberships, etc.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="PersonName" type="PersonNameType" minOccurs="0"/>
<xs:element name="Telephone" minOccurs="0" maxOccurs="5">
<xs:complexType>
<xs:attributeGroup ref="EffectiveExpireOptionalDateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The first and last dates between which this telephone number is in effect.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup ref="TelephoneInfoGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="Email" type="EmailType" minOccurs="0" maxOccurs="5"/>
<xs:element name="Address" minOccurs="0" maxOccurs="5">
<xs:complexType>
<xs:complexContent>
<xs:extension base="AddressInfoType">
<xs:sequence>
<xs:element name="CompanyName" type="CompanyNameType" minOccurs="0"/>
</xs:sequence>
<xs:attributeGroup ref="EffectiveExpireOptionalDateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The first and last dates between which this address is in effect.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="URL" type="URL_Type" minOccurs="0" maxOccurs="5"/>
<xs:element name="CitizenCountryName" minOccurs="0" maxOccurs="2">
<xs:complexType>
<xs:attributeGroup ref="CitizenCountryNameGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="PhysChallName" type="StringLength1to128" minOccurs="0" maxOccurs="5"/>
<xs:element name="PetInfo" type="StringLength1to64" minOccurs="0" maxOccurs="3"/>
<xs:element name="PaymentForm" type="PaymentFormType" minOccurs="0" maxOccurs="5"/>
<xs:element name="RelatedTraveler" type="RelatedTravelerType" minOccurs="0" maxOccurs="9"/>
<xs:element name="ContactPerson" type="ContactPersonType" minOccurs="0" maxOccurs="5"/>
<xs:element name="Document" type="DocumentType" minOccurs="0" maxOccurs="5"/>
<xs:element name="CustLoyalty" minOccurs="0" maxOccurs="5">
<xs:complexType>
<xs:attributeGroup ref="CustomerLoyaltyGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="EmployeeInfo" type="EmployeeInfoType" minOccurs="0" maxOccurs="3"/>
<xs:element name="EmployerInfo" type="CompanyNameType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the customer's employer.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="TPA_Extensions" minOccurs="0"/>
</xs:sequence>
<xs:attributeGroup ref="GenderGroup"/>
<xs:attribute name="Deceased" type="xs:boolean"/>
<xs:attribute name="LockoutType" type="StringLength1to16">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates reason for locking out record, such as Emergency, Incident, etc. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="BirthDateGroup"/>
<xs:attributeGroup ref="CurrencyCodeGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Type of funds preferred for reviewing monetary values, in ISO 4217 codes.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="VIP_Indicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If true, indicates a very important person.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Text" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify textual information about the customer.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="LanguageGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The primary language of the customer.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
<xs:complexType name="DateTimeSpanType">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify a time window range by either specifying an earliest and latest date for the start date and end date or by giving a date with a time period that can be applied before and/or after the start date.</xs:documentation>
</xs:annotation>
<xs:choice>
<xs:element name="DateWindowRange" type="TimeInstantType"/>
<xs:sequence>
<xs:element name="StartDateWindow" minOccurs="0">
<xs:complexType>
<xs:attributeGroup ref="TimeWindowGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="EndDateWindow" minOccurs="0">
<xs:complexType>
<xs:attributeGroup ref="TimeWindowGroup"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:choice>
<xs:attributeGroup ref="DateTimeSpanGroup"/>
</xs:complexType>
<xs:complexType name="DirectBillType">
<xs:annotation>
<xs:documentation xml:lang="en">Company name and location for sending invoice for remittances for travel services.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="CompanyName" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Company name to whom remittance should be directed.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="CompanyNameType">
<xs:attribute name="ContactName" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This may be used to pass the name of the contact at the company for which the direct bill applies.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="Address" type="AddressInfoType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Address where remittance should be directed.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attribute name="DirectBill_ID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifier for the organization to be billed directly for travel services.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="BillingNumber" type="StringLength0to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The number assigned by the subscriber for billing reconciliation of a corporate account.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="DocumentType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides information on a specific documents</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:choice minOccurs="0">
<xs:element name="DocHolderName" type="StringLength1to64" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">The name of the document holder in unformatted text (Mr. Sam Jones). </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DocHolderFormattedName" type="PersonNameType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">The name of document holder in formatted text.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:element name="DocLimitations" type="StringLength1to64" minOccurs="0" maxOccurs="9">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate any limitations on the document (e.g. as a person may only be allowed to spend a max of 30 days in country on a visitor's visa).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AdditionalPersonNames" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">A container for additional person names.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="AdditionalPersonName" type="StringLength1to64" maxOccurs="99">
<xs:annotation>
<xs:documentation xml:lang="en">The name of an additional person listed on this document. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attribute name="DocIssueAuthority" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the group or association that granted the document.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DocIssueLocation" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the location where the document was issued.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DocID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Unique number assigned by authorities to document.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DocType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the type of document (e.g. Passport, Military ID, Drivers License, national ID, Vaccination Certificate). Refer to OTA Code List Document Type (DOC).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="GenderGroup"/>
<xs:attributeGroup ref="BirthDateGroup"/>
<xs:attributeGroup ref="EffectiveExpireOptionalDateGroup"/>
<xs:attribute name="DocIssueStateProv" type="StateProvCodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">State or Province where the document was issued.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DocIssueCountry" type="ISO3166" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Country where the document was issued.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="BirthCountry" type="ISO3166" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the birth country of the document holder.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DocHolderNationality" type="ISO3166">
<xs:annotation>
<xs:documentation xml:lang="en">The country code of the nationality of the document holder.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="EmailType">
<xs:annotation>
<xs:documentation xml:lang="en">Electronic email addresses, in IETF specified format.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="StringLength1to128">
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attributeGroup ref="DefaultIndGroup"/>
<xs:attribute name="EmailType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the purpose of the e-mail address (e.g. personal, business, listserve). Refer to OTA Code List Email Address Type (EAT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RPH" type="RPH_Type" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used elsewhere in the message to reference this specific email address.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="EmployeeInfoType">
<xs:annotation>
<xs:documentation xml:lang="en">Employment identification; using an employee ID number, title, level within the company, and an indication of their status, i.e.: active, retired, on leave, or terminated from employment. Additional information about an employee can be entered into the element, including the name of the employee, if it differs from the person name identified as a customer or contact.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="StringLength0to64">
<xs:attribute name="EmployeeId" type="StringLength1to16">
<xs:annotation>
<xs:documentation xml:lang="en">Identifier assigned to the employee.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EmployeeLevel" type="StringLength1to16">
<xs:annotation>
<xs:documentation xml:lang="en">Level in employer organization (e.g. seniority) that coveys privileges.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EmployeeTitle" type="StringLength1to64">
<xs:annotation>
<xs:documentation xml:lang="en">Title of employee in the employer company that conveys rank or privileges.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EmployeeStatus" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Status of employment. Refer to OTA Code List Employee Status (EMP).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="EquipmentType">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the aircraft equipment type.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="StringLength0to64">
<xs:attribute name="AirEquipType" type="StringLength3" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">This is the 3 character IATA code.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ChangeofGauge" type="xs:boolean" use="optional" default="false">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates there is an equipment change.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="ErrorType">
<xs:annotation>
<xs:documentation xml:lang="en">Standard way to indicate that an error occurred during the processing of an OTA message</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="FreeTextType">
<xs:attribute name="Type" type="OTA_CodeType" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">The Error element MUST contain the Type attribute that uses a recommended set of values to indicate the error type. The validating XSD can expect to accept values that it has NOT been explicitly coded for and process them by using Type ="Unknown". Refer to OTA Code List Error Warning Type (EWT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="ErrorWarningAttributeGroup"/>
<xs:attribute name="NodeList" type="xs:string">
<xs:annotation>
<xs:documentation xml:lang="en">An XPath expression that selects all the nodes whose data caused this error. Further, this expression should have an additional contraint which contains the data of the node. This will provide the offending data back to systems that cannot maintain the original message. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="ErrorsType">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of errors that occurred during the processing of a message.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Error" type="ErrorType" maxOccurs="99"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="FeeType">
<xs:annotation>
<xs:documentation xml:lang="en">Used for non-tax fees and charges (e.g. service charges) .</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Taxes" type="TaxesType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Used for taxes on the associated fee.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Description" type="ParagraphType" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Text description of the fees in a given language.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="TaxInclusive" type="xs:boolean">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates whether taxes are included when figuring the fees. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="FeeTaxGroup"/>
<xs:attributeGroup ref="EffectiveExpireOptionalDateGroup"/>
<xs:attribute name="MandatoryIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, indicates the fee is mandatory. When false, the fee is not mandatory.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RPH" type="RPH_Type" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An index code to identify an instance in a collection of like items.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="ChargeUnitGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies charge information by unit (e.g., room, person, item) and frequency (e.g., daily, weekly, stay).</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="TaxableIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, indicates that the fee is subject to tax.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="FeesType">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of fees.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Fee" type="FeeType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">Fee Amount that is applied to the rate. Fees are used for non tax amounts like service charges.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="FlightSegmentBaseType">
<xs:annotation>
<xs:documentation xml:lang="en">Construct for holding a flight segment availability object.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="DepartureAirport">
<xs:annotation>
<xs:documentation xml:lang="en">Departure point of flight segment.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="AirportLocationGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="ArrivalAirport">
<xs:annotation>
<xs:documentation xml:lang="en">Arrival point of flight segment.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="AirportLocationGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="OperatingAirline" type="OperatingAirlineType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en"> The operating airline of the flight if it is a codeshare flight.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Equipment" type="EquipmentType" minOccurs="0" maxOccurs="2">
<xs:annotation>
<xs:documentation xml:lang="en"> The type of equipment used for the flight..</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="DepartureDateTime" type="xs:dateTime" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The date and time of the flight segment departure.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ArrivalDateTime" type="xs:dateTime" use="optional"/>
<xs:attribute name="StopQuantity" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en"> The number of stops the flight makes</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RPH" type="RPH_Type" use="optional"/>
<xs:attribute name="InfoSource" type="InfoSourceType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify the source of the data being exchanged as determined by trading partners. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="FormattedTextSubSectionType">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide subsection formatted text information.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Paragraph" type="ParagraphType" maxOccurs="99"/>
</xs:sequence>
<xs:attribute name="SubTitle" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This attribute may be used to provide a title for a sub-section of the formatted free text. A sub-section may have multiple related paragraphs of information. For example, if used to provide driving directions there may be multiple paragraphs, and these paragraphs may be grouped into a sub-section called "Driving from the North". A second subsection may be titled "Driving from the South", and may contain several paragraphs to describe the driving directions when driving from the south. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SubCode" type="StringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An optional code that may be assigned to this sub-section of formatted free text.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SubSectionNumber" type="Numeric1to999" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This attribute may be used when there is a need to number all of the sub-sections of information that is to be presented.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="FormattedTextTextType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides text and indicates whether it is formatted or not.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="Formatted" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Textual information, which may be formatted as a line of information, or unformatted, as a paragraph of text.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="LanguageGroup"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="FormattedTextType">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of formatted text sub sections.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="SubSection" type="FormattedTextSubSectionType" maxOccurs="99"/>
</xs:sequence>
<xs:attribute name="Title" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This attribute may be used to provide a title for the formatted free text,
for example, Driving Directions. Each of the sub sections that are defined
to be a part of the formatted text would provide detailed information about
the subject identified by the title.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Language" type="xs:language" use="optional"/>
</xs:complexType>
<xs:complexType name="FreeTextType">
<xs:annotation>
<xs:documentation xml:lang="en">Textual information to provide descriptions and/or additional information.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attributeGroup ref="LanguageGroup"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="ImageDescriptionType">
<xs:annotation>
<xs:documentation xml:lang="en">Describes an image item.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ImageFormat" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">A set of Images for a given category but provided in different format.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ImageItemType">
<xs:attributeGroup ref="MultimediaDescriptionGroup"/>
<xs:attribute name="Language" type="xs:language" use="optional"/>
<xs:attribute name="Format" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">code list to create to identof the different format of an Image </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="FileName" type="StringLength1to64" use="optional"/>
<xs:attribute name="FileSize" type="xs:positiveInteger" use="optional"/>
<xs:attribute name="DimensionCategory" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Associates the image size to a given category (e.g., 70x70, 100x100, 480x480). For example, if an image with a dimension of 72x73 is sent, it may be categorized as a 70x70 image.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IsOriginalIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, the image is the original file and format. When false, the image is not the original file and format.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="Description" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">The description associated with the image in a specific language.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="FormattedTextTextType">
<xs:attribute name="Caption" type="StringLength1to128" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The caption associated to a specific image category which can be provided in different languages.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="Category" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the image category. Refer to OTA code list Picture Category Code (PIC). </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="ImageItemsType">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of image items.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="ImageItem" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">Image of a given category.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ImageDescriptionType">
<xs:attributeGroup ref="DateTimeStampGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Creation and modification information for this image item.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup ref="RemovalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">If true, this item is obsolete and should be removed from the receiving system.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="Version" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The version of the image item.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="ID_OptionalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">A unique identifying value assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ImageItemType">
<xs:annotation>
<xs:documentation xml:lang="en">Details for an image of a given category. </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="URL" type="xs:anyURI" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">URL of the multimedia item for a specific format. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="UnitOfMeasureCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The unit of measure for the image item. Refer to OTA code list Unit of Measure (UOM).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Width" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The width of the image item (unit specified by unit of measure).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Height" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The height of the image item (unit specified by unit of measure).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="ItemSearchCriterionType">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the criterion for a search.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Position" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">The Position element contains three attributes, Latitude, Longitude, and Altitude, used to indicate the geographic location(s) requested by the search, expressed in notation specified by ISO standard 6709. It is likely that only the first two attributes, Latitude and Longitude, would be needed to define a geographic area.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="PositionGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="Address" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Uses any part of address information, such as street name, postal code, or country code.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="AddressType">
<xs:attribute name="SameCountryInd" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, only locations in the same country as the specified city's country should be selected.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="Telephone" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Telephone number(s) used in the search.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="TelephoneGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="RefPoint" minOccurs="0" maxOccurs="999">
<xs:annotation>
<xs:documentation xml:lang="en">The Reference Point element allows for a search by proximity to a designated reference point by name. </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="StringLength0to64">
<xs:attribute name="StateProv" type="StateProvCodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The state or province in which the reference point is located.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CountryCode" type="ISO3166" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The country in which the reference point is located.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="CodeListGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify a reference point by a code.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="RefPointType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the type of location being referenced (e.g., Airport, Hotel). Refer to the OTA code table Index Point Code (IPC).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Name" type="StringLength1to128" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The name of the reference point.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CityName" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The name of the city associated with this reference point.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="CodeRef" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the location of points of interest.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="LocationType">
<xs:attribute name="VicinityCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to identify the vicinity of the location. Refer to OTA Codelist Vehicle Where at Facility (VWF).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="HotelRef" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the detail of hotel reference information.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="HotelReferenceGroup"/>
<xs:attribute name="SegmentCategoryCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to search for hotels within a particular market segment. Refer to OTA Code Segment Category Code Type (SEG).
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PropertyClassCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Refer to OTA Code list OTA Code List Property Class Type (PCT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ArchitecturalStyleCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Refer to OTA Code List Architectural Style Code (ARC).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SupplierIntegrationLevel" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The level of integration of a property to provide automated transaction information. The lower the number, the higher the integration (e.g., a 1 means the supplier has the highest level of integration automation).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="Radius" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify the extent of a search area. The extent is relative to an element (position, address, hotel reference, etc.) present in this ItemSearchCriterionType that specifies a location.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="DistanceAttributesGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide distance and direction information from the referenced location.
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="ExactMatch" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Values of "true" or "false", indicating whether the string of the search value must be an exact match.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ImportanceType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An enumerated list, indicating the level of importance of the search criterion. Acceptable values are "Mandatory", "High", "Medium", or "Low."</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="StringLength1to16">
<xs:enumeration value="Mandatory">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the item is required.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="High">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates a high level of importance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Medium">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates a medium level of importance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Low">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates a low level of importance.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="Ranking" type="xs:integer" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines a ranking scale expressed as integers; meaning and scale are based on individual implementations.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="LocationGeneralType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides high-level information regarding a location.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="CityName" type="StringLength1to64" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">City (e.g., Dublin), town, or postal station (i.e., a postal service territory, often used in a military address).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="StateProv" type="StateProvCodeType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">State or Province name (e.g., Texas).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CountryName" type="CountryNameType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Country name (e.g., Ireland).</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="LocationType">
<xs:annotation>
<xs:documentation xml:lang="en">Code and optional string to describe a location point.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attributeGroup ref="LocationGroup"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="MessageAcknowledgementType">
<xs:annotation>
<xs:documentation xml:lang="en">Information to acknowledge the receipt of a message.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:choice>
<xs:sequence>
<xs:element name="Success" type="SuccessType">
<xs:annotation>
<xs:documentation xml:lang="en">The presence of the empty Success element explicitly indicates that the OTA versioned message succeeded. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Warnings" type="WarningsType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Used in conjunction with the Success element to define one or more business errors.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:element name="Errors" type="ErrorsType">
<xs:annotation>
<xs:documentation xml:lang="en">Errors is returned if the request was unable to be processed.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:element name="UniqueID" type="UniqueID_Type" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">May be used to return the unique id from the request message.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="TPA_Extensions" minOccurs="0"/>
</xs:sequence>
<xs:attributeGroup ref="OTA_PayloadStdAttributes"/>
</xs:complexType>
<xs:complexType name="MonetaryRuleType">
<xs:annotation>
<xs:documentation xml:lang="en">This defines the information pertaining to rules and amounts associated with these rules.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="StringLength0to255">
<xs:attributeGroup ref="CurrencyAmountGroup"/>
<xs:attribute name="RuleType" type="OTA_CodeType" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">
Refer to OTA Code List Rule Type (RUL).
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Percent" type="Percentage" use="optional"/>
<xs:attribute name="DateTime" type="xs:dateTime" use="optional"/>
<xs:attribute name="PaymentType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">
Refer to OTA Code List Payment Type (PMT).
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="MultimediaDescriptionsType">
<xs:annotation>
<xs:documentation xml:lang="en">Contains descriptions of multimedia item(s).</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="MultimediaDescription" type="MultimediaDescriptionType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">The description can be done using numerous items of different multimedia type </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="LastUpdated" type="xs:dateTime" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The date and time when the multimedia information was last updated. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="MultimediaDescriptionType">
<xs:annotation>
<xs:documentation xml:lang="en">Describes multimedia item(s).</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0">
<xs:element name="VideoItems" type="VideoItemsType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of video items. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ImageItems" type="ImageItemsType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of image items.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TextItems" type="TextItemsType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of text items. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:attribute name="InfoCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to designate a particular type of description such as marketing. Refer to OTA Code List Information Type (INF).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AdditionalDetailCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to designate a particular type of additional information. Refer to OTA Code List Additional Detail Type (ADT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="ID_OptionalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">A unique identifying value assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
<xs:complexType name="OperatingAirlineType">
<xs:annotation>
<xs:documentation xml:lang="en">This is an extension of CompanyNameType to include a FlightNumber.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="CompanyNameType">
<xs:attribute name="FlightNumber" type="FlightNumberType"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="OperationScheduleType">
<xs:annotation>
<xs:documentation xml:lang="en">Details of an operating schedule (e.g. a golf tee time may be more expensive during peak hours v. off peak hours).</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="OperationTimes" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of OperationTimes.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="OperationTime" maxOccurs="999">
<xs:annotation>
<xs:documentation xml:lang="en">Provides operating times of a facility.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="DOW_PatternGroup"/>
<xs:attributeGroup ref="DateTimeSpanGroup"/>
<xs:attribute name="AdditionalOperationInfoCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide additional information regarding operation times (e.g., after hours operations, restricted times). Refer to OTA Codelist Additional Operation Info (OPR).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Frequency" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The frequency with which this operation occurs (e.g., 'on the hour', 'on the half hour').</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Text" type="StringLength0to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Textual information for this period of operation.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="DateTimeSpanGroup"/>
</xs:complexType>
<xs:complexType name="OperationSchedulesType">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of operation schedules.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="OperationSchedule" type="OperationScheduleType" maxOccurs="999">
<xs:annotation>
<xs:documentation xml:lang="en">The OperationSchedule class defines the dates and hours of operation. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="DateTimeSpanGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The date range for which the operation schedule information is valid.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
<xs:complexType name="OperationSchedulePlusChargeType">
<xs:annotation>
<xs:documentation xml:lang="en">This allows a charge to be associated with operating times (e.g. a golf tee time may be more expensive during peak hours v. off peak hours).</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="OperationScheduleType">
<xs:sequence>
<xs:element name="Charge" type="FeeType" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Cost associated with an amenity.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="OperationSchedulesPlusChargeType">
<xs:annotation>
<xs:documentation xml:lang="en">The OperationSchedule class defines the dates and hours of operation in addition the charges that may apply.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="OperationSchedule" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">The OperationSchedule class defines details the dates and hours of operation. </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="OperationSchedulePlusChargeType">
<xs:attribute name="Name" type="StringLength0to128" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide a name for a sub-operation (e.g. an activity or event).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="OrdersType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides the details of one or more orders.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Order" minOccurs="0" maxOccurs="99">
<xs:annotation>
<xs:documentation xml:lang="en">Information pertaining to a specific order.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Products" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of products.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Product" minOccurs="0" maxOccurs="99">
<xs:annotation>
<xs:documentation xml:lang="en">The details associated to a specific product.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="ProductIssueDate" type="DateOrDateTimeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The date or date and time that the product was issued.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ProductID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An identification number associated to the specific product.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ProductType" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the type of product being purchased.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ProductQuantity" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The number of the specific product being purchased.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ProductSerialNumber" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The serial number of the specific product.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DiscountCode" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The discount code that applies to the specific product.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="CurrencyAmountGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The amount related to the specific item (e.g., if the item being purchased is a gift certificate, and only one item is being purchased the full amount is applied to the gift certificate).</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="Status" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The status of the product. This attribute would primarily be used in the response message to identify the status of the item being purchased.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="OrderPending">
<xs:annotation>
<xs:documentation xml:lang="en">The order has been submitted, but has not yet been confirmed.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="BackOrder">
<xs:annotation>
<xs:documentation xml:lang="en">The product being purchased is on back order.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unavailable">
<xs:annotation>
<xs:documentation xml:lang="en">The product being purchased is unavailable.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Confirmed">
<xs:annotation>
<xs:documentation xml:lang="en">The order has been confirmed.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="ListOfRecipientRPH" type="ListOfRPH" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The recipient(s) to whom the product pertains.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="OrderType" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the type of order.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="OrderID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The identification number associated to the orders.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ListOfRecipientRPH" type="ListOfRPH" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The recipient(s) to whom the order pertains.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="OrderType" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the type of orders.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DiscountCode" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A discount code that applies to the orders.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="VendorPurchaseOrderID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The purchase order number of a sales intermediary.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="OrderID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The identification number associated to the orders.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="OriginDestinationInformationType">
<xs:annotation>
<xs:documentation xml:lang="en">Origin and Destination location, and time information for the request. Also includes the ability to specify a connection location for the search.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="TravelDateTimeType">
<xs:sequence>
<xs:element name="OriginLocation">
<xs:annotation>
<xs:documentation xml:lang="en">Travel Origin Location - for example, air uses the IATA 3 letter code.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="LocationType">
<xs:attribute name="MultiAirportCityInd" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If true, other airports within this city may be considered (i.e., EWR, JFK when origin location is LGA.)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AlternateLocationInd" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If true, alternate locations may be considered.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="DestinationLocation">
<xs:annotation>
<xs:documentation xml:lang="en">Travel Destination Location - for example, air uses the IATA 3 letter code.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="LocationType">
<xs:attribute name="MultiAirportCityInd" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If true, other airports within this city may be considered (i.e., EWR, JFK when origin location is LGA.)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AlternateLocationInd" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">If true, alternate locations may be considered.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="ConnectionLocations" type="ConnectionType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Travel Connection Location - for example, air uses the IATA 3 letter code.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="POS_Type">
<xs:annotation>
<xs:documentation xml:lang="en">Point of Sale (POS) is the details identifying the party or connection channel making the request.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Source" type="SourceType" maxOccurs="10">
<xs:annotation>
<xs:documentation xml:lang="en">This holds details regarding the requestor. It may be repeated to also accommodate the delivery systems.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ParagraphType">
<xs:annotation>
<xs:documentation xml:lang="en">An indication of a new paragraph for a sub-section of a formatted text message.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Text" type="FormattedTextTextType"/>
<xs:element name="Image" type="xs:string"/>
<xs:element name="URL" type="xs:anyURI"/>
<xs:element name="ListItem">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="FormattedTextTextType">
<xs:attribute name="ListItem" type="xs:integer" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:choice>
<xs:attribute name="Name" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">In many cases the description repeats, this will allow you to define the information that is being sent, typically used when multiple occurrences of ParagraphType are being sent.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ParagraphNumber" type="xs:nonNegativeInteger" use="optional"/>
<xs:attributeGroup ref="DateTimeStampGroup"/>
<xs:attributeGroup ref="LanguageGroup"/>
</xs:complexType>
<xs:complexType name="PaymentCardType">
<xs:annotation>
<xs:documentation xml:lang="en">Identification about a specific credit card</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="CardHolderName" type="StringLength1to64" minOccurs="0"/>
<xs:element name="CardIssuerName" minOccurs="0">
<xs:complexType>
<xs:attributeGroup ref="IssuerNameGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="Address" type="AddressType" minOccurs="0"/>
</xs:sequence>
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attribute name="CardType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the type of magnetic striped card. Refer to OTA Code ListCard Type (CDT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CardCode" type="PaymentCardCodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The 2 character code of the credit card issuer.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CardNumber" type="NumericStringLength1to19" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Credit card number embossed on the card.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SeriesCode" type="NumericStringLength1to8" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Verification digits printed on the card following the embossed number. This may also accommodate the customer identification/batch number (CID), card verification value (CVV2 ), card validation code number (CVC2) on credit card.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="PaymentCardDateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Date the card becomes valid for use (optional) and the date the card expires (required) in ISO 8601 prescribed format.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="MaskedCardNumber" type="AlphaNumericStringLength1to19" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">May be used to send a concealed credit card number (e.g., xxxxxxxxxxxx9922).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CardHolderRPH" type="RPH_Type" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Provides a reference pointer that links the payment card to the payment card holder.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExtendPaymentIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, the credit card company is requested to delay the date on which the amount of this transaction is applied to the customer's account.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="PaymentDetailType">
<xs:annotation>
<xs:documentation xml:lang="en">Details of payment.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="PaymentFormType">
<xs:sequence>
<xs:element name="PaymentAmount" minOccurs="0">
<xs:complexType>
<xs:attributeGroup ref="CurrencyAmountGroup"/>
<xs:attribute name="ApprovalCode" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The approval code returned as part of an authorization process.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="PaymentFormType">
<xs:annotation>
<xs:documentation xml:lang="en">Ways of providing funds for travel by the individual.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0">
<xs:element name="PaymentCard" type="PaymentCardType">
<xs:annotation>
<xs:documentation xml:lang="en">Details of a debit or credit card.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="BankAcct" type="BankAcctType">
<xs:annotation>
<xs:documentation xml:lang="en">Details of a bank account. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DirectBill" type="DirectBillType">
<xs:annotation>
<xs:documentation xml:lang="en">Details of a direct billing arrangement.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Voucher">
<xs:annotation>
<xs:documentation xml:lang="en">Details of a paper or electronic document indicating prepayment.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="VoucherGroup"/>
<xs:attribute name="BillingNumber" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Reference of the billing account which handles the payment transaction.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SupplierIdentifier" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Unique identifier of the electronic voucher, created by the supplier.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Identifier" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Unique identifier of the electronic voucher.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ValueType" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the type of voucher (e.g., full credit or partial credit).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ElectronicIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, indicates the voucher is electronic. An E-voucher is a value document issued by the Travel Agent for the customer. The e-voucher can be used as a proof of reservation, but more normally, as a full-payment or partial payment. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="LoyaltyRedemption">
<xs:annotation>
<xs:documentation xml:lang="en">Details of a loyalty redemption arrangement. This is normally miles or points. </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="LoyaltyCertificate" minOccurs="0" maxOccurs="9">
<xs:annotation>
<xs:documentation xml:lang="en">A certificate may be needed in order to redeem miles or points. Certificates may be used in combination with each other as part of a reservation.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="LoyaltyCertificateGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the loyalty scheme, programs and promotions within the scheme, membership reference, format of the certificate, the number of nights it can be used and its current status.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="LoyaltyCertificateNumberGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the Loyalty scheme, programs and promotions within the scheme, membership reference, form factor used by the certificate, the number of nights it can be used for and its current status.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup ref="PromotionCodeGroup"/>
<xs:attribute name="RedemptionQuantity" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The quantity of loyalty units being redeemed.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="MiscChargeOrder">
<xs:annotation>
<xs:documentation xml:lang="en">Details of a miscellaneous charge order (MCO).</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="TicketNumber" type="StringLength1to32">
<xs:annotation>
<xs:documentation xml:lang="en">The ticket number of the miscellaneous charge order (MCO).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="Cash">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate payment in cash.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="CashIndicator" type="xs:boolean" use="optional" default="true">
<xs:annotation>
<xs:documentation xml:lang="en">If true, this indicates cash is being used.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:choice>
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attribute name="CostCenterID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">A reference to identify the billing department for allocating cost of travel to company account.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RPH" type="RPH_Type" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Provides a reference to a specific form of payment.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PaymentTransactionTypeCode" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is used to indicate either a charge or reserve (deposit).</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="charge">
<xs:annotation>
<xs:documentation xml:lang="en">This indicates that an actual payment has been made.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="reserve">
<xs:annotation>
<xs:documentation xml:lang="en">This indicates that a hold for the indicated amount has been placed on a credit card or that a cash amount has been taken from the customer to guarantee final payment.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
<xs:complexType name="PaymentRulesType">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of payment rules.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="PaymentRule" type="MonetaryRuleType" maxOccurs="9">
<xs:annotation>
<xs:documentation xml:lang="en">One specific payment rule associated with this reservation. For example, a date by which a deposit must be received.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PersonNameType">
<xs:annotation>
<xs:documentation xml:lang="en">This provides name information for a person.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="NamePrefix" type="StringLength1to16" minOccurs="0" maxOccurs="3">
<xs:annotation>
<xs:documentation xml:lang="en">Salutation of honorific. (e.g., Mr. Mrs., Ms., Miss, Dr.) </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="GivenName" type="StringLength1to64" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Given name, first name or names</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MiddleName" type="StringLength1to64" minOccurs="0" maxOccurs="3">
<xs:annotation>
<xs:documentation xml:lang="en">The middle name of the person name</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SurnamePrefix" type="StringLength1to16" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">e.g "van der", "von", "de" </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Surname" type="StringLength1to64">
<xs:annotation>
<xs:documentation xml:lang="en">Family name, last name.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NameSuffix" type="StringLength1to16" minOccurs="0" maxOccurs="3">
<xs:annotation>
<xs:documentation xml:lang="en">Hold various name suffixes and letters (e.g. Jr., Sr., III, Ret., Esq.).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NameTitle" type="StringLength1to16" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Degree or honors (e.g., Ph.D., M.D.) </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attribute name="NameType" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Type of name of the individual, such as former, nickname, alternate or alias name. Refer to OTA Code List Name Type (NAM).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="RateQualifierType">
<xs:annotation>
<xs:documentation xml:lang="en">The RateQualifierType complex type describes fully rate information associated with a specific rate quotation, including the description of any promotions that may apply.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="PromoDesc" type="StringLength1to32" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">This may be used to provide additional information about the promotion code.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RateComments" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="RateComment" maxOccurs="15">
<xs:annotation>
<xs:documentation xml:lang="en">This may be used to provide any additional information about rates (e.g., must return by Monday at 8 AM). </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="FormattedTextTextType">
<xs:attribute name="Name" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the type of rate comments (e.g., textual rule, marketing information).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="RateQualifierCoreGroup"/>
<xs:attribute name="ArriveByFlight" type="xs:boolean" use="optional" default="false">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates if this rate is only available to those customers who are flying to the vehicle rental location.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="RateAuthorizationCode" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The rate authorization code for this rate.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="VendorRateID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en"> The identifier assigned to this rate by the vendor.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="RecipientInfosType">
<xs:annotation>
<xs:documentation xml:lang="en">Information about one or more recipients.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="RecipientInfo" maxOccurs="99">
<xs:annotation>
<xs:documentation xml:lang="en">Contact and/or reservation information pertaining to the recipient.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ContactPersonType">
<xs:sequence>
<xs:element name="ReservationID" type="UniqueID_Type" minOccurs="0" maxOccurs="2">
<xs:annotation>
<xs:documentation xml:lang="en">Provides the reservation number of the recipient for delivery of the product.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ShippingInfo" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Informtion pertaining to the shipment of a product to the recipient.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="ShippingType" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The method of shipment (e.g., air, ground, pickup).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ShippingCarrier" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The shipping carrier (e.g., USPS, UPS, FedEx).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="CurrencyAmountGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The charges associated with shipment of the item.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
</xs:element>
<xs:element name="Comments" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of comments.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Comment" type="ParagraphType" maxOccurs="99">
<xs:annotation>
<xs:documentation xml:lang="en">Comment information pertaining to the purchase. This may be used to pass a message to be printed on a note card.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ReferencePlaceHolderType">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide a reference to an object that is stored elsewhere in a collection of the same objects.</xs:documentation>
</xs:annotation>
<xs:attribute name="RPH" type="RPH_Type"/>
</xs:complexType>
<xs:complexType name="RelatedTravelerType">
<xs:annotation>
<xs:documentation xml:lang="en">Other traveler profiles associated with an specific individual.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="UniqueID" type="UniqueID_Type" minOccurs="0"/>
<xs:element name="PersonName" type="PersonNameType" minOccurs="0"/>
</xs:sequence>
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attribute name="Relation" type="StringLength1to32">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the type of relationship with the person in the profile, such as Spouse, Child, Family, Business Associate, Interest Group, Medical, Security, Other, etc.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="RelativePositionType">
<xs:annotation>
<xs:documentation xml:lang="en">The RelativePosition object contains information about the direction, distance and travel time to/from a facility (hotel, car rental location, or airport) or to/from a designated location.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="TransportationsType">
<xs:attributeGroup ref="RelativePositionGroup"/>
<xs:attribute name="Nearest" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The indicator for whether this location is nearest. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IndexPointCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is the object referred to by the relative position (e.g. cross street, airport). Refer to OTA Code List Index Point Code (IPC).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Name" type="StringLength0to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is used to accommodate a city name, rail station name etc. when using the indexPoint attribute.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PrimaryIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates whether the reference point is considered the main reference point for the specific type of IndexPointCode (e.g., in Dallas, where IndexPointCode=airport Dallas/Fort Worth airport would be the primary airport even if another airport such as Love Field is closer).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ToFrom" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate whether the context is to a facility or from a facility.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="ToFacility">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the direction is to the facility based on use (e.g., hotel, car rental location, airport).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="FromFacility">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the direction is from the facility based on use (e.g., hotel, car rental location, airport).</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="ApproximateDistanceInd" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, the distance information is approximate.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="RestaurantType">
<xs:annotation>
<xs:documentation xml:lang="en">Information associated with a specific restaurant.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="MultimediaDescriptions" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Multimedia information about the restaurant.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="MultimediaDescriptionsType">
<xs:attribute name="Attire" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to pass restaurant attire information.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="RelativePosition" type="RelativePositionType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the directions to a specific restaurant.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OperationSchedules" type="OperationSchedulesPlusChargeType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of operating times for the restaurant including detail such as season, day of week, or a combination.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="InfoCodes" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of types of restaurant.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="InfoCode" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the generic type of restaurant such as fast food, cafe, fine dining, etc.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="Name" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This name refers to an OTA Code List table (e.g. RestaurantCategoryCode/InfoCode). The actual code is passed in the Code attribute.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="StringLength1to32">
<xs:enumeration value="SrvcInfo">
<xs:annotation>
<xs:documentation xml:lang="en">Refer to OTA Code List Restaurant Srvc Info (RSI).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Beverage">
<xs:annotation>
<xs:documentation xml:lang="en">This uses OTA Code Table Beverage Code.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="AvailableMealCategory">
<xs:annotation>
<xs:documentation xml:lang="en">This uses OTA Code Table Available Meal Category Codes.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="RestaurantCategory">
<xs:annotation>
<xs:documentation xml:lang="en">This uses OTA Code Table RestaurantCategoryCode.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="RestaurantPolicy">
<xs:annotation>
<xs:documentation xml:lang="en">This uses OTA Code Table Restaurant Policy Code.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="Code" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Refer to OTA Code List Restaurant Category (RES).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="CodeInfoGroup">
<xs:annotation>
<xs:documentation xml:lang="en">May be used to give further detail on the code or to remove an obsolete item.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CuisineCodes" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of cuisine types of restaurant.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="CuisineCode" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">The code for the type of cuisine served at the restaurant.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="Code" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Refer to OTA Code List Main Cuisine Code (CUI).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="CodeInfoGroup">
<xs:annotation>
<xs:documentation xml:lang="en">May be used to give further detail on the code or to remove an obsolete item.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="IsMain" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates whether this cuisine code is the main cuisine offered by restaurant.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExistsCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This attribute is used to explicitly define whether the Code applies. Refer to OTA Code list Option Type Code (OTC). This is used in conjunction with Code.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DescriptiveText" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Descriptive text that describes the restaurant.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[A-Za-z0-9]{1,500}"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
<xs:attribute name="RestaurantName" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The name of the restaurant at the facility. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MaxSeatingCapacity" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The total seating capacity for this restaurant. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MaxSingleParty" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The maximum number of people that can be seated as a single party in this restaurant. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="InvCode" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identification code of the restaurant service or facility for inventory and booking purposes if the service is an inventoriable item.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="OfferBreakfast" type="xs:boolean" use="optional"/>
<xs:attribute name="OfferLunch" type="xs:boolean" use="optional"/>
<xs:attribute name="OfferDinner" type="xs:boolean" use="optional"/>
<xs:attribute name="OfferBrunch" type="xs:boolean" use="optional"/>
<xs:attribute name="ProximityCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Denotes whether a service is onsite, offsite or information is not available. Refer to OTA Code Table Proximity (PRX).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="ID_OptionalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">This may be used to uniquely identify the restaurant.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="Sort" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Used to define the display order.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="SourceType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides information on the source of a request.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="RequestorID" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">An identifier of the entity making the request (e.g. ATA/IATA/ID number, Electronic Reservation Service Provider (ERSP), Association of British Travel Agents (ABTA)). </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="UniqueID_Type">
<xs:attribute name="MessagePassword" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This password provides an additional level of security that the recipient can use to validate the sending party's authority to use the message.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="Position" minOccurs="0">
<xs:complexType>
<xs:attributeGroup ref="PositionGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="BookingChannel" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the booking channel type and whether it is the primary means of connectivity of the source.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="CompanyName" type="CompanyNameType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the company that is associated with the booking channel.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="BookingChannelGroup"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="AgentSine" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the party within the requesting entity.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PseudoCityCode" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An identification code assigned to an office/agency by a reservation system.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ISOCountry" type="ISO3166" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The country code of the requesting party.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ISOCurrency" type="AlphaLength3" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The currency code in which the reservation will be ticketed.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AgentDutyCode" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">An authority code assigned to a requestor.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AirlineVendorID" type="UpperCaseAlphaNumericLength2to3" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The IATA assigned airline code.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AirportCode" type="UpperCaseAlphaNumericLength3to5" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The IATA assigned airport code.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="FirstDepartPoint" type="StringLength3" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The point of first departure in a trip.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ERSP_UserID" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Electronic Reservation Service Provider (ERSP) assigned identifier used to identify the individual using the ERSP system.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="TerminalID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This is the electronic address of the device from which information is entered.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="SpecialRequestType">
<xs:annotation>
<xs:documentation xml:lang="en">SpecialRequests : SpecialRequest
A collection of SpecialRequest objects. The collection of all special requests associated with any part of the reservation (the reservation in its entirety, one or more guests, or one or more room stays). Which special requests belong to which part is determined by each object's SpecialRequestRPHs collection.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="SpecialRequest" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">The SpecialRequest object indicates special requests for a particular guest, service or reservation. Each of these may be independent of any that are tied to the profile (see Profile Synchronization standard).</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ParagraphType">
<xs:attribute name="RequestCode" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This identifies a special request for this reservation and is typically hotel-specific.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CodeContext" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the source authority for the RequestCode. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="NumberOfUnits" type="Numeric1to999" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Allows you to pass the number of units that the special request is for (e.g., if 4 rooms are booked you may want 3 with double/double beds and 1 with a king). </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="StateProvType">
<xs:annotation>
<xs:documentation xml:lang="en">State, province, or region name or code needed to identify location.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="StringLength0to64">
<xs:attribute name="StateCode" type="StateProvCodeType">
<xs:annotation>
<xs:documentation xml:lang="en">The standard code or abbreviation for the state, province, or region.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="StreetNmbrType">
<xs:annotation>
<xs:documentation xml:lang="en">Street name; number on street.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="StringLength0to64">
<xs:attribute name="PO_Box" type="StringLength1to16">
<xs:annotation>
<xs:documentation xml:lang="en">Defines a Post Office Box number.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="SuccessType">
<xs:annotation>
<xs:documentation xml:lang="en">Standard way to indicate successful processing of an OTA message. Returning an empty element of this type indicates success.</xs:documentation>
</xs:annotation>
</xs:complexType>
<xs:complexType name="TPA_ExtensionsType">
<xs:annotation>
<xs:documentation xml:lang="en">Allows extensions
to be added to the OTA specification per trading partner agreement.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TaxType">
<xs:annotation>
<xs:documentation xml:lang="en">Applicable tax element. This element allows for both percentages and flat amounts. If one field is used, the other should be zero since logically, taxes should be calculated in only one of the two ways.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="TaxDescription" type="ParagraphType" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Text description of the taxes in a given language.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="FeeTaxGroup"/>
<xs:attributeGroup ref="EffectiveExpireOptionalDateGroup"/>
<xs:attributeGroup ref="ChargeUnitGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies charge information by unit (e.g., room, person, item) and frequency (e.g., daily, weekly, stay).</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
<xs:complexType name="TaxesType">
<xs:annotation>
<xs:documentation xml:lang="en">A collection of taxes.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Tax" type="TaxType" minOccurs="0" maxOccurs="99">
<xs:annotation>
<xs:documentation xml:lang="en">An individual tax.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="CurrencyAmountGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Used to provide a total of all the taxes.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
<xs:complexType name="TextDescriptionType">
<xs:annotation>
<xs:documentation xml:lang="en">Describes a text item.</xs:documentation>
</xs:annotation>
<xs:choice>
<xs:element name="URL" type="xs:anyURI" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">The URL for a specific text item.. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Description" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">The text in a specific language. </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="FormattedTextTextType">
<xs:attribute name="ListItem" type="xs:integer" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:choice>
<xs:attribute name="Category" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the text category. Refer to OTA code list Picture Category Code (PIC). </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="MultimediaDescriptionGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Generic information about the text multimedia item.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="Language" type="xs:language" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The language of the text item.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="TextItemsType">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of text items. </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="TextItem" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">Text description of a given category.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="TextDescriptionType">
<xs:attributeGroup ref="DateTimeStampGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Creation and modification information for this text item.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup ref="RemovalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">If true, this item is obsolete and should be removed from the receiving system.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="Version" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The version of the text item.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TimeDurationType">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify a time period, which may additionally include a minimum and/or maximum duration. </xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:duration">
<xs:attribute name="Minimum" type="xs:duration" use="optional"/>
<xs:attribute name="Maximum" type="xs:duration" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="TimeInstantType">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies a time window.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="DateOrDateTimeType">
<xs:attribute name="WindowBefore" type="xs:duration" use="optional"/>
<xs:attribute name="WindowAfter" type="xs:duration" use="optional"/>
<xs:attribute name="CrossDateAllowedIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true the requested period may extend over the previous or following day. When false, the search period is restricted to the date specified. Normally used when the window duration is in hours.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="TotalType">
<xs:annotation>
<xs:documentation xml:lang="en">The total amount charged for the service including additional amounts and fees.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Taxes" type="TaxesType" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="AmountBeforeTax" type="Money" use="optional"/>
<xs:attribute name="AmountAfterTax" type="Money" use="optional"/>
<xs:attributeGroup ref="CurrencyCodeGroup"/>
<xs:attribute name="AdditionalFeesExcludedIndicator" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true, amounts do not contain additional fees or charges. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="TransportationsType">
<xs:annotation>
<xs:documentation xml:lang="en">Used to define the types of transportation offered.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Transportations" type="TransportationType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of directions to/from a specific location via various modes of transportation</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TransportationType">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the type of transportation offered.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Transportation" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">Contains the directions to/from a specific location for a mode of travel.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="MultimediaDescriptions" type="MultimediaDescriptionsType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Multimedia information about the transportation.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OperationSchedules" type="OperationSchedulesType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of operation schedules for the transportation.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DescriptiveText" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Descriptive text that describes the transportation.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[A-Za-z0-9]{1,500}"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
<xs:attribute name="NotificationRequired" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This would be used for information such as a shuttle needs to be requested or a reservation is required.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="TransportationCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The mode of transportation. Refer to OTA Code List Transportation Code (TRP).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ChargeUnit" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Refer to OTA Codelist Charge Type (CHG).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Included" type="xs:boolean" use="optional"/>
<xs:attributeGroup ref="CodeInfoGroup">
<xs:annotation>
<xs:documentation xml:lang="en">May be used to give further detail on the code (e.g. if a trolley is chosen, the trolley name could be added here) or to remove an obsolete item. </xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="Description" type="StringLength0to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Descriptive information about the mode of transportation.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="TypicalTravelTime" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The normal (average) travel time required to get to or from the location, measured in minutes. </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="CurrencyAmountGroup"/>
<xs:attribute name="ExistsCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This attribute is used to explicitly define whether the type of transportation applies. Refer to OTA Code list Option Type Code (OTC). This is used in conjunction with TransportationCode.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="ID_OptionalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">A unique identifying value assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TravelDateTimeType">
<xs:annotation>
<xs:documentation xml:lang="en">Date and time of trip, that allows specifying a time window before and after the given date.</xs:documentation>
</xs:annotation>
<xs:choice>
<xs:element name="DepartureDateTime" type="TimeInstantType"/>
<xs:element name="ArrivalDateTime" type="TimeInstantType"/>
</xs:choice>
</xs:complexType>
<xs:complexType name="TravelerRPHs">
<xs:annotation>
<xs:documentation xml:lang="en">A container to relate individual travelers to an inventory or chargeable item.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="TravelerRPH" maxOccurs="99">
<xs:complexType>
<xs:attribute name="RPH" type="RPH_Type" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="URL_Type">
<xs:annotation>
<xs:documentation xml:lang="en">Web site address, in IETF specified format.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attributeGroup ref="PrivacyGroup"/>
<xs:attribute name="Type" type="StringLength1to16" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Defines the purpose of the URL address, such as personal, business, public, etc.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="DefaultIndGroup"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="UniqueID_Type">
<xs:annotation>
<xs:documentation xml:lang="en">An identifier used to uniquely reference an object in a system (e.g. an airline reservation reference, customer profile reference, booking confirmation number, or a reference to a previous availability quote). </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="CompanyName" type="CompanyNameType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the company that is associated with the UniqueID.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="UniqueID_Group"/>
</xs:complexType>
<xs:complexType name="VendorMessageType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides formatted textual information that a vendor wishes to make known. The type of information is indicated</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="FormattedTextType">
<xs:attribute name="InfoType" type="OTA_CodeType" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">To define the type of information such as Description, Policy, Marketing, etc. Refer to OTA Code List Information Type (INF).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="VendorMessagesType">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of vendor messages.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="VendorMessage" type="VendorMessageType" maxOccurs="99">
<xs:annotation>
<xs:documentation xml:lang="en">A specific message associated with this vendor</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="VerificationType">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of data used to ensure the correct reservation is canceled or modified (e.g. in the case of a hotel reservation modification, a CustLoyalty/ MembershipID would be verified as part of the reservation that you plan to modify to ensure the correct reservation is being modified).</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="PersonName" minOccurs="0">
<xs:complexType>
<xs:complexContent>
<xs:extension base="PersonNameType">
<xs:attribute name="PartialName" type="xs:boolean" use="optional"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="Email" type="EmailType" minOccurs="0"/>
<xs:element name="TelephoneInfo" minOccurs="0">
<xs:complexType>
<xs:attributeGroup ref="TelephoneInfoGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="PaymentCard" type="PaymentCardType" minOccurs="0"/>
<xs:element name="AddressInfo" type="AddressInfoType" minOccurs="0"/>
<xs:element name="CustLoyalty" minOccurs="0" maxOccurs="5">
<xs:complexType>
<xs:attributeGroup ref="CustomerLoyaltyGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="Vendor" type="CompanyNameType" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Vendor or Vendors associated with the Reservation</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ReservationTimeSpan" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">The start and end day of the reservation.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="DateTimeSpanGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="AssociatedQuantity" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation xml:lang="en">Quantity or Quantities that are associated with the reservation (e.g. number of seats, number of rooms, number of people, etc.).</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="CodeListGroup"/>
</xs:complexType>
</xs:element>
<xs:element name="StartLocation" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Location or Locations associated with the reservation.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="LocationType">
<xs:attribute name="AssociatedDateTime" type="xs:dateTime" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="EndLocation" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Location or Locations associated with the reservation.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="LocationType">
<xs:attribute name="AssociatedDateTime" type="xs:dateTime" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element ref="TPA_Extensions" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="VideoDescriptionType">
<xs:annotation>
<xs:documentation xml:lang="en">Describes a video item.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="VideoFormat" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">A set of video of a given category can be provided in different Format , each format will be described in this element </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="VideoItemType">
<xs:attributeGroup ref="MultimediaDescriptionGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Multimedia information for the video file.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup ref="ID_OptionalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">A unique identifying value assigned by the creating system. The ID attribute may be used to reference a primary-key value within a database or in a particular implementation.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="Category" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the video category. Refer to OTA code list Picture Category Code (PIC). </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="VideoItemsType">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of video items.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="VideoItem" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">Each video item represents a specific category.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="VideoDescriptionType">
<xs:attribute name="Language" type="xs:language" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The language associated with the caption for the video.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Caption" type="StringLength1to128" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The caption associated to a specific video category which can be provided in different languages.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="RemovalGroup">
<xs:annotation>
<xs:documentation xml:lang="en">If true, this item is obsolete and should be removed from the receiving system.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="Version" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The version of the video item.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="DateTimeStampGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Creation and modification information for this video item.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="VideoItemType">
<xs:annotation>
<xs:documentation xml:lang="en">Details for a video of a given category. </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="URL" type="xs:anyURI" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">URL of the multimedia item for a specific format. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="UnitOfMeasureCode" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The unit of measure associated with all the dimensions of the multimedia item. Refer to OTA code list Unit of Measure (UOM).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Width" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The width of the video item (unit specified by unit of measure).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Height" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The height of the video item (unit specified by unit of measure).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="BitRate" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The bit rate of the video item.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Length" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The length of the video item (unit specified by unit of measure).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="MultimediaItemGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Multimedia information for the video item.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
<xs:complexType name="WarningType">
<xs:annotation>
<xs:documentation xml:lang="en">Standard way to indicate successful processing of an OTA message, but one in which warnings are generated</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="FreeTextType">
<xs:attribute name="Type" type="OTA_CodeType" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">The Warning element MUST contain the Type attribute that uses a recommended set of values to indicate the warning type. The validating XSD can expect to accept values that it has NOT been explicitly coded for and process them by using Type ="Unknown". Refer to OTA Code List Error Warning Type (EWT).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="ErrorWarningAttributeGroup"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="WarningsType">
<xs:annotation>
<xs:documentation xml:lang="en">Collection of warnings.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Warning" type="WarningType" maxOccurs="99"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="WrittenConfInstType">
<xs:annotation>
<xs:documentation xml:lang="en">Method by which confirmations should be delivered.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="SupplementalData" type="ParagraphType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Additional data that will be sent with the confirmation. This could be used to include a map, pictures, or any other information that the reservation source wishes to include with the confirmation</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Email" type="EmailType" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="LanguageID" type="xs:string" use="optional"/>
<xs:attribute name="AddresseeName" type="xs:string" use="optional"/>
<xs:attribute name="Address" type="xs:string" use="optional"/>
<xs:attribute name="Telephone" type="xs:string" use="optional"/>
<xs:attribute name="ConfirmInd" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">When true a written confirmation was requested and will be sent.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:element name="TPA_Extensions" type="TPA_ExtensionsType">
<xs:annotation>
<xs:documentation xml:lang="en">A placeholder in the schema to allow for additional elements and attributes to be included if required, per Trading Partner Agreement (TPA).</xs:documentation>
</xs:annotation>
</xs:element>
</xs:schema>
|