-
Notifications
You must be signed in to change notification settings - Fork 0
/
CitationInformation.xsd
363 lines (311 loc) · 12.4 KB
/
CitationInformation.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
<?xml version="1.0"?>
<xsd:schema targetNamespace="../xsd/CitationInformation"
xmlns:citi="../xsd/CitationInformation"
xmlns:mtag="../xsd/MiscTypesAndGroups"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xdb="http://xmlns.oracle.com/xdb">
<xsd:import namespace="../xsd/MiscTypesAndGroups"
schemaLocation="../xsd/MiscTypesAndGroups.xsd"/>
<xsd:annotation>
<xsd:documentation xml:lang="en">
Name: CitationInformation.xsd
Author: James W. Allor, Matthew J. McCready
Date: 20050314
Description: Validating XML Schema for the Citation Information
section. Please reference the Census Bureau Geospatial
Product Metadata Standard (GPMS), Table 1.
Modification History:
Initial Date Change Request ID Description
JWA 20050314 N/A Initial Version
JWA 20051109 N/A Updated to reflect current
GPMS Table 1.
JWA 20051201 N/A Added types and attributes
for Oracle XML DB.
JWA 20051215 N/A Changed xsd:string to mtag:vstring
to validate elements have a value.
MMC 20071202 Modified so that Originator, Publication_Date
and Edition all have to have a minimum string
length of one
MMC 20071210 N/A Modified Edition, Geospatial_Data_Presentation_ Form and Online_Linkage to have a minimum
string length of 1 character.
MMC 20080616 N/A Xpaths modified to mirror the directory
structure on Node104.
MMC 20100901 N/A Modified the "Online_Linkage" element so that it
will only accept a value of
"http://www.census.gov/geo/www/tiger
MMC 20110121 N/A Modified the "Other_Citation_Details" element so that if it
exists, it must have a minimum value of 1.
</xsd:documentation>
</xsd:annotation>
<!-- Used in Lineage/SourceCitation/Cition_Information in section 2 -->
<xsd:group name="Citation_Information_A_Group">
<xsd:sequence>
<xsd:element name="Originator" maxOccurs="unbounded">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Publication_Date">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="4"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Title" minOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Alternate_Title" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Other_Citation_Details" type="mtag:vstring" minOccurs="0"/>
</xsd:sequence>
</xsd:group>
<!-- Used for the Planned Profile -->
<xsd:complexType name="Citation_Information_A_Type">
<xsd:sequence>
<xsd:element name="Originator" maxOccurs="unbounded">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Publication_Date">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="4"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Title">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Alternate_Title" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Other_Citation_Details" minOccurs="0">
<xsd:simpleType>
<xsd:restriction base="mtag:vstring">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!-- Used for Cross_Reference in Section 1 -->
<xsd:complexType name="Citation_Information_B_Type">
<xsd:sequence>
<xsd:element name="Originator" maxOccurs="unbounded">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Publication_Date">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="4"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Title">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Alternate_Title" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<!--<xsd:element name="Other_Citation_Details" type="mtag:vstring" minOccurs="0"/> -->
<xsd:element name="Online_Linkage" minOccurs="0" maxOccurs="unbounded">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
<xsd:enumeration value="http://www.census.gov/geo/www/tiger"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!-- Used in Cition in Section 1 -->
<xsd:complexType name="Citation_Information_C_Type">
<xsd:sequence>
<xsd:element name="Originator" maxOccurs="unbounded">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Publication_Date">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="4"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Title">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Alternate_Title" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Edition" minOccurs="0">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="4"/>
<!-- <xsd:enumeration value="2011"/> -->
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Geospatial_Data_Presentation_Form"
type="citi:Geospatial_Data_Presentation_Form_Type"/>
<xsd:element name="Series_Information" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Series_Name" type="mtag:vstring"/>
<xsd:element name="Issue_Identification" type="mtag:vstring"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Other_Citation_Details" minOccurs="0">
<xsd:simpleType>
<xsd:restriction base="mtag:vstring">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Online_Linkage" maxOccurs="unbounded">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!-- Used for the Repository_Type -->
<xsd:complexType name="Citation_Information_D_Type">
<xsd:sequence>
<xsd:element name="Originator" maxOccurs="unbounded">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Publication_Date">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="4"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Title">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Alternate_Title" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Edition" minOccurs="0">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Geospatial_Data_Presentation_Form"
type="citi:Geospatial_Data_Presentation_Form_Type" minOccurs="0"/>
<xsd:element name="Series_Information" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Series_Name" type="mtag:vstring"/>
<xsd:element name="Issue_Identification" type="mtag:vstring"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Other_Citation_Details" minOccurs="0">
<xsd:simpleType>
<xsd:restriction base="mtag:vstring">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Online_Linkage" type="mtag:vstring"
minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name="Geospatial_Data_Presentation_Form_Type">
<xsd:union>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
<xsd:enumeration value="atlas"/>
<xsd:enumeration value="audio"/>
<xsd:enumeration value="diagram"/>
<xsd:enumeration value="document"/>
<xsd:enumeration value="globe"/>
<xsd:enumeration value="map"/>
<xsd:enumeration value="model"/>
<xsd:enumeration value="multimedia presentation"/>
<xsd:enumeration value="profile"/>
<xsd:enumeration value="raster digital data"/>
<xsd:enumeration value="remote-sensing image"/>
<xsd:enumeration value="section"/>
<xsd:enumeration value="spreadsheet"/>
<xsd:enumeration value="tabular digital data"/>
<xsd:enumeration value="vector digital data"/>
<xsd:enumeration value="video"/>
<xsd:enumeration value="view"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType>
<xsd:restriction base="mtag:vstring">
<xsd:minLength value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>
</xsd:schema>