@jupytergis/schema 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/lib/_interface/forms.json +1987 -0
  2. package/lib/_interface/geoTiffSource.d.ts +31 -0
  3. package/lib/_interface/geojsonsource.d.ts +404 -0
  4. package/lib/_interface/hillshadeLayer.d.ts +20 -0
  5. package/lib/_interface/imageLayer.d.ts +20 -0
  6. package/lib/_interface/imageSource.d.ts +20 -0
  7. package/lib/_interface/jgis.d.ts +140 -0
  8. package/lib/_interface/rasterDemSource.d.ts +28 -0
  9. package/lib/_interface/rasterlayer.d.ts +20 -0
  10. package/lib/_interface/rastersource.d.ts +43 -0
  11. package/lib/_interface/shapefileSource.d.ts +34 -0
  12. package/lib/_interface/vectorTileLayer.d.ts +32 -0
  13. package/lib/_interface/vectorlayer.d.ts +32 -0
  14. package/lib/_interface/vectortilesource.d.ts +35 -0
  15. package/lib/_interface/videoSource.d.ts +20 -0
  16. package/lib/_interface/webGlLayer.d.ts +24 -0
  17. package/lib/doc.d.ts +59 -0
  18. package/lib/doc.js +251 -0
  19. package/lib/index.d.ts +4 -0
  20. package/lib/index.js +4 -0
  21. package/lib/interfaces.d.ts +189 -0
  22. package/lib/interfaces.js +1 -0
  23. package/lib/model.d.ts +142 -0
  24. package/lib/model.js +554 -0
  25. package/lib/schema/geoTiffSource.json +37 -0
  26. package/lib/schema/geojsonsource.json +23 -0
  27. package/lib/schema/hillshadeLayer.json +18 -0
  28. package/lib/schema/imageLayer.json +21 -0
  29. package/lib/schema/imageSource.json +30 -0
  30. package/lib/schema/jgis.json +248 -0
  31. package/lib/schema/rasterDemSource.json +33 -0
  32. package/lib/schema/rasterlayer.json +21 -0
  33. package/lib/schema/rastersource.json +66 -0
  34. package/lib/schema/shapefileSource.json +37 -0
  35. package/lib/schema/vectorTileLayer.json +36 -0
  36. package/lib/schema/vectorlayer.json +36 -0
  37. package/lib/schema/vectortilesource.json +40 -0
  38. package/lib/schema/videoSource.json +33 -0
  39. package/lib/schema/webGlLayer.json +41 -0
  40. package/lib/token.d.ts +6 -0
  41. package/lib/token.js +5 -0
  42. package/lib/types.d.ts +19 -0
  43. package/lib/types.js +22 -0
  44. package/package.json +65 -0
@@ -0,0 +1,1987 @@
1
+ {
2
+ "GeoTiffSource": {
3
+ "type": "object",
4
+ "required": [
5
+ "urls"
6
+ ],
7
+ "additionalProperties": false,
8
+ "properties": {
9
+ "urls": {
10
+ "type": "array",
11
+ "items": {
12
+ "type": "object",
13
+ "properties": {
14
+ "url": {
15
+ "type": "string"
16
+ },
17
+ "min": {
18
+ "type": "number"
19
+ },
20
+ "max": {
21
+ "type": "number"
22
+ }
23
+ }
24
+ },
25
+ "minItems": 1,
26
+ "default": [],
27
+ "description": "URLs"
28
+ },
29
+ "normalize": {
30
+ "type": "boolean",
31
+ "default": true
32
+ },
33
+ "wrapX": {
34
+ "type": "boolean",
35
+ "default": false
36
+ }
37
+ }
38
+ },
39
+ "HillshadeLayer": {
40
+ "type": "object",
41
+ "required": [
42
+ "source"
43
+ ],
44
+ "additionalProperties": false,
45
+ "properties": {
46
+ "source": {
47
+ "type": "string",
48
+ "description": "The id of the source"
49
+ },
50
+ "shadowColor": {
51
+ "type": "string",
52
+ "description": "The color of the the shadows",
53
+ "default": "#473B24"
54
+ }
55
+ }
56
+ },
57
+ "ImageLayer": {
58
+ "type": "object",
59
+ "required": [
60
+ "source"
61
+ ],
62
+ "additionalProperties": false,
63
+ "properties": {
64
+ "source": {
65
+ "type": "string",
66
+ "description": "The id of the source"
67
+ },
68
+ "opacity": {
69
+ "type": "number",
70
+ "description": "The opacity of the source",
71
+ "default": 1,
72
+ "multipleOf": 0.1,
73
+ "minimum": 0,
74
+ "maximum": 1
75
+ }
76
+ }
77
+ },
78
+ "ImageSource": {
79
+ "type": "object",
80
+ "required": [
81
+ "url",
82
+ "coordinates"
83
+ ],
84
+ "additionalProperties": false,
85
+ "properties": {
86
+ "url": {
87
+ "type": "string",
88
+ "readOnly": true,
89
+ "description": "URL that points to an image"
90
+ },
91
+ "coordinates": {
92
+ "type": "array",
93
+ "readOnly": true,
94
+ "items": {
95
+ "type": "array",
96
+ "items": {
97
+ "type": "number"
98
+ },
99
+ "minItems": 2,
100
+ "maxItems": 2
101
+ },
102
+ "minItems": 4,
103
+ "maxItems": 4,
104
+ "default": [],
105
+ "description": "Corners of image specified in longitude, latitude pairs"
106
+ }
107
+ }
108
+ },
109
+ "RasterDemSource": {
110
+ "type": "object",
111
+ "required": [
112
+ "url"
113
+ ],
114
+ "additionalProperties": false,
115
+ "properties": {
116
+ "url": {
117
+ "type": "string",
118
+ "description": "The url to the tile provider"
119
+ },
120
+ "tileSize": {
121
+ "type": "number",
122
+ "description": " The tile size",
123
+ "default": 512
124
+ },
125
+ "attribution": {
126
+ "type": "string",
127
+ "description": "The attribution for the raster-dem source"
128
+ },
129
+ "encoding": {
130
+ "type": "string",
131
+ "enum": [
132
+ "terrarium",
133
+ "mapbox"
134
+ ],
135
+ "default": "mapbox"
136
+ },
137
+ "urlParameters": {
138
+ "type": "object",
139
+ "additionalProperties": {
140
+ "type": "string"
141
+ }
142
+ }
143
+ }
144
+ },
145
+ "RasterLayer": {
146
+ "type": "object",
147
+ "required": [
148
+ "source"
149
+ ],
150
+ "additionalProperties": false,
151
+ "properties": {
152
+ "source": {
153
+ "type": "string",
154
+ "description": "The id of the source"
155
+ },
156
+ "opacity": {
157
+ "type": "number",
158
+ "description": "The opacity of the source",
159
+ "default": 1,
160
+ "multipleOf": 0.1,
161
+ "minimum": 0,
162
+ "maximum": 1
163
+ }
164
+ }
165
+ },
166
+ "RasterSource": {
167
+ "type": "object",
168
+ "required": [
169
+ "url",
170
+ "maxZoom",
171
+ "minZoom"
172
+ ],
173
+ "additionalProperties": false,
174
+ "properties": {
175
+ "url": {
176
+ "type": "string",
177
+ "description": "The url to the tile provider"
178
+ },
179
+ "minZoom": {
180
+ "type": "number",
181
+ "minimum": 0,
182
+ "maximum": 24,
183
+ "readOnly": true,
184
+ "description": "The minimum zoom level for the raster source",
185
+ "default": 0
186
+ },
187
+ "maxZoom": {
188
+ "type": "number",
189
+ "minimum": 0,
190
+ "maximum": 24,
191
+ "readOnly": true,
192
+ "description": "The maximum zoom level for the raster source",
193
+ "default": 24
194
+ },
195
+ "attribution": {
196
+ "type": "string",
197
+ "readOnly": true,
198
+ "description": "The attribution for the raster source",
199
+ "default": ""
200
+ },
201
+ "htmlAttribution": {
202
+ "type": "string",
203
+ "readOnly": true,
204
+ "description": "The html attribution for the raster source",
205
+ "default": ""
206
+ },
207
+ "provider": {
208
+ "type": "string",
209
+ "readOnly": true,
210
+ "description": "The map provider",
211
+ "default": ""
212
+ },
213
+ "bounds": {
214
+ "type": "array",
215
+ "readOnly": true,
216
+ "items": {
217
+ "type": "array",
218
+ "items": {
219
+ "type": "number"
220
+ }
221
+ },
222
+ "default": [],
223
+ "description": "The bounds of the source"
224
+ },
225
+ "urlParameters": {
226
+ "type": "object",
227
+ "additionalProperties": {
228
+ "type": "string"
229
+ },
230
+ "default": {}
231
+ }
232
+ }
233
+ },
234
+ "ShapefileSource": {
235
+ "type": "object",
236
+ "required": [
237
+ "path"
238
+ ],
239
+ "additionalProperties": false,
240
+ "properties": {
241
+ "path": {
242
+ "type": "string",
243
+ "description": "The path to the shapefile (.shp, .zip, or folder URL)."
244
+ },
245
+ "attribution": {
246
+ "type": "string",
247
+ "readOnly": true,
248
+ "description": "The attribution for the shapefile source.",
249
+ "default": ""
250
+ },
251
+ "projection": {
252
+ "type": "string",
253
+ "description": "The projection information for the shapefile (optional).",
254
+ "default": "WGS84"
255
+ },
256
+ "encoding": {
257
+ "type": "string",
258
+ "description": "The encoding used for the shapefile's DBF (optional).",
259
+ "default": "UTF-8"
260
+ },
261
+ "additionalFiles": {
262
+ "type": "object",
263
+ "description": "Additional files associated with the shapefile (e.g., .dbf, .prj, .cpg).",
264
+ "additionalProperties": {
265
+ "type": "string"
266
+ },
267
+ "default": {}
268
+ }
269
+ }
270
+ },
271
+ "VectorTileLayer": {
272
+ "type": "object",
273
+ "required": [
274
+ "source",
275
+ "type"
276
+ ],
277
+ "additionalProperties": false,
278
+ "properties": {
279
+ "source": {
280
+ "type": "string",
281
+ "description": "The id of the source"
282
+ },
283
+ "type": {
284
+ "type": "string",
285
+ "enum": [
286
+ "circle",
287
+ "fill",
288
+ "line"
289
+ ],
290
+ "default": "line",
291
+ "description": "The type of vector layer"
292
+ },
293
+ "sourceLayer": {
294
+ "type": "string",
295
+ "description": "The source layer to use"
296
+ },
297
+ "color": {
298
+ "type": "string",
299
+ "description": "The color of the the object",
300
+ "default": "#FF0000"
301
+ },
302
+ "opacity": {
303
+ "type": "number",
304
+ "description": "The opacity of the the object",
305
+ "default": 1,
306
+ "multipleOf": 0.1,
307
+ "minimum": 0,
308
+ "maximum": 1
309
+ }
310
+ }
311
+ },
312
+ "VectorLayer": {
313
+ "type": "object",
314
+ "required": [
315
+ "source",
316
+ "type"
317
+ ],
318
+ "additionalProperties": false,
319
+ "properties": {
320
+ "source": {
321
+ "type": "string",
322
+ "description": "The id of the source"
323
+ },
324
+ "type": {
325
+ "type": "string",
326
+ "enum": [
327
+ "circle",
328
+ "fill",
329
+ "line"
330
+ ],
331
+ "default": "line",
332
+ "description": "The type of vector layer"
333
+ },
334
+ "sourceLayer": {
335
+ "type": "string",
336
+ "description": "The source layer to use"
337
+ },
338
+ "color": {
339
+ "type": "string",
340
+ "description": "The color of the the object",
341
+ "default": "#FF0000"
342
+ },
343
+ "opacity": {
344
+ "type": "number",
345
+ "description": "The opacity of the the object",
346
+ "default": 1,
347
+ "multipleOf": 0.1,
348
+ "minimum": 0,
349
+ "maximum": 1
350
+ }
351
+ }
352
+ },
353
+ "VectorTileSource": {
354
+ "type": "object",
355
+ "required": [
356
+ "url",
357
+ "maxZoom",
358
+ "minZoom"
359
+ ],
360
+ "additionalProperties": false,
361
+ "properties": {
362
+ "url": {
363
+ "type": "string",
364
+ "description": "The url to the tile provider"
365
+ },
366
+ "minZoom": {
367
+ "type": "number",
368
+ "minimum": 0,
369
+ "maximum": 24,
370
+ "description": "The minimum zoom level for the vector source"
371
+ },
372
+ "maxZoom": {
373
+ "type": "number",
374
+ "minimum": 0,
375
+ "maximum": 24,
376
+ "description": "The maximum zoom level for the vector source"
377
+ },
378
+ "attribution": {
379
+ "type": "string",
380
+ "description": "The attribution for the vector source"
381
+ },
382
+ "provider": {
383
+ "type": "string",
384
+ "readOnly": true,
385
+ "description": "The map provider"
386
+ },
387
+ "urlParameters": {
388
+ "type": "object",
389
+ "additionalProperties": {
390
+ "type": "string"
391
+ }
392
+ }
393
+ }
394
+ },
395
+ "VideoSource": {
396
+ "type": "object",
397
+ "required": [
398
+ "urls",
399
+ "coordinates"
400
+ ],
401
+ "additionalProperties": false,
402
+ "properties": {
403
+ "urls": {
404
+ "type": "array",
405
+ "items": {
406
+ "type": "string"
407
+ },
408
+ "minItems": 1,
409
+ "default": [],
410
+ "description": "URLs to video content in order of preferred format"
411
+ },
412
+ "coordinates": {
413
+ "type": "array",
414
+ "items": {
415
+ "type": "array",
416
+ "items": {
417
+ "type": "number"
418
+ },
419
+ "minItems": 2,
420
+ "maxItems": 2
421
+ },
422
+ "minItems": 4,
423
+ "maxItems": 4,
424
+ "default": [],
425
+ "description": "Corners of video specified in longitude, latitude pairs"
426
+ }
427
+ }
428
+ },
429
+ "WebGlLayer": {
430
+ "type": "object",
431
+ "required": [
432
+ "source"
433
+ ],
434
+ "additionalProperties": false,
435
+ "properties": {
436
+ "source": {
437
+ "type": "string",
438
+ "description": "The id of the source"
439
+ },
440
+ "opacity": {
441
+ "type": "number",
442
+ "description": "The opacity of the source",
443
+ "default": 1,
444
+ "multipleOf": 0.1,
445
+ "minimum": 0,
446
+ "maximum": 1
447
+ },
448
+ "color": {
449
+ "oneOf": [
450
+ {
451
+ "type": "string"
452
+ },
453
+ {
454
+ "type": "array",
455
+ "items": {
456
+ "anyOf": [
457
+ {
458
+ "type": "string"
459
+ },
460
+ {
461
+ "type": "number"
462
+ },
463
+ {
464
+ "type": "array",
465
+ "items": {
466
+ "type": "string"
467
+ }
468
+ }
469
+ ]
470
+ }
471
+ }
472
+ ],
473
+ "description": "The color of the the object",
474
+ "default": "#FF0000"
475
+ }
476
+ }
477
+ },
478
+ "GeoJSONSource": {
479
+ "type": "object",
480
+ "required": [],
481
+ "additionalProperties": false,
482
+ "properties": {
483
+ "path": {
484
+ "type": "string",
485
+ "description": "The local path to a GeoJSON file"
486
+ },
487
+ "data": {
488
+ "type": "object",
489
+ "description": "The GeoJSON data",
490
+ "$schema": "http://json-schema.org/draft-07/schema#",
491
+ "$id": "https://geojson.org/schema/GeoJSON.json",
492
+ "title": "GeoJSON",
493
+ "oneOf": [
494
+ {
495
+ "title": "GeoJSON Point",
496
+ "type": "object",
497
+ "required": [
498
+ "type",
499
+ "coordinates"
500
+ ],
501
+ "properties": {
502
+ "type": {
503
+ "type": "string",
504
+ "enum": [
505
+ "Point"
506
+ ]
507
+ },
508
+ "coordinates": {
509
+ "type": "array",
510
+ "minItems": 2,
511
+ "items": {
512
+ "type": "number"
513
+ }
514
+ },
515
+ "bbox": {
516
+ "type": "array",
517
+ "minItems": 4,
518
+ "items": {
519
+ "type": "number"
520
+ }
521
+ }
522
+ }
523
+ },
524
+ {
525
+ "title": "GeoJSON LineString",
526
+ "type": "object",
527
+ "required": [
528
+ "type",
529
+ "coordinates"
530
+ ],
531
+ "properties": {
532
+ "type": {
533
+ "type": "string",
534
+ "enum": [
535
+ "LineString"
536
+ ]
537
+ },
538
+ "coordinates": {
539
+ "type": "array",
540
+ "minItems": 2,
541
+ "items": {
542
+ "type": "array",
543
+ "minItems": 2,
544
+ "items": {
545
+ "type": "number"
546
+ }
547
+ }
548
+ },
549
+ "bbox": {
550
+ "type": "array",
551
+ "minItems": 4,
552
+ "items": {
553
+ "type": "number"
554
+ }
555
+ }
556
+ }
557
+ },
558
+ {
559
+ "title": "GeoJSON Polygon",
560
+ "type": "object",
561
+ "required": [
562
+ "type",
563
+ "coordinates"
564
+ ],
565
+ "properties": {
566
+ "type": {
567
+ "type": "string",
568
+ "enum": [
569
+ "Polygon"
570
+ ]
571
+ },
572
+ "coordinates": {
573
+ "type": "array",
574
+ "items": {
575
+ "type": "array",
576
+ "minItems": 4,
577
+ "items": {
578
+ "type": "array",
579
+ "minItems": 2,
580
+ "items": {
581
+ "type": "number"
582
+ }
583
+ }
584
+ }
585
+ },
586
+ "bbox": {
587
+ "type": "array",
588
+ "minItems": 4,
589
+ "items": {
590
+ "type": "number"
591
+ }
592
+ }
593
+ }
594
+ },
595
+ {
596
+ "title": "GeoJSON MultiPoint",
597
+ "type": "object",
598
+ "required": [
599
+ "type",
600
+ "coordinates"
601
+ ],
602
+ "properties": {
603
+ "type": {
604
+ "type": "string",
605
+ "enum": [
606
+ "MultiPoint"
607
+ ]
608
+ },
609
+ "coordinates": {
610
+ "type": "array",
611
+ "items": {
612
+ "type": "array",
613
+ "minItems": 2,
614
+ "items": {
615
+ "type": "number"
616
+ }
617
+ }
618
+ },
619
+ "bbox": {
620
+ "type": "array",
621
+ "minItems": 4,
622
+ "items": {
623
+ "type": "number"
624
+ }
625
+ }
626
+ }
627
+ },
628
+ {
629
+ "title": "GeoJSON MultiLineString",
630
+ "type": "object",
631
+ "required": [
632
+ "type",
633
+ "coordinates"
634
+ ],
635
+ "properties": {
636
+ "type": {
637
+ "type": "string",
638
+ "enum": [
639
+ "MultiLineString"
640
+ ]
641
+ },
642
+ "coordinates": {
643
+ "type": "array",
644
+ "items": {
645
+ "type": "array",
646
+ "minItems": 2,
647
+ "items": {
648
+ "type": "array",
649
+ "minItems": 2,
650
+ "items": {
651
+ "type": "number"
652
+ }
653
+ }
654
+ }
655
+ },
656
+ "bbox": {
657
+ "type": "array",
658
+ "minItems": 4,
659
+ "items": {
660
+ "type": "number"
661
+ }
662
+ }
663
+ }
664
+ },
665
+ {
666
+ "title": "GeoJSON MultiPolygon",
667
+ "type": "object",
668
+ "required": [
669
+ "type",
670
+ "coordinates"
671
+ ],
672
+ "properties": {
673
+ "type": {
674
+ "type": "string",
675
+ "enum": [
676
+ "MultiPolygon"
677
+ ]
678
+ },
679
+ "coordinates": {
680
+ "type": "array",
681
+ "items": {
682
+ "type": "array",
683
+ "items": {
684
+ "type": "array",
685
+ "minItems": 4,
686
+ "items": {
687
+ "type": "array",
688
+ "minItems": 2,
689
+ "items": {
690
+ "type": "number"
691
+ }
692
+ }
693
+ }
694
+ }
695
+ },
696
+ "bbox": {
697
+ "type": "array",
698
+ "minItems": 4,
699
+ "items": {
700
+ "type": "number"
701
+ }
702
+ }
703
+ }
704
+ },
705
+ {
706
+ "title": "GeoJSON GeometryCollection",
707
+ "type": "object",
708
+ "required": [
709
+ "type",
710
+ "geometries"
711
+ ],
712
+ "properties": {
713
+ "type": {
714
+ "type": "string",
715
+ "enum": [
716
+ "GeometryCollection"
717
+ ]
718
+ },
719
+ "geometries": {
720
+ "type": "array",
721
+ "items": {
722
+ "oneOf": [
723
+ {
724
+ "title": "GeoJSON Point",
725
+ "type": "object",
726
+ "required": [
727
+ "type",
728
+ "coordinates"
729
+ ],
730
+ "properties": {
731
+ "type": {
732
+ "type": "string",
733
+ "enum": [
734
+ "Point"
735
+ ]
736
+ },
737
+ "coordinates": {
738
+ "type": "array",
739
+ "minItems": 2,
740
+ "items": {
741
+ "type": "number"
742
+ }
743
+ },
744
+ "bbox": {
745
+ "type": "array",
746
+ "minItems": 4,
747
+ "items": {
748
+ "type": "number"
749
+ }
750
+ }
751
+ }
752
+ },
753
+ {
754
+ "title": "GeoJSON LineString",
755
+ "type": "object",
756
+ "required": [
757
+ "type",
758
+ "coordinates"
759
+ ],
760
+ "properties": {
761
+ "type": {
762
+ "type": "string",
763
+ "enum": [
764
+ "LineString"
765
+ ]
766
+ },
767
+ "coordinates": {
768
+ "type": "array",
769
+ "minItems": 2,
770
+ "items": {
771
+ "type": "array",
772
+ "minItems": 2,
773
+ "items": {
774
+ "type": "number"
775
+ }
776
+ }
777
+ },
778
+ "bbox": {
779
+ "type": "array",
780
+ "minItems": 4,
781
+ "items": {
782
+ "type": "number"
783
+ }
784
+ }
785
+ }
786
+ },
787
+ {
788
+ "title": "GeoJSON Polygon",
789
+ "type": "object",
790
+ "required": [
791
+ "type",
792
+ "coordinates"
793
+ ],
794
+ "properties": {
795
+ "type": {
796
+ "type": "string",
797
+ "enum": [
798
+ "Polygon"
799
+ ]
800
+ },
801
+ "coordinates": {
802
+ "type": "array",
803
+ "items": {
804
+ "type": "array",
805
+ "minItems": 4,
806
+ "items": {
807
+ "type": "array",
808
+ "minItems": 2,
809
+ "items": {
810
+ "type": "number"
811
+ }
812
+ }
813
+ }
814
+ },
815
+ "bbox": {
816
+ "type": "array",
817
+ "minItems": 4,
818
+ "items": {
819
+ "type": "number"
820
+ }
821
+ }
822
+ }
823
+ },
824
+ {
825
+ "title": "GeoJSON MultiPoint",
826
+ "type": "object",
827
+ "required": [
828
+ "type",
829
+ "coordinates"
830
+ ],
831
+ "properties": {
832
+ "type": {
833
+ "type": "string",
834
+ "enum": [
835
+ "MultiPoint"
836
+ ]
837
+ },
838
+ "coordinates": {
839
+ "type": "array",
840
+ "items": {
841
+ "type": "array",
842
+ "minItems": 2,
843
+ "items": {
844
+ "type": "number"
845
+ }
846
+ }
847
+ },
848
+ "bbox": {
849
+ "type": "array",
850
+ "minItems": 4,
851
+ "items": {
852
+ "type": "number"
853
+ }
854
+ }
855
+ }
856
+ },
857
+ {
858
+ "title": "GeoJSON MultiLineString",
859
+ "type": "object",
860
+ "required": [
861
+ "type",
862
+ "coordinates"
863
+ ],
864
+ "properties": {
865
+ "type": {
866
+ "type": "string",
867
+ "enum": [
868
+ "MultiLineString"
869
+ ]
870
+ },
871
+ "coordinates": {
872
+ "type": "array",
873
+ "items": {
874
+ "type": "array",
875
+ "minItems": 2,
876
+ "items": {
877
+ "type": "array",
878
+ "minItems": 2,
879
+ "items": {
880
+ "type": "number"
881
+ }
882
+ }
883
+ }
884
+ },
885
+ "bbox": {
886
+ "type": "array",
887
+ "minItems": 4,
888
+ "items": {
889
+ "type": "number"
890
+ }
891
+ }
892
+ }
893
+ },
894
+ {
895
+ "title": "GeoJSON MultiPolygon",
896
+ "type": "object",
897
+ "required": [
898
+ "type",
899
+ "coordinates"
900
+ ],
901
+ "properties": {
902
+ "type": {
903
+ "type": "string",
904
+ "enum": [
905
+ "MultiPolygon"
906
+ ]
907
+ },
908
+ "coordinates": {
909
+ "type": "array",
910
+ "items": {
911
+ "type": "array",
912
+ "items": {
913
+ "type": "array",
914
+ "minItems": 4,
915
+ "items": {
916
+ "type": "array",
917
+ "minItems": 2,
918
+ "items": {
919
+ "type": "number"
920
+ }
921
+ }
922
+ }
923
+ }
924
+ },
925
+ "bbox": {
926
+ "type": "array",
927
+ "minItems": 4,
928
+ "items": {
929
+ "type": "number"
930
+ }
931
+ }
932
+ }
933
+ }
934
+ ]
935
+ }
936
+ },
937
+ "bbox": {
938
+ "type": "array",
939
+ "minItems": 4,
940
+ "items": {
941
+ "type": "number"
942
+ }
943
+ }
944
+ }
945
+ },
946
+ {
947
+ "title": "GeoJSON Feature",
948
+ "type": "object",
949
+ "required": [
950
+ "type",
951
+ "properties",
952
+ "geometry"
953
+ ],
954
+ "properties": {
955
+ "type": {
956
+ "type": "string",
957
+ "enum": [
958
+ "Feature"
959
+ ]
960
+ },
961
+ "id": {
962
+ "oneOf": [
963
+ {
964
+ "type": "number"
965
+ },
966
+ {
967
+ "type": "string"
968
+ }
969
+ ]
970
+ },
971
+ "properties": {
972
+ "oneOf": [
973
+ {
974
+ "type": "null"
975
+ },
976
+ {
977
+ "type": "object"
978
+ }
979
+ ]
980
+ },
981
+ "geometry": {
982
+ "oneOf": [
983
+ {
984
+ "type": "null"
985
+ },
986
+ {
987
+ "title": "GeoJSON Point",
988
+ "type": "object",
989
+ "required": [
990
+ "type",
991
+ "coordinates"
992
+ ],
993
+ "properties": {
994
+ "type": {
995
+ "type": "string",
996
+ "enum": [
997
+ "Point"
998
+ ]
999
+ },
1000
+ "coordinates": {
1001
+ "type": "array",
1002
+ "minItems": 2,
1003
+ "items": {
1004
+ "type": "number"
1005
+ }
1006
+ },
1007
+ "bbox": {
1008
+ "type": "array",
1009
+ "minItems": 4,
1010
+ "items": {
1011
+ "type": "number"
1012
+ }
1013
+ }
1014
+ }
1015
+ },
1016
+ {
1017
+ "title": "GeoJSON LineString",
1018
+ "type": "object",
1019
+ "required": [
1020
+ "type",
1021
+ "coordinates"
1022
+ ],
1023
+ "properties": {
1024
+ "type": {
1025
+ "type": "string",
1026
+ "enum": [
1027
+ "LineString"
1028
+ ]
1029
+ },
1030
+ "coordinates": {
1031
+ "type": "array",
1032
+ "minItems": 2,
1033
+ "items": {
1034
+ "type": "array",
1035
+ "minItems": 2,
1036
+ "items": {
1037
+ "type": "number"
1038
+ }
1039
+ }
1040
+ },
1041
+ "bbox": {
1042
+ "type": "array",
1043
+ "minItems": 4,
1044
+ "items": {
1045
+ "type": "number"
1046
+ }
1047
+ }
1048
+ }
1049
+ },
1050
+ {
1051
+ "title": "GeoJSON Polygon",
1052
+ "type": "object",
1053
+ "required": [
1054
+ "type",
1055
+ "coordinates"
1056
+ ],
1057
+ "properties": {
1058
+ "type": {
1059
+ "type": "string",
1060
+ "enum": [
1061
+ "Polygon"
1062
+ ]
1063
+ },
1064
+ "coordinates": {
1065
+ "type": "array",
1066
+ "items": {
1067
+ "type": "array",
1068
+ "minItems": 4,
1069
+ "items": {
1070
+ "type": "array",
1071
+ "minItems": 2,
1072
+ "items": {
1073
+ "type": "number"
1074
+ }
1075
+ }
1076
+ }
1077
+ },
1078
+ "bbox": {
1079
+ "type": "array",
1080
+ "minItems": 4,
1081
+ "items": {
1082
+ "type": "number"
1083
+ }
1084
+ }
1085
+ }
1086
+ },
1087
+ {
1088
+ "title": "GeoJSON MultiPoint",
1089
+ "type": "object",
1090
+ "required": [
1091
+ "type",
1092
+ "coordinates"
1093
+ ],
1094
+ "properties": {
1095
+ "type": {
1096
+ "type": "string",
1097
+ "enum": [
1098
+ "MultiPoint"
1099
+ ]
1100
+ },
1101
+ "coordinates": {
1102
+ "type": "array",
1103
+ "items": {
1104
+ "type": "array",
1105
+ "minItems": 2,
1106
+ "items": {
1107
+ "type": "number"
1108
+ }
1109
+ }
1110
+ },
1111
+ "bbox": {
1112
+ "type": "array",
1113
+ "minItems": 4,
1114
+ "items": {
1115
+ "type": "number"
1116
+ }
1117
+ }
1118
+ }
1119
+ },
1120
+ {
1121
+ "title": "GeoJSON MultiLineString",
1122
+ "type": "object",
1123
+ "required": [
1124
+ "type",
1125
+ "coordinates"
1126
+ ],
1127
+ "properties": {
1128
+ "type": {
1129
+ "type": "string",
1130
+ "enum": [
1131
+ "MultiLineString"
1132
+ ]
1133
+ },
1134
+ "coordinates": {
1135
+ "type": "array",
1136
+ "items": {
1137
+ "type": "array",
1138
+ "minItems": 2,
1139
+ "items": {
1140
+ "type": "array",
1141
+ "minItems": 2,
1142
+ "items": {
1143
+ "type": "number"
1144
+ }
1145
+ }
1146
+ }
1147
+ },
1148
+ "bbox": {
1149
+ "type": "array",
1150
+ "minItems": 4,
1151
+ "items": {
1152
+ "type": "number"
1153
+ }
1154
+ }
1155
+ }
1156
+ },
1157
+ {
1158
+ "title": "GeoJSON MultiPolygon",
1159
+ "type": "object",
1160
+ "required": [
1161
+ "type",
1162
+ "coordinates"
1163
+ ],
1164
+ "properties": {
1165
+ "type": {
1166
+ "type": "string",
1167
+ "enum": [
1168
+ "MultiPolygon"
1169
+ ]
1170
+ },
1171
+ "coordinates": {
1172
+ "type": "array",
1173
+ "items": {
1174
+ "type": "array",
1175
+ "items": {
1176
+ "type": "array",
1177
+ "minItems": 4,
1178
+ "items": {
1179
+ "type": "array",
1180
+ "minItems": 2,
1181
+ "items": {
1182
+ "type": "number"
1183
+ }
1184
+ }
1185
+ }
1186
+ }
1187
+ },
1188
+ "bbox": {
1189
+ "type": "array",
1190
+ "minItems": 4,
1191
+ "items": {
1192
+ "type": "number"
1193
+ }
1194
+ }
1195
+ }
1196
+ },
1197
+ {
1198
+ "title": "GeoJSON GeometryCollection",
1199
+ "type": "object",
1200
+ "required": [
1201
+ "type",
1202
+ "geometries"
1203
+ ],
1204
+ "properties": {
1205
+ "type": {
1206
+ "type": "string",
1207
+ "enum": [
1208
+ "GeometryCollection"
1209
+ ]
1210
+ },
1211
+ "geometries": {
1212
+ "type": "array",
1213
+ "items": {
1214
+ "oneOf": [
1215
+ {
1216
+ "title": "GeoJSON Point",
1217
+ "type": "object",
1218
+ "required": [
1219
+ "type",
1220
+ "coordinates"
1221
+ ],
1222
+ "properties": {
1223
+ "type": {
1224
+ "type": "string",
1225
+ "enum": [
1226
+ "Point"
1227
+ ]
1228
+ },
1229
+ "coordinates": {
1230
+ "type": "array",
1231
+ "minItems": 2,
1232
+ "items": {
1233
+ "type": "number"
1234
+ }
1235
+ },
1236
+ "bbox": {
1237
+ "type": "array",
1238
+ "minItems": 4,
1239
+ "items": {
1240
+ "type": "number"
1241
+ }
1242
+ }
1243
+ }
1244
+ },
1245
+ {
1246
+ "title": "GeoJSON LineString",
1247
+ "type": "object",
1248
+ "required": [
1249
+ "type",
1250
+ "coordinates"
1251
+ ],
1252
+ "properties": {
1253
+ "type": {
1254
+ "type": "string",
1255
+ "enum": [
1256
+ "LineString"
1257
+ ]
1258
+ },
1259
+ "coordinates": {
1260
+ "type": "array",
1261
+ "minItems": 2,
1262
+ "items": {
1263
+ "type": "array",
1264
+ "minItems": 2,
1265
+ "items": {
1266
+ "type": "number"
1267
+ }
1268
+ }
1269
+ },
1270
+ "bbox": {
1271
+ "type": "array",
1272
+ "minItems": 4,
1273
+ "items": {
1274
+ "type": "number"
1275
+ }
1276
+ }
1277
+ }
1278
+ },
1279
+ {
1280
+ "title": "GeoJSON Polygon",
1281
+ "type": "object",
1282
+ "required": [
1283
+ "type",
1284
+ "coordinates"
1285
+ ],
1286
+ "properties": {
1287
+ "type": {
1288
+ "type": "string",
1289
+ "enum": [
1290
+ "Polygon"
1291
+ ]
1292
+ },
1293
+ "coordinates": {
1294
+ "type": "array",
1295
+ "items": {
1296
+ "type": "array",
1297
+ "minItems": 4,
1298
+ "items": {
1299
+ "type": "array",
1300
+ "minItems": 2,
1301
+ "items": {
1302
+ "type": "number"
1303
+ }
1304
+ }
1305
+ }
1306
+ },
1307
+ "bbox": {
1308
+ "type": "array",
1309
+ "minItems": 4,
1310
+ "items": {
1311
+ "type": "number"
1312
+ }
1313
+ }
1314
+ }
1315
+ },
1316
+ {
1317
+ "title": "GeoJSON MultiPoint",
1318
+ "type": "object",
1319
+ "required": [
1320
+ "type",
1321
+ "coordinates"
1322
+ ],
1323
+ "properties": {
1324
+ "type": {
1325
+ "type": "string",
1326
+ "enum": [
1327
+ "MultiPoint"
1328
+ ]
1329
+ },
1330
+ "coordinates": {
1331
+ "type": "array",
1332
+ "items": {
1333
+ "type": "array",
1334
+ "minItems": 2,
1335
+ "items": {
1336
+ "type": "number"
1337
+ }
1338
+ }
1339
+ },
1340
+ "bbox": {
1341
+ "type": "array",
1342
+ "minItems": 4,
1343
+ "items": {
1344
+ "type": "number"
1345
+ }
1346
+ }
1347
+ }
1348
+ },
1349
+ {
1350
+ "title": "GeoJSON MultiLineString",
1351
+ "type": "object",
1352
+ "required": [
1353
+ "type",
1354
+ "coordinates"
1355
+ ],
1356
+ "properties": {
1357
+ "type": {
1358
+ "type": "string",
1359
+ "enum": [
1360
+ "MultiLineString"
1361
+ ]
1362
+ },
1363
+ "coordinates": {
1364
+ "type": "array",
1365
+ "items": {
1366
+ "type": "array",
1367
+ "minItems": 2,
1368
+ "items": {
1369
+ "type": "array",
1370
+ "minItems": 2,
1371
+ "items": {
1372
+ "type": "number"
1373
+ }
1374
+ }
1375
+ }
1376
+ },
1377
+ "bbox": {
1378
+ "type": "array",
1379
+ "minItems": 4,
1380
+ "items": {
1381
+ "type": "number"
1382
+ }
1383
+ }
1384
+ }
1385
+ },
1386
+ {
1387
+ "title": "GeoJSON MultiPolygon",
1388
+ "type": "object",
1389
+ "required": [
1390
+ "type",
1391
+ "coordinates"
1392
+ ],
1393
+ "properties": {
1394
+ "type": {
1395
+ "type": "string",
1396
+ "enum": [
1397
+ "MultiPolygon"
1398
+ ]
1399
+ },
1400
+ "coordinates": {
1401
+ "type": "array",
1402
+ "items": {
1403
+ "type": "array",
1404
+ "items": {
1405
+ "type": "array",
1406
+ "minItems": 4,
1407
+ "items": {
1408
+ "type": "array",
1409
+ "minItems": 2,
1410
+ "items": {
1411
+ "type": "number"
1412
+ }
1413
+ }
1414
+ }
1415
+ }
1416
+ },
1417
+ "bbox": {
1418
+ "type": "array",
1419
+ "minItems": 4,
1420
+ "items": {
1421
+ "type": "number"
1422
+ }
1423
+ }
1424
+ }
1425
+ }
1426
+ ]
1427
+ }
1428
+ },
1429
+ "bbox": {
1430
+ "type": "array",
1431
+ "minItems": 4,
1432
+ "items": {
1433
+ "type": "number"
1434
+ }
1435
+ }
1436
+ }
1437
+ }
1438
+ ]
1439
+ },
1440
+ "bbox": {
1441
+ "type": "array",
1442
+ "minItems": 4,
1443
+ "items": {
1444
+ "type": "number"
1445
+ }
1446
+ }
1447
+ }
1448
+ },
1449
+ {
1450
+ "title": "GeoJSON FeatureCollection",
1451
+ "type": "object",
1452
+ "required": [
1453
+ "type",
1454
+ "features"
1455
+ ],
1456
+ "properties": {
1457
+ "type": {
1458
+ "type": "string",
1459
+ "enum": [
1460
+ "FeatureCollection"
1461
+ ]
1462
+ },
1463
+ "features": {
1464
+ "type": "array",
1465
+ "items": {
1466
+ "title": "GeoJSON Feature",
1467
+ "type": "object",
1468
+ "required": [
1469
+ "type",
1470
+ "properties",
1471
+ "geometry"
1472
+ ],
1473
+ "properties": {
1474
+ "type": {
1475
+ "type": "string",
1476
+ "enum": [
1477
+ "Feature"
1478
+ ]
1479
+ },
1480
+ "id": {
1481
+ "oneOf": [
1482
+ {
1483
+ "type": "number"
1484
+ },
1485
+ {
1486
+ "type": "string"
1487
+ }
1488
+ ]
1489
+ },
1490
+ "properties": {
1491
+ "oneOf": [
1492
+ {
1493
+ "type": "null"
1494
+ },
1495
+ {
1496
+ "type": "object"
1497
+ }
1498
+ ]
1499
+ },
1500
+ "geometry": {
1501
+ "oneOf": [
1502
+ {
1503
+ "type": "null"
1504
+ },
1505
+ {
1506
+ "title": "GeoJSON Point",
1507
+ "type": "object",
1508
+ "required": [
1509
+ "type",
1510
+ "coordinates"
1511
+ ],
1512
+ "properties": {
1513
+ "type": {
1514
+ "type": "string",
1515
+ "enum": [
1516
+ "Point"
1517
+ ]
1518
+ },
1519
+ "coordinates": {
1520
+ "type": "array",
1521
+ "minItems": 2,
1522
+ "items": {
1523
+ "type": "number"
1524
+ }
1525
+ },
1526
+ "bbox": {
1527
+ "type": "array",
1528
+ "minItems": 4,
1529
+ "items": {
1530
+ "type": "number"
1531
+ }
1532
+ }
1533
+ }
1534
+ },
1535
+ {
1536
+ "title": "GeoJSON LineString",
1537
+ "type": "object",
1538
+ "required": [
1539
+ "type",
1540
+ "coordinates"
1541
+ ],
1542
+ "properties": {
1543
+ "type": {
1544
+ "type": "string",
1545
+ "enum": [
1546
+ "LineString"
1547
+ ]
1548
+ },
1549
+ "coordinates": {
1550
+ "type": "array",
1551
+ "minItems": 2,
1552
+ "items": {
1553
+ "type": "array",
1554
+ "minItems": 2,
1555
+ "items": {
1556
+ "type": "number"
1557
+ }
1558
+ }
1559
+ },
1560
+ "bbox": {
1561
+ "type": "array",
1562
+ "minItems": 4,
1563
+ "items": {
1564
+ "type": "number"
1565
+ }
1566
+ }
1567
+ }
1568
+ },
1569
+ {
1570
+ "title": "GeoJSON Polygon",
1571
+ "type": "object",
1572
+ "required": [
1573
+ "type",
1574
+ "coordinates"
1575
+ ],
1576
+ "properties": {
1577
+ "type": {
1578
+ "type": "string",
1579
+ "enum": [
1580
+ "Polygon"
1581
+ ]
1582
+ },
1583
+ "coordinates": {
1584
+ "type": "array",
1585
+ "items": {
1586
+ "type": "array",
1587
+ "minItems": 4,
1588
+ "items": {
1589
+ "type": "array",
1590
+ "minItems": 2,
1591
+ "items": {
1592
+ "type": "number"
1593
+ }
1594
+ }
1595
+ }
1596
+ },
1597
+ "bbox": {
1598
+ "type": "array",
1599
+ "minItems": 4,
1600
+ "items": {
1601
+ "type": "number"
1602
+ }
1603
+ }
1604
+ }
1605
+ },
1606
+ {
1607
+ "title": "GeoJSON MultiPoint",
1608
+ "type": "object",
1609
+ "required": [
1610
+ "type",
1611
+ "coordinates"
1612
+ ],
1613
+ "properties": {
1614
+ "type": {
1615
+ "type": "string",
1616
+ "enum": [
1617
+ "MultiPoint"
1618
+ ]
1619
+ },
1620
+ "coordinates": {
1621
+ "type": "array",
1622
+ "items": {
1623
+ "type": "array",
1624
+ "minItems": 2,
1625
+ "items": {
1626
+ "type": "number"
1627
+ }
1628
+ }
1629
+ },
1630
+ "bbox": {
1631
+ "type": "array",
1632
+ "minItems": 4,
1633
+ "items": {
1634
+ "type": "number"
1635
+ }
1636
+ }
1637
+ }
1638
+ },
1639
+ {
1640
+ "title": "GeoJSON MultiLineString",
1641
+ "type": "object",
1642
+ "required": [
1643
+ "type",
1644
+ "coordinates"
1645
+ ],
1646
+ "properties": {
1647
+ "type": {
1648
+ "type": "string",
1649
+ "enum": [
1650
+ "MultiLineString"
1651
+ ]
1652
+ },
1653
+ "coordinates": {
1654
+ "type": "array",
1655
+ "items": {
1656
+ "type": "array",
1657
+ "minItems": 2,
1658
+ "items": {
1659
+ "type": "array",
1660
+ "minItems": 2,
1661
+ "items": {
1662
+ "type": "number"
1663
+ }
1664
+ }
1665
+ }
1666
+ },
1667
+ "bbox": {
1668
+ "type": "array",
1669
+ "minItems": 4,
1670
+ "items": {
1671
+ "type": "number"
1672
+ }
1673
+ }
1674
+ }
1675
+ },
1676
+ {
1677
+ "title": "GeoJSON MultiPolygon",
1678
+ "type": "object",
1679
+ "required": [
1680
+ "type",
1681
+ "coordinates"
1682
+ ],
1683
+ "properties": {
1684
+ "type": {
1685
+ "type": "string",
1686
+ "enum": [
1687
+ "MultiPolygon"
1688
+ ]
1689
+ },
1690
+ "coordinates": {
1691
+ "type": "array",
1692
+ "items": {
1693
+ "type": "array",
1694
+ "items": {
1695
+ "type": "array",
1696
+ "minItems": 4,
1697
+ "items": {
1698
+ "type": "array",
1699
+ "minItems": 2,
1700
+ "items": {
1701
+ "type": "number"
1702
+ }
1703
+ }
1704
+ }
1705
+ }
1706
+ },
1707
+ "bbox": {
1708
+ "type": "array",
1709
+ "minItems": 4,
1710
+ "items": {
1711
+ "type": "number"
1712
+ }
1713
+ }
1714
+ }
1715
+ },
1716
+ {
1717
+ "title": "GeoJSON GeometryCollection",
1718
+ "type": "object",
1719
+ "required": [
1720
+ "type",
1721
+ "geometries"
1722
+ ],
1723
+ "properties": {
1724
+ "type": {
1725
+ "type": "string",
1726
+ "enum": [
1727
+ "GeometryCollection"
1728
+ ]
1729
+ },
1730
+ "geometries": {
1731
+ "type": "array",
1732
+ "items": {
1733
+ "oneOf": [
1734
+ {
1735
+ "title": "GeoJSON Point",
1736
+ "type": "object",
1737
+ "required": [
1738
+ "type",
1739
+ "coordinates"
1740
+ ],
1741
+ "properties": {
1742
+ "type": {
1743
+ "type": "string",
1744
+ "enum": [
1745
+ "Point"
1746
+ ]
1747
+ },
1748
+ "coordinates": {
1749
+ "type": "array",
1750
+ "minItems": 2,
1751
+ "items": {
1752
+ "type": "number"
1753
+ }
1754
+ },
1755
+ "bbox": {
1756
+ "type": "array",
1757
+ "minItems": 4,
1758
+ "items": {
1759
+ "type": "number"
1760
+ }
1761
+ }
1762
+ }
1763
+ },
1764
+ {
1765
+ "title": "GeoJSON LineString",
1766
+ "type": "object",
1767
+ "required": [
1768
+ "type",
1769
+ "coordinates"
1770
+ ],
1771
+ "properties": {
1772
+ "type": {
1773
+ "type": "string",
1774
+ "enum": [
1775
+ "LineString"
1776
+ ]
1777
+ },
1778
+ "coordinates": {
1779
+ "type": "array",
1780
+ "minItems": 2,
1781
+ "items": {
1782
+ "type": "array",
1783
+ "minItems": 2,
1784
+ "items": {
1785
+ "type": "number"
1786
+ }
1787
+ }
1788
+ },
1789
+ "bbox": {
1790
+ "type": "array",
1791
+ "minItems": 4,
1792
+ "items": {
1793
+ "type": "number"
1794
+ }
1795
+ }
1796
+ }
1797
+ },
1798
+ {
1799
+ "title": "GeoJSON Polygon",
1800
+ "type": "object",
1801
+ "required": [
1802
+ "type",
1803
+ "coordinates"
1804
+ ],
1805
+ "properties": {
1806
+ "type": {
1807
+ "type": "string",
1808
+ "enum": [
1809
+ "Polygon"
1810
+ ]
1811
+ },
1812
+ "coordinates": {
1813
+ "type": "array",
1814
+ "items": {
1815
+ "type": "array",
1816
+ "minItems": 4,
1817
+ "items": {
1818
+ "type": "array",
1819
+ "minItems": 2,
1820
+ "items": {
1821
+ "type": "number"
1822
+ }
1823
+ }
1824
+ }
1825
+ },
1826
+ "bbox": {
1827
+ "type": "array",
1828
+ "minItems": 4,
1829
+ "items": {
1830
+ "type": "number"
1831
+ }
1832
+ }
1833
+ }
1834
+ },
1835
+ {
1836
+ "title": "GeoJSON MultiPoint",
1837
+ "type": "object",
1838
+ "required": [
1839
+ "type",
1840
+ "coordinates"
1841
+ ],
1842
+ "properties": {
1843
+ "type": {
1844
+ "type": "string",
1845
+ "enum": [
1846
+ "MultiPoint"
1847
+ ]
1848
+ },
1849
+ "coordinates": {
1850
+ "type": "array",
1851
+ "items": {
1852
+ "type": "array",
1853
+ "minItems": 2,
1854
+ "items": {
1855
+ "type": "number"
1856
+ }
1857
+ }
1858
+ },
1859
+ "bbox": {
1860
+ "type": "array",
1861
+ "minItems": 4,
1862
+ "items": {
1863
+ "type": "number"
1864
+ }
1865
+ }
1866
+ }
1867
+ },
1868
+ {
1869
+ "title": "GeoJSON MultiLineString",
1870
+ "type": "object",
1871
+ "required": [
1872
+ "type",
1873
+ "coordinates"
1874
+ ],
1875
+ "properties": {
1876
+ "type": {
1877
+ "type": "string",
1878
+ "enum": [
1879
+ "MultiLineString"
1880
+ ]
1881
+ },
1882
+ "coordinates": {
1883
+ "type": "array",
1884
+ "items": {
1885
+ "type": "array",
1886
+ "minItems": 2,
1887
+ "items": {
1888
+ "type": "array",
1889
+ "minItems": 2,
1890
+ "items": {
1891
+ "type": "number"
1892
+ }
1893
+ }
1894
+ }
1895
+ },
1896
+ "bbox": {
1897
+ "type": "array",
1898
+ "minItems": 4,
1899
+ "items": {
1900
+ "type": "number"
1901
+ }
1902
+ }
1903
+ }
1904
+ },
1905
+ {
1906
+ "title": "GeoJSON MultiPolygon",
1907
+ "type": "object",
1908
+ "required": [
1909
+ "type",
1910
+ "coordinates"
1911
+ ],
1912
+ "properties": {
1913
+ "type": {
1914
+ "type": "string",
1915
+ "enum": [
1916
+ "MultiPolygon"
1917
+ ]
1918
+ },
1919
+ "coordinates": {
1920
+ "type": "array",
1921
+ "items": {
1922
+ "type": "array",
1923
+ "items": {
1924
+ "type": "array",
1925
+ "minItems": 4,
1926
+ "items": {
1927
+ "type": "array",
1928
+ "minItems": 2,
1929
+ "items": {
1930
+ "type": "number"
1931
+ }
1932
+ }
1933
+ }
1934
+ }
1935
+ },
1936
+ "bbox": {
1937
+ "type": "array",
1938
+ "minItems": 4,
1939
+ "items": {
1940
+ "type": "number"
1941
+ }
1942
+ }
1943
+ }
1944
+ }
1945
+ ]
1946
+ }
1947
+ },
1948
+ "bbox": {
1949
+ "type": "array",
1950
+ "minItems": 4,
1951
+ "items": {
1952
+ "type": "number"
1953
+ }
1954
+ }
1955
+ }
1956
+ }
1957
+ ]
1958
+ },
1959
+ "bbox": {
1960
+ "type": "array",
1961
+ "minItems": 4,
1962
+ "items": {
1963
+ "type": "number"
1964
+ }
1965
+ }
1966
+ }
1967
+ }
1968
+ },
1969
+ "bbox": {
1970
+ "type": "array",
1971
+ "minItems": 4,
1972
+ "items": {
1973
+ "type": "number"
1974
+ }
1975
+ }
1976
+ }
1977
+ }
1978
+ ]
1979
+ },
1980
+ "valid": {
1981
+ "type": "boolean",
1982
+ "description": "Whether the data are valid or not",
1983
+ "readOnly": true
1984
+ }
1985
+ }
1986
+ }
1987
+ }