-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconceptualcomponent.xsd
1262 lines (1252 loc) · 78.6 KB
/
conceptualcomponent.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"?>
<!--
Copyright (c) 2014 DDI Alliance, DDI 3.2 release, 2014-02-05
This file is part of DDI 3.2 XML Schema.
DDI 3.2 XML Schema is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
DDI 3.2 XML Schema is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
for more details.
You should have received a copy of the GNU Lesser General Public License along
with DDI 3.2 XML Schema. If not, see <http://www.gnu.org/licenses/>.
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="ddi:conceptualcomponent:3_2" xmlns:r="ddi:reusable:3_2" targetNamespace="ddi:conceptualcomponent:3_2" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="ddi:reusable:3_2" schemaLocation="reusable.xsd"/>
<xs:element name="ConceptualComponent" type="ConceptualComponentType">
<xs:annotation>
<xs:documentation>A maintainable module for the conceptual components of the study or group of studies. Conceptual components include the objects used to describe the concepts the study is examining, the universe (population) and sub-universes those concepts to which they are related, and the geographic structures and locations wherein those populations reside. Concepts, and ConceptualVariables (containing a concept linked to a universe) provide an abstract view of what is being measured by questions or other forms of data capture, and the variables which are used to describe the data that will be collected. Universe describes the populations (objects) about whom information is sought. GeographicStructure and GeographicLocation specify the geographical locations of those objects and the structural relationships between locations of different types, e.g. the relationship of a city to the state that contains it. In addition to the standard name, label, and description, ConceptualComponent contains ConceptSchemes, ConceptualVariableSchemes, UniverseSchemes, GeographicStructureSchemes, and GeographicLocationSchemes both in-line and by reference.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ConceptualComponentType">
<xs:annotation>
<xs:documentation>A maintainable module for the conceptual components of the study or group of studies. Conceptual components include the objects used to describe the concepts the study is examining, the universe (population) and sub-universes those concepts to which they are related, and the geographic structures and locations wherein those populations reside. Concepts, and ConceptualVariables (containing a concept linked to a universe) provide an abstract view of what is being measured by questions or other forms of data capture, and the variables which are used to describe the data that will be collected. Universe describes the populations (objects) about whom information is sought. GeographicStructure and GeographicLocation specify the geographical locations of those objects and the structural relationships between locations of different types, e.g. the relationship of a city to the state that contains it. In addition to the standard name, label, and description, ConceptualComponent contains ConceptSchemes, ConceptualVariableSchemes, UniverseSchemes, GeographicStructureSchemes, and GeographicLocationSchemes both in-line and by reference.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:MaintainableType">
<xs:sequence>
<xs:element ref="ConceptualComponentModuleName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the ConceptualComponentModule. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the ConceptualComponentModule. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the ConceptualComponentModule. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Coverage" minOccurs="0">
<xs:annotation>
<xs:documentation>Provides information about the topical, spatial, and temporal coverage of the conceptual components included in this module.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:OtherMaterial" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Provides information about external resources related to the conceptual components described in this module.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="ConceptScheme">
<xs:annotation>
<xs:documentation>Contains a set of the concepts measured by the data that are being documented.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:ConceptSchemeReference">
<xs:annotation>
<xs:documentation>Allows for inclusion by reference of an external concept scheme.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="UniverseScheme">
<xs:annotation>
<xs:documentation>Contains a set of the Universes and sub-universes of the data that are being documented.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:UniverseSchemeReference">
<xs:annotation>
<xs:documentation>Allows for inclusion by reference of an external universe scheme.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="ConceptualVariableScheme">
<xs:annotation>
<xs:documentation>Contains a set of ConceptualVariables.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:ConceptualVariableSchemeReference">
<xs:annotation>
<xs:documentation>Allows for inclusion by reference of an external ConceptualVariableScheme. TypeOfObject should be set to ConceptualVariableScheme.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:element ref="GeographicStructureScheme">
<xs:annotation>
<xs:documentation>Contains a collection of geographic structures.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:GeographicStructureSchemeReference">
<xs:annotation>
<xs:documentation>Allows for inclusion by reference of a previously defined geographic structure scheme, either internal to, or external to the DDI instance.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:element ref="GeographicLocationScheme">
<xs:annotation>
<xs:documentation>Contains a collection of geographic locations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:GeographicLocationSchemeReference">
<xs:annotation>
<xs:documentation>Allows for inclusion by reference of a previously defined geographic location scheme, either internal to or external to the DDI instance.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="ConceptualComponentModuleName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the Conceptual Component using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ConceptSchemeType">
<xs:annotation>
<xs:documentation>A comprehensive list of the concepts measured by the data that are being documented that is maintained by an agency. In addition to the standard name, label, and description, allows for the inclusion of an existing ConceptScheme by reference, assignment of a controlled vocabulary for the scheme, inclusion of descriptions for Concepts and ConceptGroups in-line or by reference.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:MaintainableType">
<xs:sequence>
<xs:element ref="ConceptSchemeName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the ConceptScheme. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the ConceptScheme. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the ConceptScheme. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:ConceptSchemeReference" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Reference to an existing ConceptScheme for inclusion.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="Vocabulary" minOccurs="0">
<xs:annotation>
<xs:documentation>Identifies and describes the vocabulary used to create the concept scheme.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="Concept">
<xs:annotation>
<xs:documentation>Describes an individual concept.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:ConceptReference">
<xs:annotation>
<xs:documentation>Includes a description of an individual concept by reference. TypeOfObject should be set to Concept.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="ConceptGroup">
<xs:annotation>
<xs:documentation>Allows for grouping of concepts for administrative or conceptual purposes; groups may have a hierarchical structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="ConceptGroupReference">
<xs:annotation>
<xs:documentation>Reference to a ConceptGroup that allows for grouping of concepts for administrative or conceptual purposes; groups may have a hierarchical structure. TypeOfObject should be set to ConceptGroup</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="ConceptSchemeName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the Concept Scheme using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="UniverseSchemeType">
<xs:annotation>
<xs:documentation>Contains a set of Universe descriptions that may be organized into sub-universe structures. A Universe may also be known as a population. A Universe describes the "object" of a Data Element Concept or Data Element as defined by ISO/IEC 11179.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:MaintainableType">
<xs:sequence>
<xs:element ref="UniverseSchemeName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the UniverseScheme. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the UniverseScheme. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the content and purpose of the UniverseScheme. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:UniverseSchemeReference" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Allows the inclusion of a UniverseScheme by reference.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="Universe">
<xs:annotation>
<xs:documentation>Describes a universe (population, object). A universe may be organized into hierarchical sub-universe classes.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:UniverseReference">
<xs:annotation>
<xs:documentation>Reference to a Universe to include in this scheme that is described elsewhere.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="UniverseGroup">
<xs:annotation>
<xs:documentation>Describes a group of universes (populations, objects) for administrative purposes.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="UniverseGroupReference">
<xs:annotation>
<xs:documentation>Reference to a UniverseGroup to include in this scheme that is described elsewhere.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="UniverseSchemeName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the Universe Scheme using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="UniverseGroupReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to a UniverseGroup using the r:Reference structure. TypeOfObject should be set to UniverseGroup.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="GroupingUniverseReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to a Universe using the r:Reference structure. Reference to the universe statement describing the persons or other objects to which the contents of this group pertain. This is not a university contained by the group but one that helps define the purpose and application of the group. TypeOfObject should be set to Universe.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="GroupingConceptReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to the concept expressed by the objects in this group using the r:Reference structure. TypeOfObject should be set to Concept.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="UniverseGroup" type="UniverseGroupType">
<xs:annotation>
<xs:documentation>Contains a group of Universes. Use primarily for administrative purposes. If structuring nesting of Universes to represent a hierarchical set of universes use the SubUniverseClass found in Universe.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="UniverseGroupType">
<xs:annotation>
<xs:documentation>Contains a group of Universes, which may describe an ordered or hierarchical relationship structure. Specifies the purpose of the group, a name, label, and description of the group, its relationship to a specific universe or concept, and lists the members of the group. Use primarily for administrative purposes. If structuring nesting of Universes to represent a hierarchical set of universes use the SubUniverseClass found in Universe.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:VersionableType">
<xs:sequence>
<xs:element ref="TypeOfUniverseGroup" minOccurs="0">
<xs:annotation>
<xs:documentation>A generic element for specifying a reason for a UniverseGroup. Note that this element can contain either a term from a controlled vocabulary list or a textual description.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="UniverseGroupName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the group. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the UniverseGroup. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the content and purpose of the UniverseGroup. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="GroupingUniverseReference" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Reference to the universe statement describing the persons or other objects to which the contents of this group pertain. This is not a university contained by the group but one that helps define the purpose and application of the group.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="GroupingConceptReference" minOccurs="0">
<xs:annotation>
<xs:documentation>Reference to the concept expressed by the objects in this group. Note that this is not a formal linking of a concept to a university such as found in a ConceptualVariable. It is a means of helping to define the context within which this ConceptGroup is relevant.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Subject" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>If subjects are listed for this group, it is strongly recommended that the subjects listed also be found in the TopicalCoverage element for the parent packaging element when this group is included directly or by reference in a module containing a coverage element. Use of subject at the group level allows for associating objects as a type of subject based group or to identify subject characteristics of a reusable group of objects.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Keyword" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>If keywords are listed for this group, it is strongly recommended that the keywords listed also be found in the TopicalCoverage element for the parent packaging element when this group is included directly or by reference in a module containing a coverage element. Use of keyword at the group level allows for associating objects as a type of keyword based group or to identify keyword characteristics of a reusable group of objects.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="r:UniverseReference">
<xs:annotation>
<xs:documentation>Reference to constituent Universe (from the substitution group). TypeOfObject should be set to Universe.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="UniverseGroupReference">
<xs:annotation>
<xs:documentation>Reference to constituent UniverseGroup. This allows for nesting of UniverseGroups. TypeOfObject should be set to UniverseGroup.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attribute name="isOrdered" type="xs:boolean" default="false">
<xs:annotation>
<xs:documentation>If set to "true" indicates that the content of the group is ordered as it appears within the XML structure.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="UniverseGroupName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the InstructionGroup using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TypeOfUniverseGroup" type="r:CodeValueType">
<xs:annotation>
<xs:documentation>A brief textual description of the type of group created to associate a number of Instructions. Supports the use of an external controlled vocabulary.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ConceptGroupType">
<xs:annotation>
<xs:documentation>Allows for grouping of concepts; groups may have a hierarchical structure. This structure should not be used to model semantic concept hierarchies - for this purpose, use the SubclassOfReference element within Concept.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:VersionableType">
<xs:sequence>
<xs:element ref="TypeOfConceptGroup" minOccurs="0">
<xs:annotation>
<xs:documentation>Specifies the purpose of the ConceptGroup. If conceptual the GroupingConceptReference or GroupingUniverseReference should be used to further define the group. The object allows for specification of the purpose using a brief string or term. Supports the use of an external controlled vocabulary.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="ConceptGroupName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the ConceptGroup. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the ConceptGroup. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the ConceptGroup. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="GroupingUniverseReference" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Reference to the universe statement describing the persons or other objects to which the contents of this group pertain. Note that this is not a formal linking of a concept to a university such as found in a ConceptualVariable. It is a means of helping to define the context within which this ConceptGroup is relevant.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="GroupingConceptReference" minOccurs="0">
<xs:annotation>
<xs:documentation>Reference to the concept expressed by the objects in this group. Expresses a conceptual basis for grouping the concepts. Note that this is not a formal linking of a concept to a university such as found in a ConceptualVariable. It is a means of helping to define the context within which this ConceptGroup is relevant.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Subject" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>If subjects are listed for this group, it is strongly recommended that the subjects listed also be found in the TopicalCoverage element for the parent packaging element when this group is included directly or by reference in a module containing a coverage element. Use of subject at the group level allows for associating objects as a type of subject based group or to identify subject characteristics of a reusable group of objects.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Keyword" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>If keywords are listed for this group, it is strongly recommended that the keywords listed also be found in the TopicalCoverage element for the parent packaging element when this group is included directly or by reference in a module containing a coverage element. Use of keyword at the group level allows for associating objects as a type of keyword based group or to identify keyword characteristics of a reusable group of objects.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="r:ConceptReference">
<xs:annotation>
<xs:documentation>Reference to a concept included in the concept group. A concept can be referenced internally, from the concept scheme included in the same conceptual components module, or externally, from another scheme. This element is recursive to allow for the description of hierarchical relationships within the concept group.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="ConceptGroupReference">
<xs:annotation>
<xs:documentation>Reference to a subordinate concept group included in the concept group. A concept group can be referenced internally, from the concept scheme included in the same conceptual components module, or externally, from another scheme. This element is recursive to allow for the description of hierarchical relationships within the concept group.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attribute name="isOrdered" type="xs:boolean" default="false">
<xs:annotation>
<xs:documentation>If set to "true" indicates that the content of the group is ordered as it appears within the XML structure.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="isAdministrativeOnly" type="xs:boolean" default="false">
<xs:annotation>
<xs:documentation>Indicates the purpose of a concept group.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="isConcept" type="xs:boolean" use="optional" default="false">
<xs:annotation>
<xs:documentation>A value of true indicates that there is a concept which defines the group, and which is comprised of the concepts contained in the group. A group can be conceptual in purpose (that is, have a value of "concept" for the purpose attribute), but not itself have a defining concept.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="ConceptGroupName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the Concept Group using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConceptGroupReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to an existing ConceptGroup using the Reference structure. TypeOfObject should be set to ConceptGroup.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TypeOfConceptGroup" type="r:CodeValueType">
<xs:annotation>
<xs:documentation>A brief textual description of the reason that a group was formed. Supports the use of an external controlled vocabulary.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DefiningConceptReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to an existing Concept using the Reference structure. TypeOfObject should be set to Concept.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="VocabularyType">
<xs:annotation>
<xs:documentation>Provides information about the vocabulary used to create a concept scheme.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="VocabularyTitle" minOccurs="0">
<xs:annotation>
<xs:documentation>Full title of vocabulary.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Abbreviation" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Abbreviation of vocabulary title.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Keyword" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Keywords that describe the vocabulary.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the content and purpose of the Vocabulary. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:URI" minOccurs="0">
<xs:annotation>
<xs:documentation>URI to external resource providing information about the vocabulary (general description, main web page).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="XML-URI" type="xs:anyURI" minOccurs="0">
<xs:annotation>
<xs:documentation>URI to the vocabulary represented as an XML document.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Scheme" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Textual description of the XML scheme in which the classification is written.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SchemeURI" type="xs:anyURI" minOccurs="0">
<xs:annotation>
<xs:documentation>URI to the XML scheme used in the vocabulary (DTD or XML Schema for the XML document above; schemes like DDI, Claset, Neuchatel, and DocBook). Typically, this will be an XML namespace.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="Comments" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Information for the user regarding the reasons for use of the vocabulary and appropriate usage constraints.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:element name="Concept" type="ConceptType">
<xs:annotation>
<xs:documentation>Describes a concept per ISO/IEC 11179.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ConceptType">
<xs:annotation>
<xs:documentation>Describes a concept per ISO/IEC 11179. In addition to the standard name, label, and description, can identify similar concepts, the concept which this concept is a subclass of, a concept that is used to characterize this concept, and a reference to the Universe associated with this concept. It is the linking of a concept to a specific universe (object) that defines this as a data element concept.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:VersionableType">
<xs:sequence>
<xs:element ref="ConceptName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the Concept. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the Concept. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the content and purpose of the Concept. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="SimilarConcept" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A reference to a concept expressing a similar idea plus a description of the differences. Used to assist in disambiguation of concepts.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="SubclassOfReference" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Reference to a Concept that is used for qualifying this data element concept. The referenced Concept should have its isCharacteristic attribute set to true.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="isCharacteristic" type="xs:boolean" default="false">
<xs:annotation>
<xs:documentation>If set to "true" this concept is used to describe a characteristic of another concept.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="SubclassOfReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to an existing Concept using the Reference structure. TypeOfObject should be set to Concept.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConceptName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the Concept using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ConceptualVariableType">
<xs:annotation>
<xs:documentation>Describes a ConceptualVariable which provides the link between a concept to a specific universe (object) that defines this as a ConceptualVariable. In addition to the standard name, label, and description, it provides the two primary components of a ConceptualVariable by referencing a concept and its related universe. Note that the concept referenced may itself contain sub-concepts and/or references to similar concepts. This maps to the GSIM ConceptualVariable and has a basis in the ISO/IEC 11179 RepresentedVariableConcept.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:VersionableType">
<xs:sequence>
<xs:element ref="ConceptualVariableName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the ConceptualVariable. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the ConceptualVariable. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the content and purpose of the ConceptualVariable. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:ConceptReference" minOccurs="0">
<xs:annotation>
<xs:documentation>Reference to a Concept that is being linked to a Universe identified by the UniverseReference. TypeOfObject should be set to Concept.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:UniverseReference" minOccurs="0">
<xs:annotation>
<xs:documentation>Reference to a universe being associated with this concept. TypeOfObject should be set to Universe.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ConceptualVariableSchemeType">
<xs:annotation>
<xs:documentation>A comprehensive list of the ConceptualVariables measured by the data that are being documented and/or maintained by an agency. In addition to the standard name, label, and description, allows for the inclusion of an existing ConceptualVariableScheme by reference, the inclusion of descriptions for ConceptualVariables and ConceptualVariableGroups in-line or by reference.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:MaintainableType">
<xs:sequence>
<xs:element ref="ConceptualVariableSchemeName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the ConceptualVariableScheme. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the ConceptualVariableScheme. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the ConceptualVariableScheme. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:ConceptualVariableSchemeReference" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Reference to an existing ConceptualVariableScheme for inclusion. TypeOfObject should be set to a ConceptualVariableScheme.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="ConceptualVariable">
<xs:annotation>
<xs:documentation>Describes a ConceptualVariable which provides the link between a concept to a specific universe (object) that defines this as a ConceptualVariable.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:ConceptualVariableReference">
<xs:annotation>
<xs:documentation>Inclusion of an existing ConceptualVariable by reference. TypeOfObject should be set to a ConceptualVariable.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="ConceptualVariableGroup">
<xs:annotation>
<xs:documentation>Allows for grouping of ConceptualVariables for administrative or conceptual purposes; groups may have a hierarchical structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="ConceptualVariableGroupReference">
<xs:annotation>
<xs:documentation>Inclusion of an existing ConceptualVariableGroup by reference. TypeOfObject should be set to ConceptualVariableGroup</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="ConceptualVariableName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the ConceptualVariable using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConceptualVariableSchemeName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the ConceptualVariableScheme using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConceptualVariableGroupReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to an existing ConceptualVariableGroup using the Reference structure. TypeOfObject should be ConceptualVariableGroup.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConceptualVariableGroup" type="ConceptualVariableGroupType">
<xs:annotation>
<xs:documentation>Contains a group of ConceptualVariables.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ConceptualVariableGroupType">
<xs:annotation>
<xs:documentation>Contains a group of ConceptualVariables, which may describe an ordered or hierarchical relationship structure. ConceptualVariables may be grouped for a wide range of reasons including conceptual or universe grouping, usage, subject or keyword relationships, or other grouping reason that will assist in the management of a group of ConceptualVariables. Specifies the purpose of the group, a name, label, and description of the group, its relationship to a specific universe or concept, and lists the members of the group.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:VersionableType">
<xs:sequence>
<xs:element ref="TypeOfConceptualVariableGroup" minOccurs="0">
<xs:annotation>
<xs:documentation>A generic element for specifying a reason for a ConceptualVariableGroup. Note that this element can contain either a term from a controlled vocabulary list or a textual description.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="ConceptualVariableGroupName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the group. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the ConceptualVariableGroup. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the content and purpose of the ConceptualVariableGroup. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:UniverseReference" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Reference to the universe statement describing the persons or other objects to which the contents of this group pertain. TypeOfObject should be set to Universe.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:ConceptReference" minOccurs="0">
<xs:annotation>
<xs:documentation>Reference to the concept expressed by the objects in this group. TypeOfObject should be set to Concept.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Subject" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>If subjects are listed for this group, it is strongly recommended that the subjects listed also be found in the TopicalCoverage element for the parent packaging element when this group is included directly or by reference in a module containing a coverage element. Use of subject at the group level allows for associating objects as a type of subject based group or to identify subject characteristics of a reusable group of objects.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Keyword" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>If keywords are listed for this group, it is strongly recommended that the keywords listed also be found in the TopicalCoverage element for the parent packaging element when this group is included directly or by reference in a module containing a coverage element. Use of keyword at the group level allows for associating objects as a type of keyword based group or to identify keyword characteristics of a reusable group of objects.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="r:ConceptualVariableReference">
<xs:annotation>
<xs:documentation>Reference to constituent ConceptualVariable (from the substitution group). TypeOfObject should be set to ConceptualVariable.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="ConceptualVariableGroupReference">
<xs:annotation>
<xs:documentation>Reference to constituent ConceptualVariableGroup. This allows for nesting of ConceptualVariableGroups. TypeOfObject should be set to ConceptualVariableGroup.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attribute name="isOrdered" type="xs:boolean" default="false">
<xs:annotation>
<xs:documentation>If set to "true" indicates that the content of the group is ordered as it appears within the XML structure.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="ConceptualVariableGroupName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the ConceptualVariableGroup using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TypeOfConceptualVariableGroup" type="r:CodeValueType">
<xs:annotation>
<xs:documentation>A brief textual description of the type of group created to associate a number of Instructions. Supports the use of an external controlled vocabulary.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConceptualVariableScheme" type="ConceptualVariableSchemeType">
<xs:annotation>
<xs:documentation>A comprehensive list of the ConceptualVariables measured by the data that are being documented and/or maintained by an agency.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CharacteristicReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to an existing Concept using the Reference structure. TypeOfObject should be set to Concept.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConceptualVariable" type="ConceptualVariableType">
<xs:annotation>
<xs:documentation>Describes a ConceptualVariable which provides the link between a concept to a specific universe (object) that defines this as a ConceptualVariable. In addition to the standard name, label, and description, it provides the two primary components of a ConceptualVariable by referencing a concept and its related universe. Note that the concept referenced may itself contain sub-concepts and/or references to similar concepts.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="SimilarConceptType">
<xs:annotation>
<xs:documentation>A reference to a concept with similar meaning and a description of their differences. Formal comparison is done using a ConceptMap. The similar concept structure allows specification of similar concepts to address cases where confusion may affect the appropriate use of the concept.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="SimilarConceptReference">
<xs:annotation>
<xs:documentation>Reference to a concept with a similar definition.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Difference" minOccurs="0">
<xs:annotation>
<xs:documentation>Describes the difference between the concept referenced in SimilarConceptReference and the concept included in the concept's Description element.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:element name="SimilarConceptReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to an existing Concept using the Reference structure. TypeOfObject should be set to Concept.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="UniverseType">
<xs:annotation>
<xs:documentation>Describes a universe which may also be known as a population. A Universe describes the "object" of a Data Element Concept or Data Element as defined by ISO/IEC 11179. A universe may be organized into hierarchical sub-universes. In addition to the standard name, label, and description, the universe may provide a generation code (how the universe is differentiated or split out from another universe), a definition of hierarchical sub-settings for the universe, and an attribute that indicates if the description of the universe is stated in terms of what the universe includes.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:VersionableType">
<xs:sequence>
<xs:element ref="UniverseName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the Universe. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the Universe. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the content and purpose of the Universe. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="DefiningConceptReference" minOccurs="0">
<xs:annotation>
<xs:documentation>A concept that defines or aids in understanding the content of the universe. For example the Universe "Males" may link to the concept of "Male".</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="UniverseGenerationCode" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>An expression of the universe in terms of the code used to generate or define it. For example how a given universe may be differentiated within a parent universe.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="SubUniverseClass">
<xs:annotation>
<xs:documentation>A sub-universe class provides a definition to the universes contained within it. For example the Sub-Universe Class of Gender for the Universe Resident Population may contain the Universe Males and the Universe Females</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="SubUniverseClassReference">
<xs:annotation>
<xs:documentation>The inclusion of a SubUniverseClass by reference.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attribute name="isInclusive" type="xs:boolean" default="true">
<xs:annotation>
<xs:documentation>The default value is "true". The description statement of a universe is generally stated in inclusive terms such as "All persons residing in Europe". Occasionally a universe is defined by what it excludes, i.e., "All persons residing in Europe except for those residing on U.S. Military bases". In this case the value would be changed to "false".</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="UniverseName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the Universe using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SubUniverseClass" type="SubUniverseClassType">
<xs:annotation>
<xs:documentation>A sub-universe group provides a definition to the universes contained within it. For example the Sub-Universe Group of Gender for the Universe Resident Population may contain the Universe Males and the Universe Females</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="SubUniverseClassType">
<xs:annotation>
<xs:documentation>A sub-universe group provides a definition to the universes contained within it. For example the Sub-Universe Group of Gender for the Universe Resident Population may contain the Universe Males and the Universe Females. In addition to the standard name, label, and description, the SubUniverseClass references a concept which defines it, and references to the universes and or other sub-universe groups it contains. The contents of the SubUniverseClass may be designated as ordered.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:VersionableType">
<xs:sequence>
<xs:element ref="SubUniverseClassName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the SubUniverseClass. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0">
<xs:annotation>
<xs:documentation>A display label for the SubUniverseClass. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the content and purpose of the SubUniverseClass. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="DefiningConceptReference" minOccurs="0">
<xs:annotation>
<xs:documentation>A concept that provides a grouping factor for the universes contained by the SubUniverseClass. For example if the parent Universe is Population of the World and the two universes in the group are Male and Female the defining concept may be Sex.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="r:UniverseReference">
<xs:annotation>
<xs:documentation>A reference to a universe contained in this SubUniverseClass. Note that two different parent universes may contain references to the same universe within a sub-universe group. For example, the Universe "Population of Europe" and the Universe "Population of the United States" may both have a reference to the SubUniverseClass with the defining concept of Gender and member Universes "Males" and "Females". The SubUniverseClass is ALWAYS a restriction of its parent universe so that in one case it would be "Males within the Population of Europe" and in the other usage "Males within the Population of the United States". A question or variable should reference each relevant universe to define the appropriate intersect group.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="SubUniverseClassReference">
<xs:annotation>
<xs:documentation>A reference to a SubUniverseClass contained in this SubUniverseClass (a means of nesting hierarchies).</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attribute name="isOrdered" type="xs:boolean" default="false">
<xs:annotation>
<xs:documentation>If set to "true" indicates that the content of the group is ordered as it appears within the XML structure.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="SubUniverseClassReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to an existing SubUniverseClass using the Reference structure. TypeOfObject should be set to SubUniverseClass.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SubUniverseClassName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the SubUniverse Class using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<!-- GEOGRAPHY -->
<xs:complexType name="GeographicStructureSchemeType">
<xs:annotation>
<xs:documentation>Contains information on the hierarchy of the geographic structure. In addition to the standard name, label, and description identifies one or more AuthorizedSources for the level codes/descriptions provided and a set of GeographicLevels in-line or by reference.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:MaintainableType">
<xs:sequence>
<xs:element ref="GeographicStructureSchemeName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the GeographicStructure. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the GeographicStructure. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Description" minOccurs="0">
<xs:annotation>
<xs:documentation>A description of the GeographicStructure. May be expressed in multiple languages and supports the use of structured content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:GeographicStructureSchemeReference" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The inclusion of an existing GeographicStructureScheme in the parent scheme by reference.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="r:GeographicStructure">
<xs:annotation>
<xs:documentation>Used to describe any level of geography, including overall coverage and each of the lower levels.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:GeographicStructureReference">
<xs:annotation>
<xs:documentation>Inclusion of an existing GeographicLevel description by reference.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="GeographicStructureGroup">
<xs:annotation>
<xs:documentation>In-line description of a group of GeographicStructure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="GeographicStructureGroupReference">
<xs:annotation>
<xs:documentation>The inclusion of an existing GeographicStructureGroup by reference. TypeOfObject should be set to GeographicStructureGroup.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="GeographicStructureSchemeName" type="r:NameType">
<xs:annotation>
<xs:documentation>Name of the Geographic Structure Scheme using the DDI Name structure.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="GeographicStructureGroupReference" type="r:ReferenceType">
<xs:annotation>
<xs:documentation>Reference to an existing GeographicStructureGroup using the Reference structure. TypeOfObject should be set to GeographicStructureGroup.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="GeographicStructureGroup" type="GeographicStructureGroupType">
<xs:annotation>
<xs:documentation>Contains a group of GeographicStructures.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="GeographicStructureGroupType">
<xs:annotation>
<xs:documentation>Contains a group of GeographicStructures, which may describe an ordered or hierarchical relationship structure. Specifies the purpose of the group, a name, label, and description of the group, its relationship to a specific universe or concept, and lists the members of the group.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="r:VersionableType">
<xs:sequence>
<xs:element ref="TypeOfGeographicStructureGroup" minOccurs="0">
<xs:annotation>
<xs:documentation>A generic element for specifying a reason for a GeographicStructureGroup. Note that this element can contain either a term from a controlled vocabulary list or a textual description.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="GeographicStructureGroupName" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A name for the group. May be expressed in multiple languages. Repeat the element to express names with different content, for example different names for different systems.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="r:Label" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A display label for the GeographicStructureGroup. May be expressed in multiple languages. Repeat for labels with different content, for example, labels with differing length limitations.</xs:documentation>