forked from jeevanpingali/ndc-xsd-162
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edist_structures.xsd
3347 lines (3265 loc) · 145 KB
/
edist_structures.xsd
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2014 rel. 2 sp1 (x64) (http://www.altova.com) by JRT (JR Technologies, Inc.) -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" version="3.001" id="IATA2016.2">
<xsd:annotation>
<xsd:documentation xml:lang="en">EDIST XML Specification Base Structures. Includes base types for EDIST XML data objects, utility xml objects and core simple type definitions.</xsd:documentation>
</xsd:annotation>
<!--xsd:include schemaLocation="edist_commontypes.xsd"/-->
<!--
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
S T R U C T U R E D P A Y L O A D S T A N D A R D T Y P E D E F I N I T I O N S
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////-->
<!--
======================================================
=== A C T O R O B J E C T BA S E T Y P E
======================================================-->
<xsd:attributeGroup name="ActorObjAttrGroup">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Actor object instance id and association(s).</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="metadata" type="MultiAssocSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Association between this object and metadata instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="refs" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object association(s) between this actor object and any object instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:complexType name="ActorObjectType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A data type for NDC Actor Object Base Type.</xsd:documentation>
</xsd:annotation>
<xsd:attributeGroup ref="ActorObjAttrGroup"/>
</xsd:complexType>
<xsd:simpleType name="InstanceClassSimpleType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A data type definition for Globally Unique XML Instance or Other Class ID size constraint.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:ID"/>
</xsd:simpleType>
<!--
======================================================
BASE TYPES
======================================================-->
<xsd:complexType name="CoreBaseType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A base type definition for Core Entity Object.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="AugPointAssocs" type="AugPointAssocType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Object Augmentation Point(s).</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="Key" type="InstanceClassSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Globally Unique Object instance/ class Key.
Example: 2B75C565-5BB0- 4DCE-8DE6-67CB7B4F25A7</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Owner" type="OwnerSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Source Entity Code or ID. Examples: BA, WIDGETCO</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Seq" type="xsd:integer" use="optional">
<xsd:annotation>
<xsd:documentation>Sequence ID. Example: 1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="ListBaseType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A base type definition for Data List Object.</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="ListToken" type="DescriptionSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Unique List Token.
Example: jZhJu7SORZeO MNpifElIkA
Note: This token pertains to all specified List instances, e.g. the list collection.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Owner" type="OwnerSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Source Entity Code or ID. Examples: BA, WIDGETCO</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Seq" type="xsd:integer" use="optional">
<xsd:annotation>
<xsd:documentation>Sequence ID. Example: 1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="MetaBaseType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A base type definition for Metadata Object.</xsd:documentation>
</xsd:annotation>
</xsd:complexType>
<xsd:simpleType name="OwnerSimpleType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A data type definition for Airline Carrier or Entity Owner.</xsd:documentation>
</xsd:annotation>
<xsd:union memberTypes="AirlineDesigSimpleType OwnerTextSimpleType"/>
</xsd:simpleType>
<xsd:simpleType name="OwnerTextSimpleType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A data type definition for Owner Entity size constraint.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="35"/>
</xsd:restriction>
</xsd:simpleType>
<!--
======================================================
=== A S S O C I A T E D O B J E C T S
======================================================-->
<xsd:complexType name="AssociatedObjectBaseType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A base type for an Object with Instance Associations.</xsd:documentation>
</xsd:annotation>
<xsd:attributeGroup ref="ObjAssociationAttrGroup"/>
<xsd:attribute name="ApproxInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, this fee is approximate.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="RefundAllInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, all fee amounts are refundable.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ExemptAllInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, price is exempt from all taxes.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="AllGuaranteeInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, ALL associated inventory has been guaranteed for this and the guarantee information specified in the InventoryGuarantee node.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="DisclosureInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, one or more associated Offer Item(s) are subject to regulatory disclosure.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="BrowserInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, the attachment can be displayed in a browser.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:attributeGroup name="ObjAssociationAttrGroup">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Policy and other object association.
</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="refs" type="MultiAssocSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object association(s) between this object and any other object or metadata instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:simpleType name="TokenID_SimpleType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A data type definition for Reference Association Token type and size constraint.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
<xsd:whiteSpace value="preserve"/>
</xsd:restriction>
</xsd:simpleType>
<!--
===================================================================================
AUGMENTATION STRUCTURES
===================================================================================-->
<xsd:element name="AugmentationPoint" type="AugPointInfoType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Augmentation Point.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="AugmentationType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">AUGMENTATION BASE TYPE definition.</xsd:documentation>
<xsd:documentation source="capabilty" xml:lang="en">NDC Capability Model: AUGMENTATION POINT
============
Feature(s)
============
• Within an NDC message document, there may be additional data that needs to be exchanged that is not defined in the NDC Digest as it is unique to an NDC implementer and their trading partners. For example, there are data elements within the NDC message payload that may subject to corporate data collection, management and dissemination policy(s), such as PCI.
• Augmentation is the mechanism prescribed by NDC to create a new implementer-derived type, via the extension of an existing NDC Augmentation type—by adding a block of elements bundled together in another type called an "augmentation type." Augmentation objects explicitly show that data is just attached to an object without making a special version of that object. The end result is more like an object with bags of elements rather than a special type of object.
• Augmentation Point objects are substitution groups with two member elements:
1) A pre-defined (default) representation provided by NDC; and,
2) An AugmentationPoint element that may be substituted with a custom implementer type.
• Within in augmentation point, the processContents attribute is set to "lax", meaning that XML processors will attempt to obtain the schema for the required namespaces and validate any element from those namespaces; however, if the schema cannot be obtained, no errors will occur.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Augmentations" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Augmentation(s).
Notes: The processContents attribute is set to "lax", meaning that XML processors will attempt to obtain the schema for the required namespaces and validate any element from those namespaces; however, if the schema cannot be obtained, no errors will occur.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any namespace="" processContents="lax">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Augmented Metadata.</xsd:documentation>
</xsd:annotation>
</xsd:any>
</xsd:sequence>
<xsd:attributeGroup ref="ObjAssociationAttrGroup"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="AugPointType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A data type definition for Augmentation Point.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:any namespace="##other" processContents="lax">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Implementer-Augmented Structure.</xsd:documentation>
</xsd:annotation>
</xsd:any>
</xsd:sequence>
<xsd:attribute name="Key" type="InstanceClassSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Globally Unique Object instance/ class Key.
Example: 2B75C565-5BB0- 4DCE-8DE6-67CB7B4F25A7</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Owner" type="OwnerSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Source Entity Code or ID. Examples: BA, WIDGETCO</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Seq" type="xsd:integer" use="optional">
<xsd:annotation>
<xsd:documentation>Sequence ID. Example: 1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="AugPointAssocType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A data type definition for Augmentation Point Association.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="AugPointAssoc" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Augmentation Point Association detail.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:attribute name="KeyRef" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Reference to globally unique AUGMENTATION POINT instance/ class Key.
Example: 2B75C565-5BB0- 4DCE-8DE6-67CB7B4F25A7</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Owner" type="OwnerSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Owner Airline (or other entity) Code. Examples: BA, WIDGETCO</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Seq" type="xsd:integer" use="optional">
<xsd:annotation>
<xsd:documentation>Sequence ID. Example: 1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="Owner" type="OwnerSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Owner Airline (or other entity) Code. Examples: BA, WIDGETCO</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="AugPointListType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A data type definition for Augmentation Point List.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ListBaseType">
<xsd:sequence>
<xsd:element name="List" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Augmentation Point List detail.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="AugPointAssoc" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Associated Augmentation Point(s).</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:attribute name="KeyRef" type="InstanceClassRefSimpleType" use="required">
<xsd:annotation>
<xsd:documentation>Reference to globally unique AUGMENTATION POINT instance/ class Key.
Example: 2B75C565-5BB0- 4DCE-8DE6-67CB7B4F25A7</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Owner" type="OwnerSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Source Entity Code or ID. Examples: BA, WIDGETCO</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Seq" type="xsd:integer" use="optional">
<xsd:annotation>
<xsd:documentation>Sequence ID. Example: 1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
<xsd:element name="NamedAssocs" type="NamedAssocType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Augmentation Point List Named Association(s).
Note: This capability supports implementer-specified, or "Named", reference associations to other (target) instantiated objects with @Key, @GroupKey, @GroupTokenKey, @ListKey and @ListTokenKey attributes.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="ListKey" type="InstanceClassSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Globally Unique Group instance/ class Key.
Example: {CA2016A0-0AE1-4E65-8EA6-0A16AE906596}</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ListName" type="ContextSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>List Name. Example: MyList</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Owner" type="OwnerSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Source Entity Code or ID. Examples: BA, WIDGETCO</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Seq" type="xsd:integer" use="optional">
<xsd:annotation>
<xsd:documentation>Sequence ID. Example: 1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="AugPointInfoType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A data type definition for Augmentation Point Definition and List.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="AugPoint" type="AugPointType" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Augmentation Point Definition.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Lists" type="AugPointListType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Augmentation Point Reference/ Association Lists.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="NamedAssocType">
<xsd:annotation>
<xsd:documentation>A data type definition for Named Association Type.
Named Association(s).
Note: This capability supports implementer-specified, or "Named" reference associations to other (target) instantiated objects with @Key, @GroupKey and/ or @ListKey attributes.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="NamedAssoc" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Association detail, including:
- Target object name
- Group instance/ class key reference
- Object instance/ class key reference
- From object name
- Sequence id</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Group" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Associated Target Group Key and/ or Token.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:attribute name="GroupKeyRef" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Reference to globally unique TARGET GROUP instance/ class Key.
Example: A3E9CF38-B140-4E03-A550-493A817A2BC9</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="TokenRef" type="TokenID_SimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Reference to globally unique TARGET GROUP COLLECTION instance/ class Key.
Example: {AEF93466-0464-46C6-89B5-487DF5007D3E}</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Seq" type="xsd:integer" use="optional">
<xsd:annotation>
<xsd:documentation>Sequence ID. Example: 1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
<xsd:element name="List" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Associated Target List Key and/ or Token.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:attribute name="ListKeyRef" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Reference to globally unique TARGET LIST instance/ class Key.
Example: {E7A28E6D-045C-4BE1-B85E-304262911773}</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="TokenRef" type="TokenID_SimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Reference to globally unique TARGET LIST COLLECTION instance/ class Key.
Example: E20C732E-17AE-40E8-B3DB-FCC04585DD4C</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Seq" type="xsd:integer" use="optional">
<xsd:annotation>
<xsd:documentation>Sequence ID. Example: 1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
<xsd:element name="UniqueKeyID" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Object Unique Key ID.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:attribute name="UniqueID_Ref" type="UniqueID_SimpleType" use="required">
<xsd:annotation>
<xsd:documentation>A reference to a Unique (string-based) Object ID. Example: OBJ001</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Seq" type="xsd:integer" use="optional">
<xsd:annotation>
<xsd:documentation>Sequence ID. Example: 1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="Target" type="ContextSimpleType" use="required">
<xsd:annotation>
<xsd:documentation>Target Object Source Name.
Example: PolicyList</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="KeyRef" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>A reference to the @Target OBJECT instance/ class Key.
Example: 23D20750-1FFE-4EA7-A5CD-A4B9733A491B</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="From" type="ContextSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>From Object Name.
Example: FlightSegmentList</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Seq" type="xsd:integer" use="optional">
<xsd:annotation>
<xsd:documentation>Sequence ID. Example: 1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!--
======================================================
=== D A T A L I S T O B J E C T S
======================================================-->
<xsd:attributeGroup name="DataListObjAttrGroup">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Policy and object association(s).</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="refs" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object association(s) between this object and any object instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ListKey" type="xsd:ID" use="required">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Globally unique id for this Data List instance.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:complexType name="DataListObjectBaseType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A base type for a Data List object.</xsd:documentation>
</xsd:annotation>
<xsd:attributeGroup ref="DataListObjAttrGroup"/>
<xsd:attribute name="DisplayAllInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, all disclosures should be displayed.
Notes: This capability may not be supported by all NDC-enabled systems or may be supported by bilateral agreement only. The technical implementation of this capability is not dictated by this specification.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="NetFareInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, this is a Cat35 C-Type net fare.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ReissueOnlyInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, the Fare was priced to reissue a partially flown ticket.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="AutoExchangeInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, this fare has been returned from an auto-exchanging application.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="BundleInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, this service is part of a Service Bundle.
Note: Associated Service Bundle information is specified in the Bundle node.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="MaximumTryInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, the maximum payment authentication attemps for this payment form have been exceeded.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="NotProcessedInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, this Payment Form information has not been processed.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="RetryInd" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, this payment form transaction should be resent.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<!--
======================================================
=== I D E N T I F I E R O B J E C T S
======================================================-->
<xsd:attributeGroup name="IdentifierObjAttrGroup">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Policy and object association(s).</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="refs" type="MultiAssocSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object association(s) between this object and any object instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="IdentifierKey" type="xsd:ID" use="required">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A globally unique identifier for this unique identifier instance.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:complexType name="IdentifierObjectBaseType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A base type for a Unique Identifier with metadata, policy and other object instance associations.</xsd:documentation>
</xsd:annotation>
<xsd:attributeGroup ref="IdentifierObjAttrGroup"/>
</xsd:complexType>
<!--
======================================================
=== M E T A D A T A
======================================================-->
<xsd:attributeGroup name="MetadataObjAttrGroup">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Metadata object instance id and association(s).</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="metarefs" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Association(s) between this metadata object and any metadata instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="refs" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object association(s) between this metadata object and any object instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="MetadataKey" type="xsd:ID" use="required">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A globally unique identifier for this Metadata instance.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:complexType name="MetadataObjectBaseType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Base type for NDC Metadata Representation.
Notes: Within NDC, metadata is defined as data about data. This may include information such as the security of a piece of data or the source of the data. These pieces of metadata may be composed into a metadata type. The types of data to which metadata may be applied may be constrained.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element ref="AugmentationPoint" minOccurs="0">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Augmentation Point for this Metadata Structure.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="refs" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object association(s) between this object and any object instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="MetadataKey" type="xsd:ID" use="required">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A globally unique identifier for this Metadata instance.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:element name="MetadataKey" type="KeyIdentifier">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A globally unique identifier for this Object Metadata instance. Example: meta1</xsd:documentation>
</xsd:annotation>
</xsd:element>
<!--
======================================================
=== K E Y O B J E C T W I T H M E T A D A T A
======================================================-->
<xsd:complexType name="KeyObjectBaseType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A base type for a Keyed Object.</xsd:documentation>
</xsd:annotation>
<xsd:attributeGroup ref="ObjectKeyAttrGroup"/>
<xsd:attribute name="PricedInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, Corporate Fare Information was used for Pricing.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="KeyWithMetaObjectBaseType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A base type for a Keyed Object with Metadata Reference..</xsd:documentation>
</xsd:annotation>
<xsd:attributeGroup ref="ObjectKeyMetaAttrGroup"/>
<xsd:attribute name="DisplayAllInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, all disclosures should be displayed.
Notes: This capability may not be supported by all NDC-enabled systems or may be supported by bilateral agreement only. The technical implementation of this capability is not dictated by this specification.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="AllExemptInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, request exemption of all taxes.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="PricingInd" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation>When TRUE, this flight OD pair should be priced.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ConnectionInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, there are one or more connections for this flight.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="E_TicketInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, an electronic ticket may be issued.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="TicketlessInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, the fare can be purchased without issuing a ticket.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="AssociateInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, the coupon should be associated.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="TaxOnEMD_Ind" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, a tax has been collected and is due to a local government from the validating carrier.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="StopOverInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, a stopover is permitted.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="TaxInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, price-associated tax(es) have been specified.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="OtherChargeInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, price-associated fee(s)/ surcharge(s) have been specified.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="PoolingInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, pool baggage across passengers when multiple passengers exist.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="SpecialItemsInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, return special items in the response.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="TaxesInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, calculate applicable taxes.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="NetFareInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, this is a Cat35 C-Type net fare.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ReissueOnlyInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, the Fare was priced to reissue a partially flown ticket.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="AutoExchangeInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, this fare has been returned from an auto-exchanging application.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="AlertInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, transaction processing alerts have been generated and the Alerts node should be parsed.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="AuthenticationInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, additional Traveler authentication is required to complete transaction processing and the Authentication node should be parsed.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="MarketingInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, supplemental marketing information has been generated and the Notifications/ MarketingMessage node should be parsed.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="MultiPayFormInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, there are multiple forms of payment.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="NoticeInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, transaction processing notices have been defined and the Notices node should be parsed.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="PartialInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, this Order has been partially fulfilled.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="WarningInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">When TRUE, business warnings have been generated and the Notification/Warning node should be parsed.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="FailedPaymentInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, payment for this Order has failed.
Note: Payment Failure status is specified in the PaymentStatus node.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="PartialPaymentInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, this Order has been partially paid.
Note: Partial Payment status and information is specified in the PaymentStatus node.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="VerificationInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, payment for this Order requires additional authentication.
Note: Payment Verification status and information is specified in the PaymentStatus node.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="PriceVarianceInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, a price variance was applied.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="InvGuaranteedInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, this item has guaranteed inventory.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="WaitlistInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, this order item is wait-listed.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="BundleInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, this service is part of a Service Bundle.
Note: Associated Service Bundle information is specified in the Bundle node.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="InvGuarRequestedInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, this item has guaranteed inventory.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ExitRowInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, this Seat is in an exit row.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="PremiumInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, this is a premium seat.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="UpperDeckInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, this seat is on the upper deck.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="TaxIncludedInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, tax(es) are included in the price.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="FeeIncludedInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, fee(s) are included in the price.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="LeadPricingInd" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation>When TRUE, Lead Pricing has been included.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Timestamp" type="xsd:dateTime" use="optional">
<xsd:annotation>
<xsd:documentation>Timestamp. Example: 2017-01-13T13:59:38Z</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="MetadataToken" type="DescriptionSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Unique Metadata Collection Token.
Example: jZhJu7SORZeO MNpifElIkA
Note: This token pertains to all specified metadata information, e.g. the metadata collection.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="KeyWithMetaOfferBaseType">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">A base type for a Keyed Offer with Metadata Reference.</xsd:documentation>
</xsd:annotation>
<xsd:attributeGroup ref="OfferKeyMetaAttrGroup"/>
</xsd:complexType>
<xsd:attributeGroup name="ObjectKeyAttrGroup">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Policy, unique instance id and other object associations.</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="refs" type="MultiAssocSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object association(s) between this object and any other object or metadata instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ObjectKey" type="xsd:ID" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object globally unique Instance ID. Example: obj1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="ObjectKeyMetaAttrGroup">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Policy, unique instance id, object metadata and other object associations.</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="refs" type="MultiAssocSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object association(s) between this object and any other object or metadata instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ObjectKey" type="xsd:ID" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object globally unique Instance ID. Example: obj1</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="OfferKeyMetaAttrGroup">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Policy, unique instance id, object metadata and other object associations.</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="refs" type="MultiAssocSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object association(s) between this object and any other object or metadata instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="OfferMetaReferences" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Offer Metadata Association(s). Example: meta1 meta3</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:attributeGroup name="ObjectPolicyMetaAttrGroup">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Policy, object metadata and other object associations.</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="refs" type="MultiAssocSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object association(s) between this object and any other object or metadata instance(s).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ObjectMetaReferences" type="InstanceClassRefSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation source="description" xml:lang="en">Object Metadata Association(s). Example: meta1 meta3</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<!--
===================================================
DATE AND PERIOD REPRESENTATION
===================================================-->
<!-- <<< DATE >>>-->
<xsd:attributeGroup name="AttrCoreDateGrpType">
<xsd:annotation>
<xsd:documentation>A data type definition for Commonly Used Date Representation Formats: Short Date, Date and Time, Timestamp</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="DateTime" type="xsd:dateTime" use="optional">
<xsd:annotation>
<xsd:documentation>Date and time. Example: 2017-01-03T13:20:00</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ShortDate" type="xsd:date" use="optional">
<xsd:annotation>
<xsd:documentation>Short date. Example: 2017-01-13
Encoding Scheme: ISO 8601 Date Format (YYYY-MM-DD)</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Timestamp" type="xsd:dateTime" use="optional">
<xsd:annotation>
<xsd:documentation>Timestamp. Example: 2017-01-13T13:59:38Z</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Time" type="TimeSimpleType" use="optional">
<xsd:annotation>
<xsd:documentation>Time. Example: 14:00
[Encoding Scheme] ISO 8601 Military/ 24 Hour (HH:MM)</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:complexType name="AllDateGrpType">
<xsd:annotation>
<xsd:documentation>A data type definition for Other Date/ Time Period Representation. Includes: Day of week number, Month number, Short Month and Short Year, Full Year, Full Year and Short Month.</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="MonthYear" type="ShortYearMonthSimpleType" use="optional">
<xsd:annotation>