-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgmlasconf.xsd
1051 lines (992 loc) · 46.8 KB
/
gmlasconf.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"?>
<!--
/******************************************************************************
* $Id$
*
* Project: GDAL/OGR
* Purpose: XML Schema for gmlasconf.xml
* Author: Even Rouault, <even dot rouault at spatialys dot com>
*
**********************************************************************
* Copyright (c) 2016, Even Rouault
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified" version="1.0">
<xs:element name="Configuration">
<xs:annotation>
<xs:documentation>
Configuration of GMLAS driver.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="AllowRemoteSchemaDownload" minOccurs="0"
type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether downloading remote schemas is allowed. Default is true.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SchemaCache" minOccurs="0">
<xs:annotation>
<xs:documentation>
Describe working of schema cache.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Directory" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>
Name of the cache directory. If not specified, this
defaults to $HOME/.gdal/gmlas_xsd_cache.
Ignored if 'enabled' is not true.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="enabled" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether the cache is enabled. Default is true.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="SchemaAnalysisOptions" minOccurs="0">
<xs:annotation>
<xs:documentation>
Describe option that affect the Xerces schema parser.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="SchemaFullChecking" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether to enable full schema constraint checking, including checking
which may be time-consuming or memory intensive. Currently,
particle unique attribution constraint checking and particle
derivation restriction checking are controlled by this option.
Defaults to true.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HandleMultipleImports" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether to allow multiple schemas with the same namespace
to be imported.
Defaults to false.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Validation" minOccurs="0">
<xs:annotation>
<xs:documentation>
Describe if and how validation of the document against the
schema is done.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="FailIfError" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether a validation error should prevent dataset
opening.
Ignored if 'enabled' is not true.
Default is false.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="enabled" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether validation is enabled. Default is false.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="ExposeMetadataLayers" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether the _ogr_layers_metadata, _ogr_fields_metadata and
_ogr_layer_relationships layers that show how OGR layers and
fields are built from the schemas should be exposed as
available layers.
Default is false.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LayerBuildingRules" minOccurs="0">
<xs:annotation>
<xs:documentation>
Tunable rules that affect how layers and fields are built from
the schema.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="AlwaysGenerateOGRId" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether a 'ogr_pkid' attribute should always be generated,
even if the underlying XML element has a required attribute
of type ID. Turning it to true can be useful if the
uniqueness of such attributes is not trused.
Default is false.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RemoveUnusedLayers" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether to remove any OGR layer without any feature, during the
initial scan pass.
Default is false.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RemoveUnusedFields" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether to remove any unused OGR field, during the
initial scan pass.
Default is false.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="UseArrays" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether OGR array types (StringList, IntegerList,
Integer64List and RealList) can be used to store
repeated values of the corresponding base types.
Default is true.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="UseNullState" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether xsi:nil="true" should be mapped from/to the OGR
null field state (new in GDAL 2.2). If set to false, then
a XXX_nil field will be added when necessary. If set to true,
then unset and null states are used (but this is not very
convenient when converting to SQL databases where both states
are equivalent).
Default is false.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="GML" minOccurs="0">
<xs:annotation>
<xs:documentation>
Settings specific to documents that import the GML namespace.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="IncludeGeometryXML" minOccurs="0"
type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether the XML description of a GML geometry should
be stored in a string attribute (whose name is the
element name suffixed by _xml). This is in addition
to storing the geometry as a OGR geometry.
Default is false.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="InstantiateGMLFeaturesOnly" minOccurs="0"
type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether, when dealing with schemas that import the
GML namespace, and that at least one of them has
elements that derive from gml:_Feature or
gml:AbstractFeatureonly, only such elements should be
instantiated as OGR layers, during the first pass that
iterates over top level elements of the imported
schemas.
Note: for technical reasons, other elements may end
up being exposed as OGR layers, but this setting
is a first way of limiting the number of OGR layers.
Default is true.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="IdentifierMaxLength" minOccurs="0">
<xs:annotation>
<xs:documentation>
Maximum size of layer and field identifiers. If identifiers
are naturally bigger than the limit, a logic truncates
them while ensuring their unicity.
When absent, unlimited size.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:positiveInteger">
<xs:minInclusive value="10"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CaseInsensitiveIdentifier" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether layer and field names should be consider equal in a
case insensitive way. This is important for conversion to
Postgres when identifiers are laundered in lower case
Default is true.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PostgreSQLIdentifierLaundering" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether layer and field names should be laundered like the
OGR PostgreSQL driver does by default, ie identifiers put
in lower cases and a few special characters( single quote,
dash, sharp) replaced by underscore. This can help to post-
process the _ogr_layer_relationships layers more easily or,
for write support.
Note: this laundering is safe for other backends as well.
Default is true.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="FlatteningRules" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="MaximumNumberOfFields" type="xs:int" minOccurs="0">
<xs:annotation>
<xs:documentation>
Maximum number of fields in an element considered
for flattening.
Default is 10.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Namespaces" type="namespacesType" minOccurs="0"/>
<xs:element name="ForceFlatteningXPath" type="xs:string" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
XPath of element that will be considered for flattening
even if it has more than MaximumNumberOfFields fields,
or if it is referenced several times by other elements.
Note: other constraints might make it impossible to
flatten it, for example if it has repeated elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DisableFlatteningXPath" type="xs:string" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
XPath of element that will NOT be considered for flattening
even if it has less or MaximumNumberOfFields fields.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="SWEProcessing" minOccurs="0">
<xs:annotation>
<xs:documentation>
Configuration of special processing for elements in
the http://www.opengis.net/swe/2.0 namespace.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Activation" minOccurs="0">
<xs:annotation>
<xs:documentation>
If and how SWE processing is enabled.
Default is ifSWENamespaceFoundInTopElement.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="ifSWENamespaceFoundInTopElement">
<xs:annotation>
<xs:documentation>
If the http://www.opengis.net/swe/2.0
namespace is found, SWE special
processing will be enabled.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="true"/>
<xs:enumeration value="false"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="ProcessDataRecord" type="xs:boolean"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
If swe:DataRecord must be parsed. Default is true.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProcessDataArray" type="xs:boolean"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
If swe:DataArray and swe:DataStream must be parsed.
Default is true.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="TypingConstraints" minOccurs="0">
<xs:annotation>
<xs:documentation>
Constraints to specify the types of children of elements of
type xs:anyType.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Namespaces" type="namespacesType" minOccurs="0"/>
<xs:element name="ChildConstraint" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="ContainerXPath" type="xs:string"/>
<xs:element name="ChildrenElements" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="Element" type="xs:string" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="XLinkResolution" minOccurs="0">
<xs:annotation>
<xs:documentation>
Rules regarding resolution of xlink:href attributes
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Timeout" minOccurs="0" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>
Timeout in seconds for resolving a HTTP resource.
Default: no timeout or value of GDAL_HTTP_TIMEOUT
configuration option.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MaxGlobalResolutionTime" minOccurs="0"
type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>
Maximum allowed time for resolving all XLinks in a single
document.
Default: none
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MaxFileSize" minOccurs="0">
<xs:annotation>
<xs:documentation>
Maximum file size allowed.
Default: 1 MB.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:union memberTypes="xs:positiveInteger unlimitedEnumType"/>
</xs:simpleType>
</xs:element>
<xs:element name="ProxyServerPort" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>
Name and port of proxy server (server:port syntax)
Default: none or value of GDAL_HTTP_PROXY
configuration option.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProxyUserPassword" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>
User name and password to use for proxy server
(username:password syntax)
Default: none or value of GDAL_HTTP_PROXYUSERPW
configuration option.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProxyAuth" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>
Proxy authentification method: one of Basic, NTLM, Digest
or Any.
Default: none or value of GDAL_PROXY_AUTH
configuration option.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CacheDirectory" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>
Name of the cache directory for resolved documents.
If not specified, this defaults to $HOME/.gdal/gmlas_xlink_resolution_cache.
The cache is only used if enabled in DefaultResolution or
particular URLSpecificResolution rules.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DefaultResolution" minOccurs="0">
<xs:annotation>
<xs:documentation>
Default rules that apply for all URLs that are not referenced
by a dedicated URLSpecificResolution rule.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="AllowRemoteDownload" minOccurs="0"
type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether downloading remote resources is allowed.
If false, only locally cached resources will be used.
Default is true.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ResolutionMode" minOccurs="0">
<xs:annotation>
<xs:documentation>
Resolution mode. Must be XMLRawContent currently
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="RawContent">
<xs:annotation>
<xs:documentation>
The content, provided it is of text
nature, is set in a field suffixed with
_raw
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="ResolutionDepth" minOccurs="0">
<xs:annotation>
<xs:documentation>
Resolution depth. Must be 1 currently.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:nonNegativeInteger">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CacheResults" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether resolved documents should be cached.
Default is false.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="enabled" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether default XLink resolution is enabled.
Default is false.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="URLSpecificResolution" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
Particular rule that apply for all URLs starting with
a precise prefix. Setting at least one URLSpecificResolution will cause
a compulsory initial scan of the whole file to be done so
as to identify which xlink:href fields use which URL, so as
to create the relevant OGR fields.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="URLPrefix" minOccurs="0" type="xs:anyURI">
<xs:annotation>
<xs:documentation>
URL prefix. All URLs starting with this string will
match this rule.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HTTPHeader" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
Custom HTTP header to send in the GET request.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Name" type="xs:string">
<xs:annotation>
<xs:documentation>
HTTP header name
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="xs:string">
<xs:annotation>
<xs:documentation>
HTTP header value
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AllowRemoteDownload" minOccurs="0"
type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether downloading remote resources is allowed.
If false, only locally cached resources will be used.
Default is true.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ResolutionMode" minOccurs="0">
<xs:annotation>
<xs:documentation>
Resolution mode.
Default is RawContent.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="RawContent">
<xs:annotation>
<xs:documentation>
The content, provided it is of text
nature, is set in a field suffixed with
_rawcontent
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="FieldsFromXPath">
<xs:annotation>
<xs:documentation>
The content, assumed to be XML, will be
parsed and fields specified with Field
created.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="ResolutionDepth" minOccurs="0">
<xs:annotation>
<xs:documentation>
Resolution depth. Must be 1 currently.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:nonNegativeInteger">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CacheResults" minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Whether resolved documents should be cached.
Default is false.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Field" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
Field to create from parsed XML content. Only used
if ResolutionMode = FieldsFromXPath
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Name" type="xs:string">
<xs:annotation>
<xs:documentation>
Field name
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Type">
<xs:annotation>
<xs:documentation>
Field type
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="string"/>
<xs:enumeration value="integer"/>
<xs:enumeration value="long"/>
<xs:enumeration value="double"/>
<xs:enumeration value="dateTime"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="XPath" type="xs:string">
<xs:annotation>
<xs:documentation>
XPath from the root of the resolved document
from which to extract the value of the field.
Only a restricted subset of the full XPath 1.0
syntax is supported, namely the abbreviated syntax
with the '//' and '@' axis specifiers.
Valid XPath are for example:
- [ns1:]foo/[ns2:]bar: matches a bar element as a
direct child of a foo element, foo being at any
nesting level in the compared XPath.
- [ns1:foo]/@[ns2:]baz: matches a baz attribute of a
foo element, foo being at any nesting level in
the compared XPath
- [ns1:]foo//[ns2:]bar: matches a bar element as a
direct or indirect child of a foo element,
foo being at any nesting level in the compared
XPath.
- /[ns1:]foo/[ns2:]bar: matches a bar element as a
direct child of a foo element, foo being at the
root level.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="IgnoredXPaths" minOccurs="0">
<xs:annotation>
<xs:documentation>
Define elements and attributes that will be ignored when
building OGR layer and field definitions.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="WarnIfIgnoredXPathFoundInDocInstance"
minOccurs="0" type="xs:boolean">
<xs:annotation>
<xs:documentation>
Emit a warning each time an element or attribute is
found in the document parsed, but ignored because
of the ignored XPath defined.
Default is true.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Namespaces" type="namespacesType" minOccurs="0"/>
<xs:element name="XPath" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
A XPath against which elements and attributes found
during schema analysis will be compared. If the
XPath of the element/attribute of the schema
matches this XPath, it will be ignored.
Only a restricted subset of the full XPath 1.0
syntax is supported, namely the abbreviated syntax
with the '//' and '@' axis specifiers.
Valid XPath are for example:
- [ns1:]foo/[ns2:]bar: matches a bar element as a
direct child of a foo element, foo being at any
nesting level in the compared XPath.
- [ns1:foo]/@[ns2:]baz: matches a baz attribute of a
foo element, foo being at any nesting level in
the compared XPath
- [ns1:]foo//[ns2:]bar: matches a bar element as a
direct or indirect child of a foo element,
foo being at any nesting level in the compared
XPath.
- /[ns1:]foo/[ns2:]bar: matches a bar element as a
direct child of a foo element, foo being at the
root level.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="warnIfIgnoredXPathFoundInDocInstance"
type="xs:boolean">
<xs:annotation>
<xs:documentation>
Emit a warning each time an element or attribute is
found in the document parsed, but ignored because
of the ignored XPath defined.
Override the global setting of the
WarnIfIgnoredXPathFoundInDocInstance element
Default is true.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="WriterConfig" minOccurs="0">
<xs:annotation>
<xs:documentation>Configuration of GMLAS writer
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="IndentationSize" minOccurs="0">
<xs:annotation>
<xs:documentation>
Number of spaces used to indent each level of nesting in
XML ouput.
Default is 2.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:nonNegativeInteger">
<xs:maxInclusive value="8"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Comment" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
Comment to add at top of output XML file.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LineFormat" minOccurs="0">
<xs:annotation>
<xs:documentation>
Line format.
Default is platform dependant (CR-LF on Windows, LF otherwise)
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="NATIVE">
<xs:annotation>
<xs:documentation>
Platform dependant (CR-LF on Windows, LF otherwise)
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="CRLF">
<xs:annotation>
<xs:documentation>
Windows end-of-line style : CR-LF
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="FieldsFromXPath">
<xs:annotation>
<xs:documentation>
Unix end-of-line style: LF
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="SRSNameFormat" minOccurs="0">
<xs:annotation>
<xs:documentation>
Format to use for srsName attributes on geometries.
Default is OGC_URL.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="SHORT">
<xs:annotation>
<xs:documentation>
srsName will be in the form AUTHORITY_NAME:AUTHORITY_CODE
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="OGC_URN">
<xs:annotation>
<xs:documentation>
srsName will be in the form urn:ogc:def:crs:AUTHORITY_NAME::AUTHORITY_CODE
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="OGC_URL">
<xs:annotation>
<xs:documentation>
ssrsName will be in the form http://www.opengis.net/def/crs/AUTHORITY_NAME/0/AUTHORITY_CODE
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Wrapping" minOccurs="0">
<xs:annotation>
<xs:documentation>
How to wrap features in a collection.
Default is WFS2_FEATURECOLLECTION
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="WFS2_FEATURECOLLECTION">
<xs:annotation>
<xs:documentation>
Use wfs:FeatureCollection / wfs:member wrapping
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="GMLAS_FEATURECOLLECTION">
<xs:annotation>
<xs:documentation>
Use ogr_gmlas:FeatureCollection / ogr_gmlas:featureMember wrapping
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Timestamp" minOccurs="0" type="xs:dateTime">
<xs:annotation>
<xs:documentation>
User-specified XML dateTime value for timestamp to use in
wfs:FeatureCollection attribute.
Only valid for WRAPPING=WFS2_FEATURECOLLECTION.
Default is current date-time.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WFS20SchemaLocation" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>
Path or URL to OGC WFS 2.0 schema.
Only valid for WRAPPING=WFS2_FEATURECOLLECTION.
Default is http://schemas.opengis.net/wfs/2.0/wfs.xsd.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="unlimitedEnumType">
<xs:restriction base="xs:string">
<xs:enumeration value="unlimited"/>