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
|
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="2.004" id="OTA2003A2007A">
<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:simpleType name="ActionType">
<xs:annotation>
<xs:documentation xml:lang="en">Identifes an action to take place.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Add-Update">
<xs:annotation>
<xs:documentation xml:lang="en">
Typically used to add an item where it does not exist or to update an item where it does exist.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Cancel">
<xs:annotation>
<xs:documentation xml:lang="en">
Typically used to cancel an existing item.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Delete">
<xs:annotation>
<xs:documentation xml:lang="en">
Typically used to remove specified data.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Add">
<xs:annotation>
<xs:documentation xml:lang="en">
Typically used to add data whether data already exists or not.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Replace">
<xs:annotation>
<xs:documentation xml:lang="en">
Typically used to overlay existing data.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="AlphaLength1">
<xs:annotation>
<xs:documentation xml:lang="en">Used for an Alpha String, length 1</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[a-zA-Z]{1}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="AlphaLength1to2">
<xs:annotation>
<xs:documentation xml:lang="en">Used for an Alpha String, length 1 to 2</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[a-zA-Z]{1,2}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="AlphaLength3">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Alphabetic Strings, length exactly 3</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[a-zA-Z]{3}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="AlphaLength4">
<xs:annotation>
<xs:documentation xml:lang="en">Used for an Alpha String, length 4</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[a-zA-Z]{4}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="AlphaNumericStringLength1">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Alpha-Numeric Strings, length 1</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9a-zA-Z]{1}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="AlphaNumericStringLength1to8">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Alpha-Numeric Strings, length 1 to 8</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9a-zA-Z]{1,8}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="AlphaNumericStringLength1to14">
<xs:annotation>
<xs:documentation xml:lang="en">Used forAlpha-Numeric Strings, length 1 to 14</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9a-zA-Z]{1,14}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="AlphaNumericStringLength1to19">
<xs:annotation>
<xs:documentation xml:lang="en">Used forAlpha-Numeric Strings, length 1 to 19</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9a-zA-Z]{1,19}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="AmountDeterminationType">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate if an 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:restriction base="xs:string">
<xs:enumeration value="Inclusive"/>
<xs:enumeration value="Exclusive"/>
<xs:enumeration value="Cumulative"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="CabinType">
<xs:annotation>
<xs:documentation xml:lang="en">A cabin is either First, Business or Economy </xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="First">
<xs:annotation>
<xs:documentation xml:lang="en">First class compartment. </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Business">
<xs:annotation>
<xs:documentation xml:lang="en">Business class compartment. </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Economy">
<xs:annotation>
<xs:documentation xml:lang="en">Economy (or sometimes referred to as Coach) class compartment.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="DateOrDateTimeType">
<xs:annotation>
<xs:documentation xml:lang="en">A construct to validate either a date or a dateTime value.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="xs:date xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="DateOrTimeOrDateTimeType">
<xs:annotation>
<xs:documentation xml:lang="en">A construct to validate either a date or a time or a dateTime value.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="xs:date xs:dateTime xs:time"/>
</xs:simpleType>
<xs:simpleType name="DateOrMonthDay">
<xs:annotation>
<xs:documentation xml:lang="en">A construct to validate either a date or a month and day value.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="xs:date xs:gMonthDay"/>
</xs:simpleType>
<xs:simpleType name="DayOfWeekType">
<xs:annotation>
<xs:documentation xml:lang="en">A three letter abbreviation for the days of the week (e.g. may be the starting date for the availability requested, days of operation, rate effective day, etc.).</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Mon"/>
<xs:enumeration value="Tue"/>
<xs:enumeration value="Wed"/>
<xs:enumeration value="Thu"/>
<xs:enumeration value="Fri"/>
<xs:enumeration value="Sat"/>
<xs:enumeration value="Sun"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="DistanceUnitNameType">
<xs:annotation>
<xs:documentation xml:lang="en">This simple type defines a set of valid values for the units in which distance is measured (i.e. mile or kilometer).</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Mile"/>
<xs:enumeration value="Km"/>
<xs:enumeration value="Block"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="DurationType">
<xs:annotation>
<xs:documentation xml:lang="en">Allows for the specification of a night duration.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="xs:duration NightDurationType"/>
</xs:simpleType>
<xs:simpleType name="FlightNumberType">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies a flight number (1 to 4 numbers followed by optional uppercase A - Z, which specifies an operational suffix) or OPEN or ARNK.</xs:documentation>
</xs:annotation>
<xs:union>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{1,4}[A-Z]?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="OPEN">
<xs:annotation>
<xs:documentation xml:lang="en">Used in lieu of a flight number when a specific flight number is unknown but service is present.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ARNK">
<xs:annotation>
<xs:documentation xml:lang="en">Used in lieu of a flight number when surface transportation is used when there is a break in the continuity of the flight itinerary.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="FlightTypeType">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies a particular type of flight - Direct, Stopover etc.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Nonstop">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the flight does not make any scheduled stops between 2 points.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Direct">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the flight makes a scheduled stop(s) between 2 points.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Connection">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the flight will require a change of aircraft at a connecting point(s).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="SingleConnection">
<xs:annotation>
<xs:documentation xml:lang="en">A trip with only one connection.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DoubleConnection">
<xs:annotation>
<xs:documentation xml:lang="en">A trip with only two connections.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="HotelResStatusType">
<xs:annotation>
<xs:documentation xml:lang="en">A union between TransactionActionType and PMS_ResStatusType. Used in messages that communicate between reservation systems as well as between a reservation and property management system. In addition to the TransactionActionType and PMS_ResStatusType, the UpperCaseAlphaLength1to2 may be used for company specifc codes.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="PMS_ResStatusType TransactionActionType UpperCaseAlphaLength1to2"/>
</xs:simpleType>
<xs:simpleType name="IncludeExcludeType">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the applicability of the criteria to which it is related.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Include"/>
<xs:enumeration value="Exclude"/>
<xs:enumeration value="Required">
<xs:annotation>
<xs:documentation xml:lang="en">The associated item is required.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Allowed">
<xs:annotation>
<xs:documentation xml:lang="en">The associated item is allowed.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="InfoSourceType">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify the source of the data being exchanged.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="32"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="InventoryStatusType">
<xs:annotation>
<xs:documentation xml:lang="en">This defines a set of valid status values, allowing the selection of a specific group based on availability, or allowing the reservation status to be made known. Examples of such values include Available, OnRequest, Confirmed, etc. </xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Available"/>
<xs:enumeration value="Unavailable"/>
<xs:enumeration value="OnRequest"/>
<xs:enumeration value="Confirmed"/>
<xs:enumeration value="All"/>
<xs:enumeration value="Waitlist"/>
<xs:enumeration value="SupplierBooked">
<xs:annotation>
<xs:documentation xml:lang="en">The booking has already been made directly through the supplier.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ISO3166">
<xs:annotation>
<xs:documentation xml:lang="en">2 character country code as defined in ISO3166.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[a-zA-Z]{2}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ListOfISO3166">
<xs:annotation>
<xs:documentation xml:lang="en">List of country codes.</xs:documentation>
</xs:annotation>
<xs:list itemType="ISO3166"/>
</xs:simpleType>
<xs:simpleType name="ListOfOTA_CodeType">
<xs:annotation>
<xs:documentation xml:lang="en">List of OTA codes.</xs:documentation>
</xs:annotation>
<xs:list itemType="OTA_CodeType"/>
</xs:simpleType>
<xs:simpleType name="ListOfRPH">
<xs:annotation>
<xs:documentation xml:lang="en">List of Reference Place Holders.</xs:documentation>
</xs:annotation>
<xs:list itemType="RPH_Type"/>
</xs:simpleType>
<xs:simpleType name="ListOfStringLength1to8">
<xs:annotation>
<xs:documentation xml:lang="en">List of StringLength1to8.</xs:documentation>
</xs:annotation>
<xs:list itemType="StringLength1to8"/>
</xs:simpleType>
<xs:simpleType name="MMYYDate">
<xs:annotation>
<xs:documentation xml:lang="en">Month and year information.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="(0[1-9]|1[0-2])[0-9][0-9]"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MealType">
<xs:annotation>
<xs:documentation xml:lang="en">Airline meal types.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="AVML">
<xs:annotation>
<xs:documentation xml:lang="en">AVML - Asian Veg</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="BBML">
<xs:annotation>
<xs:documentation xml:lang="en">BBML - Baby/Infant Food</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="BLML">
<xs:annotation>
<xs:documentation xml:lang="en">BLML - Bland Meal</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CHML">
<xs:annotation>
<xs:documentation xml:lang="en">CHML - Child Meal</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DBML">
<xs:annotation>
<xs:documentation xml:lang="en">DBML - Diabetic</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="FPML">
<xs:annotation>
<xs:documentation xml:lang="en">FPML - Fruit Meal</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="GFML">
<xs:annotation>
<xs:documentation xml:lang="en">GFML - Gluten Free</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="HFML">
<xs:annotation>
<xs:documentation xml:lang="en">HFML - High Fiber</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="HNML">
<xs:annotation>
<xs:documentation xml:lang="en">HNML - Hindu Meal</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="KSML">
<xs:annotation>
<xs:documentation xml:lang="en">KSML - Kosher</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="LCML">
<xs:annotation>
<xs:documentation xml:lang="en">LCML - Low Calorie</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="LFML">
<xs:annotation>
<xs:documentation xml:lang="en">LFML - Low Cholesterol</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="LPML">
<xs:annotation>
<xs:documentation xml:lang="en">LPML - Low Protein</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="LSML">
<xs:annotation>
<xs:documentation xml:lang="en">LSML - Low Sodium/No Salt</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="MOML">
<xs:annotation>
<xs:documentation xml:lang="en">MOML - Moslem</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="NLML">
<xs:annotation>
<xs:documentation xml:lang="en">NLML - Non-Lactose</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ORML">
<xs:annotation>
<xs:documentation xml:lang="en">ORML - Oriental</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="PRML">
<xs:annotation>
<xs:documentation xml:lang="en">PRML - Low Purin</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="RVML">
<xs:annotation>
<xs:documentation xml:lang="en">RVML - Raw Vegetarian</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="SFML">
<xs:annotation>
<xs:documentation xml:lang="en">SFML - Seafood</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="SPML">
<xs:annotation>
<xs:documentation xml:lang="en">SPML - Special/Specify</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="VGML">
<xs:annotation>
<xs:documentation xml:lang="en">VGML - Vegetarian/Non Dairy</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="VLML">
<xs:annotation>
<xs:documentation xml:lang="en">VLML - Vegetarian/Milk/Eggs</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="RGML">
<xs:annotation>
<xs:documentation xml:lang="en">Designates a regular meal.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Money">
<xs:annotation>
<xs:documentation xml:lang="en">Used for amounts, max 3 decimals</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:decimal">
<xs:fractionDigits value="3"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MoneyOrPercentageType">
<xs:annotation>
<xs:documentation xml:lang="en">A union of money and percentage so that the appropriate data can be sent in a single field.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="Money Percentage"/>
</xs:simpleType>
<xs:simpleType name="NightDurationType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides the ability to define a duration in terms of nights rather than days.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="P[0-9]{1,3}N"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Numeric0to4">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric values, from 0 to 4 inclusive</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Numeric0to99">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric values, from 0 to 99 inclusive</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="99"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Numeric0to999">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric values, from 0 to 999 inclusive</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="999"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Numeric0to9999">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric values, from 0 to 9999 inclusive.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="9999"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Numeric1to3">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric values, from 1 to 3 inclusive</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="3"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Numeric1to4">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric values, from 1 to 4 inclusive</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Numeric1to99">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric values, from 1 to 99 inclusive</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="99"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Numeric1to999">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric values, from 1 to 999 inclusive.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="999"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Numeric1to9999">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric values, from 1 to 9999 inclusive.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="9999"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="NumericStringLength1to16">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric Strings, length 1 to 16.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{1,16}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="NumericStringLength1to19">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric Strings, length 1 to 19.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{1,19}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="NumericStringLength4">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric Strings, length 4.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{4}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="NumericStringLength1to3">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric Strings, minimum length 1, maximum length 3.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{1,3}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="NumericStringLength1to5">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric Strings, length 1 to 5</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{1,5}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="NumericStringLength1to8">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Numeric Strings, length 1 to 8.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{1,8}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="OTA_CodeType">
<xs:annotation>
<xs:documentation xml:lang="en">Used for codes in the OTA code tables. Possible values of this pattern are 1, 101, 101.EQP, or 101.EQP.X.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9A-Z]{1,3}(\.[A-Z]{3}(\.X){0,1}){0,1}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="OfficeLocationType">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates main office, field office, or division of the organization.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Main"/>
<xs:enumeration value="Field"/>
<xs:enumeration value="Division"/>
<xs:enumeration value="Regional"/>
<xs:enumeration value="Remote"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="PaymentCardCodeType">
<xs:annotation>
<xs:documentation xml:lang="en">The 2 digit code used that references the credit card used.</xs:documentation>
</xs:annotation>
<xs:union>
<xs:simpleType>
<xs:restriction base="UpperCaseAlphaLength1to2">
<xs:enumeration value="AX">
<xs:annotation>
<xs:documentation xml:lang="en">
American Express
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="BC">
<xs:annotation>
<xs:documentation xml:lang="en">
Bank Card
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="BL">
<xs:annotation>
<xs:documentation xml:lang="en">
Carte Bleu
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CB">
<xs:annotation>
<xs:documentation xml:lang="en">
Carte Blanche
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DN">
<xs:annotation>
<xs:documentation xml:lang="en">
Diners Club
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DS">
<xs:annotation>
<xs:documentation xml:lang="en">
Discover Card
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="EC">
<xs:annotation>
<xs:documentation xml:lang="en">
Eurocard
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="JC">
<xs:annotation>
<xs:documentation xml:lang="en">
Japanese Credit Bureau Credit Card
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="MC">
<xs:annotation>
<xs:documentation xml:lang="en">
Master Card
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="TP">
<xs:annotation>
<xs:documentation xml:lang="en">
Universal Air Travel Card
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="VI">
<xs:annotation>
<xs:documentation xml:lang="en">
Visa
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:annotation>
<xs:documentation xml:lang="en">This is intended to be used when the above enumeration list does not meet your needs. </xs:documentation>
</xs:annotation>
<xs:restriction base="UpperCaseAlphaLength1to2"/>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:simpleType name="Percentage">
<xs:annotation>
<xs:documentation xml:lang="en">Used for percentage values</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:decimal">
<xs:minInclusive value="0.01"/>
<xs:maxInclusive value="100.00"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="PreferLevelType">
<xs:annotation>
<xs:documentation xml:lang="en">Used to specify a preference level for something that is or will be requested (e.g. a supplier of a service, a type of service, a form of payment, etc.).
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Only">
<xs:annotation>
<xs:documentation xml:lang="en">Preference level that indicates request is only for a specific criterion.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unacceptable">
<xs:annotation>
<xs:documentation xml:lang="en">Preference level that indicates request is unnacceptable for a specific criterion.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Preferred">
<xs:annotation>
<xs:documentation xml:lang="en">Preference level that indicates request is preferred for a specific criterion.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Required">
<xs:annotation>
<xs:documentation xml:lang="en">Preference level that indicates request is required for a specific criterion.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="NoPreference">
<xs:annotation>
<xs:documentation xml:lang="en">Preference level that indicates there is no preference.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="PricingType">
<xs:annotation>
<xs:documentation xml:lang="en">An enumerated type that defines how a service is priced. Values: Per stay, Per person, Per night, Per person per night, Per use. </xs:documentation>
</xs:annotation>
<xs:restriction base="StringLength1to32">
<xs:enumeration value="Per stay"/>
<xs:enumeration value="Per person"/>
<xs:enumeration value="Per night"/>
<xs:enumeration value="Per person per night"/>
<xs:enumeration value="Per use"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="PMS_ResStatusType">
<xs:annotation>
<xs:documentation xml:lang="en">Statuses that exist in a property management system (PMS).</xs:documentation>
</xs:annotation>
<xs:restriction base="StringLength1to16">
<xs:enumeration value="Reserved"/>
<xs:enumeration value="Requested"/>
<xs:enumeration value="Request denied"/>
<xs:enumeration value="No-show"/>
<xs:enumeration value="Cancelled"/>
<xs:enumeration value="In-house"/>
<xs:enumeration value="Checked out"/>
<xs:enumeration value="Waitlisted"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="RPH_Type">
<xs:annotation>
<xs:documentation xml:lang="en">(Reference Place Holder) - an index code to identify an instance in a collection of like items.. For example, used to assign individual passengers or clients to particular itinerary items.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{1,8}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="RateIndicatorType">
<xs:annotation>
<xs:documentation xml:lang="en">An enumerated type indicating special conditions with the rate Valid values: ChangeDuringStay, MultipleNights, Exclusive, OnRequest, LimitedAvailability.</xs:documentation>
</xs:annotation>
<xs:restriction base="StringLength1to32">
<xs:enumeration value="ChangeDuringStay"/>
<xs:enumeration value="MultipleNights"/>
<xs:enumeration value="Exclusive">
<xs:annotation>
<xs:documentation xml:lang="en">Availability is limited based on guest qualification criteria e.g. AAA member or Government Employee</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="OnRequest"/>
<xs:enumeration value="LimitedAvailability"/>
<xs:enumeration value="AvailableForSale"/>
<xs:enumeration value="ClosedOut"/>
<xs:enumeration value="OtherAvailable"/>
<xs:enumeration value="UnableToProcess">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates an issue that precluded the ability to provide the information.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="NoAvailability"/>
<xs:enumeration value="RoomTypeClosed"/>
<xs:enumeration value="RatePlanClosed"/>
<xs:enumeration value="LOS_Restricted"/>
<xs:enumeration value="Restricted">
<xs:annotation>
<xs:documentation xml:lang="en">Availability is limited based on distribution channel qualification criteria (e.g., Expedia or Sabre).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DoesNotExist">
<xs:annotation>
<xs:documentation xml:lang="en">The rate plan does not exist.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="RatePeriodSimpleType">
<xs:annotation>
<xs:documentation xml:lang="en">The RatePeriodSimpleType simple type defines a set of valid values for the type of rate that may be applied. Typically rates differ based upon the duration, and the actual rate is then expressed in terms of the period of the rental.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Hourly"/>
<xs:enumeration value="Daily"/>
<xs:enumeration value="Weekly"/>
<xs:enumeration value="Monthly"/>
<xs:enumeration value="WeekendDay"/>
<xs:enumeration value="Other"/>
<xs:enumeration value="Package">
<xs:annotation>
<xs:documentation xml:lang="en">The rate period is based on the package.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Bundle">
<xs:annotation>
<xs:documentation xml:lang="en">The rate is the same regardless of the number of days the vehicle is rented</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Total">
<xs:annotation>
<xs:documentation xml:lang="en">The rate is the total, no specific rate period.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SeatDirectionType">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the orientation of a seat relative to the direction of travel.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Facing"/>
<xs:enumeration value="Back"/>
<xs:enumeration value="Airline"/>
<xs:enumeration value="Lateral"/>
<xs:enumeration value="Unknown"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="SeatType">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies the position of a seat, e.g. Window, Aisle etc. </xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Window"/>
<xs:enumeration value="Aisle"/>
<xs:enumeration value="Table"/>
<xs:enumeration value="Middle"/>
<xs:enumeration value="Individual"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ShortDescriptionType">
<xs:annotation>
<xs:documentation xml:lang="en">A textual description.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="0"/>
<xs:maxLength value="64"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StateProvCodeType">
<xs:annotation>
<xs:documentation xml:lang="en">The standard code or abbreviation for the state, province, or region</xs:documentation>
</xs:annotation>
<xs:restriction base="StringLength1to8">
<xs:minLength value="2"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength0to128">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 0 to 128</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="0"/>
<xs:maxLength value="128"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength0to255">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 0 to 255</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="0"/>
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength0to32">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 0 to 32</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="0"/>
<xs:maxLength value="32"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength0to64">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 0 to 64</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="0"/>
<xs:maxLength value="64"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength0to8">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 0 to 8</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="0"/>
<xs:maxLength value="8"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength1to128">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 1 to 128</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="128"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength1to16">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 1 to 16</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="16"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength1to255">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 1 to 255</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength1to32">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 1 to 32</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="32"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength3">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Strings, length exactly 3</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="3"/>
<xs:maxLength value="3"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength1to64">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 1 to 64</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="64"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="StringLength1to8">
<xs:annotation>
<xs:documentation xml:lang="en">Used for Character Strings, length 1 to 8</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="8"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="TicketType">
<xs:annotation>
<xs:documentation xml:lang="en">Specifies the type of ticket document.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="eTicket">
<xs:annotation>
<xs:documentation xml:lang="en">An electronic ticket</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Paper">
<xs:annotation>
<xs:documentation xml:lang="en">A paper ticket</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="MCO">
<xs:annotation>
<xs:documentation xml:lang="en">A miscellaneous charge order</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="TimeOrDateTimeType">
<xs:annotation>
<xs:documentation xml:lang="en">Allows for the specification of a date time or just time.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="xs:dateTime xs:time"/>
</xs:simpleType>
<xs:simpleType name="TimeUnitType">
<xs:annotation>
<xs:documentation xml:lang="en">An enumerated type defining the unit in which the time is expressed.</xs:documentation>
</xs:annotation>
<xs:restriction base="StringLength1to16">
<xs:enumeration value="Year"/>
<xs:enumeration value="Month"/>
<xs:enumeration value="Week"/>
<xs:enumeration value="Day"/>
<xs:enumeration value="Hour"/>
<xs:enumeration value="Second"/>
<xs:enumeration value="FullDuration"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="TransactionActionType">
<xs:annotation>
<xs:documentation xml:lang="en">To specify the type of action requested when more than one function could be handled by the message.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Book"/>
<xs:enumeration value="Quote"/>
<xs:enumeration value="Hold"/>
<xs:enumeration value="Initiate"/>
<xs:enumeration value="Ignore"/>
<xs:enumeration value="Modify"/>
<xs:enumeration value="Commit"/>
<xs:enumeration value="Cancel"/>
<xs:enumeration value="CommitOverrideEdits">
<xs:annotation>
<xs:documentation xml:lang="en">
Commit the transaction and override the end transaction edits.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="TransactionStatusType">
<xs:annotation>
<xs:documentation xml:lang="en">To specify a status to the transaction, usually in the response message, of the action specifed in the request message.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Pending"/>
<xs:enumeration value="Cancelled"/>
<xs:enumeration value="Modified"/>
<xs:enumeration value="Committed"/>
<xs:enumeration value="Ignored"/>
<xs:enumeration value="On Hold"/>
<xs:enumeration value="Unsuccessful"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="USTimeZoneType">
<xs:annotation>
<xs:documentation xml:lang="en">Identifies a time zone within the United States</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="P"/>
<xs:enumeration value="M"/>
<xs:enumeration value="C"/>
<xs:enumeration value="E"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="UpperCaseAlphaLength1to2">
<xs:annotation>
<xs:documentation xml:lang="en">Used for an Alpha String, length 2 (for letter codes)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[A-Z]{1,2}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="UpperCaseAlphaLength1to3">
<xs:annotation>
<xs:documentation xml:lang="en">Used for an Alpha String, length 3 (for letter codes)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[A-Z]{1,3}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="UpperCaseAlphaNumericLength2to3">
<xs:annotation>
<xs:documentation xml:lang="en">Used for an Upper Alpha String and Numeric, length 2 to 3.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[A-Z0-9]{2,3}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="UpperCaseAlphaNumericLength3to5">
<xs:annotation>
<xs:documentation xml:lang="en">Used for an Upper Alpha String and Numeric, length 3 to 5.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[A-Z0-9]{3,5}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="YearOrYearMonthType">
<xs:annotation>
<xs:documentation xml:lang="en">A construct to validate either a year or a year and month value.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="xs:gYear xs:gYearMonth"/>
</xs:simpleType>
<xs:simpleType name="YesNoType">
<xs:annotation>
<xs:documentation xml:lang="en">Used to indicate a positive or negative choice. Not recommended for use, use xs:boolean.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Yes"/>
<xs:enumeration value="No"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
|