bbox-tile-server 0.6.1

Vector and raster tiles server supporting various sources and storage formats
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
openapi: 3.0.0
info:
  title: 'Building Blocks specified in OGC API - Tiles - Part 1: Core'
  description: 'Draft example of OGC API - Tiles - Part 1 OpenAPI docs. This document is not an OGC Standard. This document is distributed for review and comment. This document is subject to change without notice and may not be referred to as an OGC Standard. Recipients of this document are invited to submit, with their comments, notification of any relevant patent rights of which they are aware and to provide supporting documentation.'
  version: 0.0.2
  contact:
    name: "Open Geospatial Consortium (OGC)"
    email: standards-team@ogc.org
    url: 'https://www.ogc.org/contacts'
  license:
    name: OGC License
    url: http://www.opengeospatial.org/legal/
  x-logo:
    url: 'https://www.ogc.org/pub/www/files/OGC_Logo_2D_Blue_x_0_0.png'
servers:
- description: Example OGC API - Tiles server
  url: https://maps.ecere.com/ogcapi
paths:
  # "/":
  #   get:
  #     tags:
  #     - Landing Page
  #     operationId: getLandingPage
  #     summary: Retrieve the OGC API landing page for this service.
  #     parameters:
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/LandingPage"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/conformance":
  #   get:
  #     tags:
  #     - Conformance
  #     operationId: getConformance
  #     summary: Retrieve the set of OGC API conformance classes that are supported
  #       by this service.
  #     parameters:
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/Conformance"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/api":
  #   get:
  #     tags:
  #     - API
  #     operationId: getAPI
  #     summary: Retrieve this API definition.
  #     parameters:
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/API"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/api/all-collections":
  #   get:
  #     tags:
  #     - API
  #     operationId: getAPICollections
  #     summary: Retrieve the list of collections available from this API implementation
  #       & deployment.
  #     parameters:
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/Enumeration"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/api/coverage-collections":
  #   get:
  #     tags:
  #     - API
  #     operationId: getAPICoverageCollections
  #     summary: Retrieve the list of coverages collections available from this API
  #       implementation & deployment.
  #     parameters:
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/Enumeration"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/api/vectorTiles-collections":
  #   get:
  #     tags:
  #     - API
  #     operationId: getAPIVectorTileCollections
  #     summary: Retrieve the list of collections supporting vector tiles available
  #       from this API implementation & deployment.
  #     parameters:
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/Enumeration"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/api/tileMatrixSets":
  #   get:
  #     tags:
  #     - API
  #     operationId: getAPITileMatrixSets
  #     summary: Retrieve the list of shared TileMatrixSets available from this API
  #       implementation & deployment.
  #     parameters:
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/Enumeration"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/api/styles":
  #   get:
  #     tags:
  #     - API
  #     operationId: getAPIStyles
  #     summary: Retrieve the list of dataset styles available from this API implementation
  #       & deployment.
  #     parameters:
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/Enumeration"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections":
  #   get:
  #     tags:
  #     - Data Collections
  #     operationId: getCollectionsList
  #     summary: Retrieve the list of geospatial data collections available from this
  #       service.
  #     parameters:
  #     - "$ref": "#/components/parameters/datetime"
  #     - name: bbox
  #       in: query
  #       description: |-
  #         Only features that have a geometry that intersects the bounding box are selected. The bounding box is provided as four or six numbers, depending on whether the coordinate reference system includes a vertical axis (height or depth):
  #         * Lower left corner, coordinate axis 1 * Lower left corner, coordinate axis 2 * Minimum value, coordinate axis 3 (optional) * Upper right corner, coordinate axis 1 * Upper right corner, coordinate axis 2 * Maximum value, coordinate axis 3 (optional)
  #         The coordinate reference system of the values is WGS 84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84) unless a different coordinate reference system is specified in the parameter `bbox-crs`.
  #         For WGS 84 longitude/latitude the values are in most cases the sequence of minimum longitude, minimum latitude, maximum longitude and maximum latitude. However, in cases where the box spans the antimeridian the first value (west-most box edge) is larger than the third value (east-most box edge).
  #         If the vertical axis is included, the third and the sixth number are the bottom and the top of the 3-dimensional bounding box.
  #         If a feature has multiple spatial geometry properties, it is the decision of the server whether only a single spatial geometry property is used to determine the extent or all relevant geometries.
  #       required: false
  #       schema:
  #         type: array
  #         oneOf:
  #         - minItems: 4
  #           maxItems: 4
  #         - minItems: 6
  #           maxItems: 6
  #         items:
  #           type: number
  #           format: double
  #       style: form
  #       explode: false
  #     - name: limit
  #       in: query
  #       description: |-
  #         The optional limit parameter limits the number of collections that are presented in the response document.
  #         Only items are counted that are on the first level of the collection in the response document. Nested objects contained within the explicitly requested items shall not be counted.
  #         * Minimum = 1 * Maximum = 10000 * Default = 10
  #       required: false
  #       schema:
  #         type: integer
  #         minimum: 1
  #         maximum: 10000
  #         default: 10
  #       style: form
  #       explode: false
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/CollectionsList"
  # "/collections/{collectionId}":
  #   get:
  #     tags:
  #     - Data Collections
  #     operationId: getCollection
  #     summary: Retrieve the description of a collection available from this service.
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-all"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/Collection"
  "/tileMatrixSets":
    get:
      tags:
      - Tiling Schemes
      summary: Retrieve the list of available tiling schemes (tile matrix sets)
      operationId: getTileMatrixSetsList
      parameters:
      - "$ref": "#/components/parameters/f-metadata"
      responses:
        '200':
          "$ref": "#/components/responses/TileMatrixSetsList"
        '406':
          "$ref": "#/components/responses/NotAcceptable"
        '500':
          "$ref": "#/components/responses/ServerError"
  "/tileMatrixSets/{tileMatrixSetId}":
    get:
      tags:
      - Tiling Schemes
      summary: Retrieve the definition of the specified tiling scheme (tile matrix
        set)
      operationId: getTileMatrixSet
      parameters:
      - "$ref": "#/components/parameters/tileMatrixSetId"
      - "$ref": "#/components/parameters/f-metadata"
      responses:
        '200':
          "$ref": "#/components/responses/TileMatrixSet"
        '404':
          description: The requested tile matrix set id was not found
          content:
            application/json:
              schema:
                "$ref": "#/components/schemas/exception"
        '406':
          "$ref": "#/components/responses/NotAcceptable"
        '500':
          "$ref": "#/components/responses/ServerError"
  "/tiles":
    get:
      tags:
      - Vector Tiles
      summary: Retrieve a list of available vector tilesets for the dataset
      operationId: ".dataset.vector.getTileSetsList"
      # parameters:
      # - "$ref": "#/components/parameters/f-metadata"
      responses:
        '200':
          "$ref": "#/components/responses/TileSetsList"
        '404':
          "$ref": "#/components/responses/NotFound"
        '406':
          "$ref": "#/components/responses/NotAcceptable"
        '500':
          "$ref": "#/components/responses/ServerError"
  "/tiles/{tileMatrixSetId}":
    get:
      tags:
      - Vector Tiles
      summary: Retrieve the vector tileset metadata for the whole dataset and the
        specified tiling scheme (tile matrix set)
      operationId: ".dataset.vector.getTileSet"
      parameters:
      # - "$ref": "#/components/parameters/collections"
      - "$ref": "#/components/parameters/tileMatrixSetId"
      # - "$ref": "#/components/parameters/f-metadata"
      responses:
        '200':
          "$ref": "#/components/responses/TileSet"
        '404':
          "$ref": "#/components/responses/NotFound"
        '406':
          "$ref": "#/components/responses/NotAcceptable"
        '500':
          "$ref": "#/components/responses/ServerError"
  # "/tiles/{tileMatrixSetId}/{tileMatrix}/{tileRow}/{tileCol}":
  #   get:
  #     tags:
  #     - Vector Tiles
  #     summary: Retrieve a vector tile including one or more collections from the dataset.
  #     operationId: ".dataset.vector.getTile"
  #     parameters:
  #     - "$ref": "#/components/parameters/tileMatrix"
  #     - "$ref": "#/components/parameters/tileRow"
  #     - "$ref": "#/components/parameters/tileCol"
  #     - "$ref": "#/components/parameters/datetime"
  #     - "$ref": "#/components/parameters/collections-vectorTiles"
  #     - "$ref": "#/components/parameters/subset"
  #     - "$ref": "#/components/parameters/crs"
  #     - "$ref": "#/components/parameters/subset-crs"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-vectorTile"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/VectorTile"
  #       '204':
  #         "$ref": "#/components/responses/EmptyTile"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/styles/{styleId}/tiles":
  #   get:
  #     tags:
  #     - Vector Tiles
  #     summary: Retrieve the list of vector tilesets intended for use with a specified
  #       style for the whole dataset
  #     operationId: ".dataset.style.vector.getTileSetsList"
  #     parameters:
  #     - "$ref": "#/components/parameters/styleId"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSetsList"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/styles/{styleId}/tiles/{tileMatrixSetId}":
  #   get:
  #     tags:
  #     - Vector Tiles
  #     summary: Retrieve a vector tileset intended for use with a specified style of
  #       the whole dataset for the specified tiling scheme (tile matrix set)
  #     operationId: ".dataset.style.vector.getTileSet"
  #     parameters:
  #     - "$ref": "#/components/parameters/styleId"
  #     - "$ref": "#/components/parameters/collections"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSet"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/styles/{styleId}/tiles/{tileMatrixSetId}/{tileMatrix}/{tileRow}/{tileCol}":
  #   get:
  #     tags:
  #     - Vector Tiles
  #     summary: Retrieve vector tiles intended for use with a specified style
  #     operationId: ".dataset.style.vector.getTile"
  #     parameters:
  #     - "$ref": "#/components/parameters/tileMatrix"
  #     - "$ref": "#/components/parameters/tileRow"
  #     - "$ref": "#/components/parameters/tileCol"
  #     - "$ref": "#/components/parameters/datetime"
  #     - "$ref": "#/components/parameters/collections-vectorTiles"
  #     - "$ref": "#/components/parameters/subset"
  #     - "$ref": "#/components/parameters/crs"
  #     - "$ref": "#/components/parameters/subset-crs"
  #     - "$ref": "#/components/parameters/styleId"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-vectorTile"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/VectorTile"
  #       '204':
  #         "$ref": "#/components/responses/EmptyTile"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/tiles":
  #   get:
  #     tags:
  #     - Vector Tiles
  #     summary: Retrieve a list of available vector tilesets for the specified collection.
  #     operationId: ".collection.vector.getTileSetsList"
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-vectorTiles"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSetsList"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/tiles/{tileMatrixSetId}":
  #   get:
  #     tags:
  #     - Vector Tiles
  #     summary: Retrieve the vector tileset metadata for the specified collection and
  #       tiling scheme (tile matrix set)
  #     operationId: ".collection.vector.getTileSet"
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-vectorTiles"
  #     - "$ref": "#/components/parameters/collections-vectorTiles"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSet"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/tiles/{tileMatrixSetId}/{tileMatrix}/{tileRow}/{tileCol}":
  #   get:
  #     tags:
  #     - Vector Tiles
  #     summary: Retrieve a vector tile from a collection.
  #     operationId: ".collection.vector.getTile"
  #     parameters:
  #     - "$ref": "#/components/parameters/tileMatrix"
  #     - "$ref": "#/components/parameters/tileRow"
  #     - "$ref": "#/components/parameters/tileCol"
  #     - "$ref": "#/components/parameters/datetime"
  #     - "$ref": "#/components/parameters/collectionId-vectorTiles"
  #     - "$ref": "#/components/parameters/collections-vectorTiles"
  #     - "$ref": "#/components/parameters/subset"
  #     - "$ref": "#/components/parameters/crs"
  #     - "$ref": "#/components/parameters/subset-crs"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-vectorTile"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/VectorTile"
  #       '204':
  #         "$ref": "#/components/responses/EmptyTile"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/styles/{styleId}/tiles":
  #   get:
  #     tags:
  #     - Vector Tiles
  #     summary: Retrieve a list of vector tilesets for the specified collection intended
  #       for use with a specified style
  #     operationId: ".collection.style.vector.getTileSetsList"
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-vectorTiles"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     - "$ref": "#/components/parameters/styleId-collection"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSetsList"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/styles/{styleId}/tiles/{tileMatrixSetId}":
  #   get:
  #     tags:
  #     - Vector Tiles
  #     summary: Retrieve the vector tileset metadata for the specified collection,
  #       style and tiling scheme (tile matrix set).
  #     operationId: ".collection.style.vector.getTileSet"
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-vectorTiles"
  #     - "$ref": "#/components/parameters/collections-vectorTiles"
  #     - "$ref": "#/components/parameters/styleId-collection"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSet"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/styles/{styleId}/tiles/{tileMatrixSetId}/{tileMatrix}/{tileRow}/{tileCol}":
  #   get:
  #     tags:
  #     - Vector Tiles
  #     summary: Retrieve vector tiles for a specified collection, intended for use
  #       with a specified style
  #     operationId: ".collection.style.vector.getTile"
  #     parameters:
  #     - "$ref": "#/components/parameters/tileMatrix"
  #     - "$ref": "#/components/parameters/tileRow"
  #     - "$ref": "#/components/parameters/tileCol"
  #     - "$ref": "#/components/parameters/datetime"
  #     - "$ref": "#/components/parameters/collectionId-vectorTiles"
  #     - "$ref": "#/components/parameters/collections-vectorTiles"
  #     - "$ref": "#/components/parameters/subset"
  #     - "$ref": "#/components/parameters/crs"
  #     - "$ref": "#/components/parameters/subset-crs"
  #     - "$ref": "#/components/parameters/bgcolor"
  #     - "$ref": "#/components/parameters/transparent"
  #     - "$ref": "#/components/parameters/styleId-collection"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-vectorTile"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/VectorTile"
  #       '204':
  #         "$ref": "#/components/responses/EmptyTile"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/coverage/tiles":
  #   get:
  #     tags:
  #     - Coverage Tiles
  #     summary: Retrieve the list of available coverage tilesets for the specified
  #       collection.
  #     operationId: ".collection.coverage.getTileSetsList"
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-coverage"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSetsList"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/coverage/tiles/{tileMatrixSetId}":
  #   get:
  #     tags:
  #     - Coverage Tiles
  #     summary: Retrieve the coverage tileset metadata for the specified collection
  #       and tiling scheme (tile matrix set)
  #     operationId: ".collection.coverage.getTileSet"
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-coverage"
  #     - "$ref": "#/components/parameters/collections-coverage"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSet"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/coverage/tiles/{tileMatrixSetId}/{tileMatrix}/{tileRow}/{tileCol}":
  #   get:
  #     tags:
  #     - Coverage Tiles
  #     summary: Retrieve coverage tiles
  #     operationId: ".collection.coverage.getTile"
  #     parameters:
  #     - "$ref": "#/components/parameters/tileMatrix"
  #     - "$ref": "#/components/parameters/tileRow"
  #     - "$ref": "#/components/parameters/tileCol"
  #     - "$ref": "#/components/parameters/datetime"
  #     - "$ref": "#/components/parameters/collectionId-coverage"
  #     - "$ref": "#/components/parameters/collections-coverage"
  #     - "$ref": "#/components/parameters/subset"
  #     - "$ref": "#/components/parameters/crs"
  #     - "$ref": "#/components/parameters/subset-crs"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-coverageTile"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/CoverageTile"
  #       '204':
  #         "$ref": "#/components/responses/EmptyTile"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/map/tiles":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve the list of all default map tilesets for the whole dataset
  #     operationId: ".dataset.map.getTileSetsList"
  #     parameters:
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSetsList"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/map/tiles/{tileMatrixSetId}":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve a default map tileset of the whole dataset for the specified
  #       tiling scheme (tile matrix set)
  #     operationId: ".dataset.map.getTileSet"
  #     parameters:
  #     - "$ref": "#/components/parameters/collections"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSet"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  "/map/tiles/{tileMatrixSetId}/{tileMatrix}/{tileRow}/{tileCol}":
    get:
      tags:
      - Map Tiles
      summary: Retrieve a default map tile of the whole dataset
      operationId: ".dataset.map.getTile"
      parameters:
      - "$ref": "#/components/parameters/tileMatrix"
      - "$ref": "#/components/parameters/tileRow"
      - "$ref": "#/components/parameters/tileCol"
      # - "$ref": "#/components/parameters/datetime"
      # - "$ref": "#/components/parameters/collections"
      # - "$ref": "#/components/parameters/subset"
      # - "$ref": "#/components/parameters/crs"
      # - "$ref": "#/components/parameters/subset-crs"
      # - "$ref": "#/components/parameters/bgcolor"
      # - "$ref": "#/components/parameters/transparent"
      - "$ref": "#/components/parameters/tileMatrixSetId"
      # - "$ref": "#/components/parameters/f-mapTile"
      responses:
        '200':
          "$ref": "#/components/responses/MapTile"
        '204':
          "$ref": "#/components/responses/EmptyTile"
        '404':
          "$ref": "#/components/responses/NotFound"
        '406':
          "$ref": "#/components/responses/NotAcceptable"
        '500':
          "$ref": "#/components/responses/ServerError"
  # "/styles/{styleId}/map/tiles":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve the list of styled map tilesets for the whole dataset
  #     operationId: ".dataset.style.map.getTileSetsList"
  #     parameters:
  #     - "$ref": "#/components/parameters/styleId"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSetsList"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/styles/{styleId}/map/tiles/{tileMatrixSetId}":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve a styled map tileset of the whole dataset for the specified
  #       tiling scheme (tile matrix set)
  #     operationId: ".dataset.style.map.getTileSet"
  #     parameters:
  #     - "$ref": "#/components/parameters/styleId"
  #     - "$ref": "#/components/parameters/collections"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSet"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/styles/{styleId}/map/tiles/{tileMatrixSetId}/{tileMatrix}/{tileRow}/{tileCol}":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve a styled map tiles
  #     operationId: ".dataset.style.map.getTile"
  #     parameters:
  #     - "$ref": "#/components/parameters/tileMatrix"
  #     - "$ref": "#/components/parameters/tileRow"
  #     - "$ref": "#/components/parameters/tileCol"
  #     - "$ref": "#/components/parameters/datetime"
  #     - "$ref": "#/components/parameters/collections"
  #     - "$ref": "#/components/parameters/subset"
  #     - "$ref": "#/components/parameters/crs"
  #     - "$ref": "#/components/parameters/subset-crs"
  #     - "$ref": "#/components/parameters/bgcolor"
  #     - "$ref": "#/components/parameters/transparent"
  #     - "$ref": "#/components/parameters/styleId"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-mapTile"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/MapTile"
  #       '204':
  #         "$ref": "#/components/responses/EmptyTile"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/map/tiles":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve a list of all map tilesets for specified collection.
  #     operationId: ".collection.map.getTileSetsList"
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-all"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSetsList"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/map/tiles/{tileMatrixSetId}":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve a map tile set metadata for the specified collection and tiling
  #       scheme (tile matrix set)
  #     operationId: ".collection.map.getTileSet"
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-all"
  #     - "$ref": "#/components/parameters/collections"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSet"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/map/tiles/{tileMatrixSetId}/{tileMatrix}/{tileRow}/{tileCol}":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve a map tile from the specified collection
  #     operationId: ".collection.map.getTile"
  #     parameters:
  #     - "$ref": "#/components/parameters/tileMatrix"
  #     - "$ref": "#/components/parameters/tileRow"
  #     - "$ref": "#/components/parameters/tileCol"
  #     - "$ref": "#/components/parameters/datetime"
  #     - "$ref": "#/components/parameters/collectionId-all"
  #     - "$ref": "#/components/parameters/collections"
  #     - "$ref": "#/components/parameters/subset"
  #     - "$ref": "#/components/parameters/crs"
  #     - "$ref": "#/components/parameters/subset-crs"
  #     - "$ref": "#/components/parameters/bgcolor"
  #     - "$ref": "#/components/parameters/transparent"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-mapTile"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/MapTile"
  #       '204':
  #         "$ref": "#/components/responses/EmptyTile"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/styles/{styleId}/map/tiles":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve a list of styled map tilesets for the specified collection
  #     operationId: ".collection.style.map.getTileSetsList"
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-all"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     - "$ref": "#/components/parameters/styleId-collection"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSetsList"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/styles/{styleId}/map/tiles/{tileMatrixSetId}":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve the map tileset metadata for the specified collection, style
  #       and tiling scheme (tile matrix set).
  #     operationId: ".collection.style.map.getTileSet"
  #     parameters:
  #     - "$ref": "#/components/parameters/collectionId-all"
  #     - "$ref": "#/components/parameters/collections"
  #     - "$ref": "#/components/parameters/styleId-collection"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-metadata"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/TileSet"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
  # "/collections/{collectionId}/styles/{styleId}/map/tiles/{tileMatrixSetId}/{tileMatrix}/{tileRow}/{tileCol}":
  #   get:
  #     tags:
  #     - Map Tiles
  #     summary: Retrieve a map tile for a specified collection and style
  #     operationId: ".collection.style.map.getTile"
  #     parameters:
  #     - "$ref": "#/components/parameters/tileMatrix"
  #     - "$ref": "#/components/parameters/tileRow"
  #     - "$ref": "#/components/parameters/tileCol"
  #     - "$ref": "#/components/parameters/datetime"
  #     - "$ref": "#/components/parameters/collectionId-all"
  #     - "$ref": "#/components/parameters/collections"
  #     - "$ref": "#/components/parameters/subset"
  #     - "$ref": "#/components/parameters/crs"
  #     - "$ref": "#/components/parameters/subset-crs"
  #     - "$ref": "#/components/parameters/bgcolor"
  #     - "$ref": "#/components/parameters/transparent"
  #     - "$ref": "#/components/parameters/styleId-collection"
  #     - "$ref": "#/components/parameters/tileMatrixSetId"
  #     - "$ref": "#/components/parameters/f-mapTile"
  #     responses:
  #       '200':
  #         "$ref": "#/components/responses/MapTile"
  #       '204':
  #         "$ref": "#/components/responses/EmptyTile"
  #       '404':
  #         "$ref": "#/components/responses/NotFound"
  #       '406':
  #         "$ref": "#/components/responses/NotAcceptable"
  #       '500':
  #         "$ref": "#/components/responses/ServerError"
components:
  schemas:
    confClasses:
      type: object
      required:
      - conformsTo
      properties:
        conformsTo:
          type: array
          items:
            type: string
    link:
      type: object
      required:
      - href
      - rel
      properties:
        href:
          type: string
          description: Supplies the URI to a remote resource (or resource fragment).
          example: http://data.example.com/buildings/123
        rel:
          type: string
          description: The type or semantics of the relation.
          example: alternate
        type:
          type: string
          description: A hint indicating what the media type of the result of dereferencing
            the link should be.
          example: application/geo+json
        templated:
          type: boolean
          description: This flag set to true if the link is a URL template.
        hreflang:
          type: string
          description: A hint indicating what the language of the result of dereferencing
            the link should be.
          example: en
        title:
          type: string
          description: Used to label the destination of a link such that it can be
            used as a human-readable identifier.
          example: Trierer Strasse 70, 53115 Bonn
        length:
          type: integer
    landingPage:
      type: object
      required:
      - links
      properties:
        title:
          type: string
          title: The title of the API.
          description: While a title is not required, implementors are strongly advised
            to include one.
          example: Buildings in Bonn
        description:
          type: string
          example: Access to data about buildings in the city of Bonn via a Web API
            that conforms to the OGC API Common specification.
        attribution:
          type: string
          title: attribution for the API
          description: The `attribution` should be short and intended for presentation
            to a user, for example, in a corner of a map. Parts of the text can be
            links to other resources if additional information is needed. The string
            can include HTML markup.
        links:
          type: array
          items:
            "$ref": "#/components/schemas/link"
    exception:
      title: Exception Schema
      description: JSON schema for exceptions based on RFC 7807
      type: object
      required:
      - type
      properties:
        type:
          type: string
        title:
          type: string
        status:
          type: integer
        detail:
          type: string
        instance:
          type: string
    collections:
      type: object
      required:
      - links
      - collections
      properties:
        links:
          type: array
          items:
            "$ref": "#/components/schemas/link"
        timeStamp:
          type: string
          format: date-time
        numberMatched:
          type: integer
          minimum: 0
          example: 1
        numberReturned:
          type: integer
          minimum: 0
          example: 1
        collections:
          type: array
          items:
            "$ref": "#/components/schemas/collectionInfo"
    collectionInfo:
      type: object
      required:
      - id
      - links
      properties:
        id:
          type: string
          description: identifier of the collection used, for example, in URIs
          example: dem
        title:
          type: string
          description: human readable title of the collection
          example: Digital Elevation Model
        description:
          type: string
          description: a description of the data in the collection
          example: A Digital Elevation Model.
        links:
          type: array
          example:
          - href: http://data.example.org/collections/dem?f=json
            rel: self
            type: application/json
            title: Digital Elevation Model
          - href: http://data.example.org/collections/dem?f=html
            rel: alternate
            type: application/json
            title: Digital Elevation Model
          - href: http://data.example.org/collections/dem/coverage
            rel: coverage
            type: image/tiff; application=geotiff
            title: Digital Elevation Model
          - href: http://data.example.org/collections/dem/coverage/domainset
            rel: domainset
            type: application/json
            title: Digital Elevation Model
          - href: http://data.example.org/collections/dem/coverage/rangetype
            rel: rangetype
            type: application/json
            title: Digital Elevation Model
          - href: http://data.example.org/collections/dem/coverage/metadata
            rel: metadata
            type: application/json
            title: Digital Elevation Model
          items:
            "$ref": "#/components/schemas/link"
        extent:
          "$ref": "#/components/schemas/extent-uad"
        itemType:
          description: indicator about the type of the items in the collection if
            the collection has an accessible /collections/{collectionId}/items endpoint
          type: string
          default: unknown
        crs:
          description: the list of coordinate reference systems supported by the API;
            the first item is the default coordinate reference system
          type: array
          items:
            type: string
          default:
          - http://www.opengis.net/def/crs/OGC/1.3/CRS84
          example:
          - http://www.opengis.net/def/crs/OGC/1.3/CRS84
          - http://www.opengis.net/def/crs/EPSG/0/4326
        dataType:
          allOf:
          - description: Type of data represented in the collection
          - "$ref": "#/components/schemas/dataType"
        geometryDimension:
          description: 'The geometry dimension of the features shown in this layer
            (0: points, 1: curves, 2: surfaces, 3: solids), unspecified: mixed or
            unknown'
          type: integer
          minimum: 0
          maximum: 3
        minScaleDenominator:
          description: Minimum scale denominator for usage of the collection
          type: number
        maxScaleDenominator:
          description: Maximum scale denominator for usage of the collection
          type: number
        minCellSize:
          description: Minimum cell size for usage of the collection
          type: number
        maxCellSize:
          description: Maximum cell size for usage of the collection
          type: number
    extent:
      description: |-
        The extent of the data in the collection. In the Core only spatial and temporal
        extents are specified. Extensions may add additional members to represent other
        extents, for example, thermal or pressure ranges.

        The first item in the array describes the overall extent of
        the data. All subsequent items describe more precise extents,
        e.g., to identify clusters of data.
        Clients only interested in the overall extent will only need to
        access the first item in each array.
      type: object
      properties:
        spatial:
          description: The spatial extent of the data in the collection.
          type: object
          properties:
            bbox:
              description: |-
                One or more bounding boxes that describe the spatial extent of the dataset.
                In the Core only a single bounding box is supported.

                Extensions may support additional areas.
                The first bounding box describes the overall spatial
                extent of the data. All subsequent bounding boxes describe
                more precise bounding boxes, e.g., to identify clusters of data.
                Clients only interested in the overall spatial extent will
                only need to access the first item in each array.
              type: array
              minItems: 1
              items:
                description: |-
                  Each bounding box is provided as four or six numbers, depending on
                  whether the coordinate reference system includes a vertical axis
                  (height or depth):

                  * Lower left corner, coordinate axis 1
                  * Lower left corner, coordinate axis 2
                  * Minimum value, coordinate axis 3 (optional)
                  * Upper right corner, coordinate axis 1
                  * Upper right corner, coordinate axis 2
                  * Maximum value, coordinate axis 3 (optional)

                  If the value consists of four numbers, the coordinate reference system is
                  WGS 84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84)
                  unless a different coordinate reference system is specified in a parameter `bbox-crs`.

                  If the value consists of six numbers, the coordinate reference system is WGS 84
                  longitude/latitude/ellipsoidal height (http://www.opengis.net/def/crs/OGC/0/CRS84h)
                  unless a different coordinate reference system is specified in a parameter `bbox-crs`.

                  For WGS 84 longitude/latitude the values are in most cases the sequence of
                  minimum longitude, minimum latitude, maximum longitude and maximum latitude.
                  However, in cases where the box spans the antimeridian the first value
                  (west-most box edge) is larger than the third value (east-most box edge).

                  If the vertical axis is included, the third and the sixth number are
                  the bottom and the top of the 3-dimensional bounding box.

                  If a feature has multiple spatial geometry properties, it is the decision of the
                  server whether only a single spatial geometry property is used to determine
                  the extent or all relevant geometries.
                type: array
                oneOf:
                - minItems: 4
                  maxItems: 4
                - minItems: 6
                  maxItems: 6
                items:
                  type: number
                example:
                - -180
                - -90
                - 180
                - 90
            crs:
              description: |-
                Coordinate reference system of the coordinates in the spatial extent
                (property `bbox`). The default reference system is WGS 84 longitude/latitude.
                In the Core the only other supported coordinate reference system is
                WGS 84 longitude/latitude/ellipsoidal height for coordinates with height.
                Extensions may support additional coordinate reference systems and add
                additional enum values.
              type: string
              enum:
              - http://www.opengis.net/def/crs/OGC/1.3/CRS84
              - http://www.opengis.net/def/crs/OGC/0/CRS84h
              default: http://www.opengis.net/def/crs/OGC/1.3/CRS84
        temporal:
          description: The temporal extent of the features in the collection.
          type: object
          properties:
            interval:
              description: |-
                One or more time intervals that describe the temporal extent of the dataset.
                In the Core only a single time interval is supported.

                Extensions may support multiple intervals.
                The first time interval describes the overall
                temporal extent of the data. All subsequent time intervals describe
                more precise time intervals, e.g., to identify clusters of data.
                Clients only interested in the overall extent will only need
                to access the first item in each array.
              type: array
              minItems: 1
              items:
                description: |-
                  Begin and end times of the time interval. The timestamps are in the
                  temporal coordinate reference system specified in `trs`. By default
                  this is the Gregorian calendar.

                  The value `null` for start or end time is supported and indicates a half-bounded time interval.
                type: array
                minItems: 2
                maxItems: 2
                items:
                  type: string
                  format: date-time
                  nullable: true
                example:
                - '2011-11-11T12:22:11Z'
                -
            trs:
              description: |-
                Coordinate reference system of the coordinates in the temporal extent
                (property `interval`). The default reference system is the Gregorian calendar.
                In the Core this is the only supported temporal coordinate reference system.
                Extensions may support additional temporal coordinate reference systems and add
                additional enum values.
              type: string
              enum:
              - http://www.opengis.net/def/uom/ISO-8601/0/Gregorian
              default: http://www.opengis.net/def/uom/ISO-8601/0/Gregorian
    extent-uad:
      title: Extent with Uniform Additional Dimensions Schema
      description: |-
        The extent module only addresses spatial and temporal extents. This module extends extent by specifying how
        intervals and crs properties can be used to specify additional geometries.
      allOf:
      - "$ref": "#/components/schemas/extent"
      - type: object
        additionalProperties:
          description: The domain intervals for any additional dimensions of the extent
            (envelope) beyond those described in temporal and spatial.
          type: object
          oneOf:
          - required:
            - interval
            - crs
          - required:
            - interval
            - trs
          - required:
            - interval
            - vrs
          properties:
            interval:
              description: |-
                One or more intervals that describe the extent for this dimension of the dataset.
                The value `null` is supported and indicates an unbounded or half-bounded interval.
                The first interval describes the overall extent of the data for this dimension.
                All subsequent intervals describe more precise intervals, e.g., to identify clusters of data.
                Clients only interested in the overall extent will only need
                to access the first item (a pair of lower and upper bound values).
              type: array
              minItems: 1
              items:
                description: |-
                  Lower and upper bound values of the interval. The values
                  are in the coordinate reference system specified in `crs`, `trs` or `vrs`.
                type: array
                minItems: 2
                maxItems: 2
                items:
                  oneOf:
                  - type: string
                    nullable: true
                  - type: number
                example:
                - '2011-11-11T12:22:11Z'
                - 32.5
                -
            crs:
              type: string
              description: generic coordinate reference system suitable for any type
                of dimensions
            trs:
              type: string
              description: temporal coordinate reference system (e.g. as defined by
                Features for 'temporal')
            vrs:
              type: string
              description: vertical coordinate reference system (e.g. as defined in
                EDR for 'vertical')
    crs:
      title: CRS
      oneOf:
      - description: Simplification of the object into a url if the other properties
          are not present
        type: string
      - type: object
        oneOf:
        - required:
          - uri
          properties:
            uri:
              description: Reference to one coordinate reference system (CRS)
              type: string
              format: uri
        - required:
          - wkt
          properties:
            wkt:
              description: A string defining the CRS using the JSON encodng for Well
                Known Text
              type: object
        - required:
          - referenceSystem
          properties:
            referenceSystem:
              description: A reference system data structure as defined in the MD_ReferenceSystem
                of the ISO 19115
              type: object
    dataType:
      oneOf:
      - type: string
      - type: string
        enum:
        - map
        - vector
        - coverage
    timeStamp:
      description: This property indicates the time and date when the response was
        generated
      type: string
      format: date-time
    numberReturned:
      description: |-
        The number of features in the feature collection.
        A server may omit this information in a response, if the information
        about the number of features is not known or difficult to compute.
        If the value is provided, the value shall be identical to the number
        of items in the "features" array.
      type: integer
      minimum: 0
      example: 10
    numberMatched:
      description: |-
        The number of features of the feature type that match the selection
        parameters like `bbox`.
      type: integer
      minimum: 0
      example: 127
    tileSet:
      title: Tile Set Metadata
      description: A resource describing a tileset based on the OGC TileSet Metadata
        Standard. At least one of the 'TileMatrixSet',  or a link with 'rel' http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme
      type: object
      required:
      - dataType
      - crs
      - links
      properties:
        title:
          description: A title for this tileset
          type: string
        description:
          description: Brief narrative description of this tile set
          type: string
        dataType:
          allOf:
          - description: Type of data represented in the tileset
          - "$ref": "#/components/schemas/dataType"
        crs:
          allOf:
          - description: Coordinate Reference System (CRS)
          - "$ref": "#/components/schemas/crs"
        tileMatrixSetURI:
          description: Reference to a Tile Matrix Set on an offical source for Tile
            Matrix Sets such as the OGC NA definition server (http://www.opengis.net/def/tms/).
            Required if the tile matrix set is registered on an open official source.
          type: string
          format: uri
        links:
          description: 'Links to related resources. Possible link ''rel'' values are:
            ''http://www.opengis.net/def/rel/ogc/1.0/dataset'' for a URL pointing
            to the dataset, ''item'' for a URL template to get a tile; ''alternate''
            for a URL pointing to another representation of the TileSetMetadata (e.g
            a TileJSON file); ''http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme''
            for a definition of the TileMatrixSet; ''http://www.opengis.net/def/rel/ogc/1.0/geodata''
            for pointing to a single collection (if the tileset represents a single
            collection)'
          type: array
          items:
            "$ref": "#/components/schemas/link"
        tileMatrixSetLimits:
          description: Limits for the TileRow and TileCol values for each TileMatrix
            in the tileMatrixSet. If missing, there are no limits other that the ones
            imposed by the TileMatrixSet. If present the TileMatrices listed are limited
            and the rest not available at all
          type: array
          items:
            "$ref": "#/components/schemas/tileMatrixLimits"
        epoch:
          description: Epoch of the Coordinate Reference System (CRS)
          type: number
        layers:
          minItems: 1
          type: array
          items:
            type: object
            required:
            - id
            - dataType
            properties:
              title:
                description: Title of this tile matrix set, normally used for display
                  to a human
                type: string
              description:
                description: Brief narrative description of this tile matrix set,
                  normally available for display to a human
                type: string
              keywords:
                description: Unordered list of one or more commonly used or formalized
                  word(s) or phrase(s) used to describe this layer
                type: string
              id:
                description: Unique identifier of the Layer. Implementation of 'identifier'
                type: string
              dataType:
                allOf:
                - description: Type of data represented in the layer
                - "$ref": "#/components/schemas/dataType"
              geometryDimension:
                description: 'The geometry dimension of the features shown in this
                  layer (0: points, 1: curves, 2: surfaces, 3: solids), unspecified:
                  mixed or unknown'
                type: integer
                minimum: 0
                maximum: 3
              featureType:
                description: Feature type identifier. Only applicable to layers of
                  datatype 'geometries'
                type: string
              pointOfContact:
                description: Useful information to contact the authors or custodians
                  for the layer (e.g. e-mail address, a physical address,  phone numbers,
                  etc)
                type: string
              publisher:
                description: Organization or individual responsible for making the
                  layer available
                type: string
              theme:
                description: Category where the layer can be grouped
                type: string
              crs:
                allOf:
                - description: Coordinate Reference System (CRS)
                - "$ref": "#/components/schemas/crs"
              epoch:
                description: Epoch of the Coordinate Reference System (CRS)
                type: number
              minScaleDenominator:
                description: Minimum scale denominator for usage of the layer
                type: number
              maxScaleDenominator:
                description: Maximum scale denominator for usage of the layer
                type: number
              minCellSize:
                description: Minimum cell size for usage of the layer
                type: number
              maxCellSize:
                description: Maximum cell size for usage of the layer
                type: number
              maxTileMatrix:
                description: TileMatrix identifier associated with the minScaleDenominator
                type: string
              minTileMatrix:
                description: TileMatrix identifier associated with the maxScaleDenominator
                type: string
              boundingBox:
                allOf:
                - description: Minimum bounding rectangle surrounding the layer
                - "$ref": "#/components/schemas/2DBoundingBox"
              created:
                allOf:
                - description: When the layer was first produced
                - "$ref": "#/components/schemas/timeStamp"
              updated:
                allOf:
                - description: Last layer change/revision
                - "$ref": "#/components/schemas/timeStamp"
              style:
                allOf:
                - description: Style used to generate the layer in the tileset
                - "$ref": "#/components/schemas/tileSet/properties/style/allOf/1"
              geoDataClasses:
                description: URI identifying a class of data contained in this layer
                  (useful to determine compatibility with styles or processes)
                type: array
                items:
                  type: string
              propertiesSchema:
                allOf:
                - description: Properties represented by the features in this layer.
                    Can be the attributes of a feature dataset (datatype=geometries)
                    or the rangeType of a coverage (datatype=coverage)
                - description: Attributes of the features or rangetypes of a coverage.
                    Defined by a subset of the JSON Schema for the properties of a
                    feature
                  type: object
                  required:
                  - type
                  - properties
                  properties:
                    type:
                      type: string
                      enum:
                      - object
                    required:
                      description: Implements 'multiplicity' by citing property 'name'
                        defined as 'additionalProperties'
                      type: array
                      minItems: 1
                      items:
                        type: string
                    properties:
                      type: object
                      default: {}
                      additionalProperties:
                        description: No property names are defined but any property
                          name they should be described by JSON Schema. So 'additionalProperties'
                          implements 'name'.
                        type: object
                        properties:
                          title:
                            type: string
                          description:
                            description: Implements 'description'
                            type: string
                          type:
                            type: string
                            enum:
                            - array
                            - boolean
                            - integer
                            - 'null'
                            - number
                            - object
                            - string
                          enum:
                            description: Implements 'acceptedValues'
                            type: array
                            minItems: 1
                            items: {}
                            uniqueItems: true
                          format:
                            description: Complements implementation of 'type'
                            type: string
                          contentMediaType:
                            description: Implements 'mediaType'
                            type: string
                          maximum:
                            description: Implements 'range'
                            type: number
                          exclusiveMaximum:
                            description: Implements 'range'
                            type: number
                          minimum:
                            description: Implements 'range'
                            type: number
                          exclusiveMinimum:
                            description: Implements 'range'
                            type: number
                          pattern:
                            type: string
                            format: regex
                          maxItems:
                            description: Implements 'upperMultiplicity'
                            type: integer
                            minimum: 0
                          minItems:
                            description: Implements 'lowerMultiplicity'
                            type: integer
                            default: 0
                            minimum: 0
                          observedProperty:
                            type: string
                          observedPropertyURI:
                            type: string
                            format: uri
                          uom:
                            type: string
                          uomURI:
                            type: string
                            format: uri
              links:
                description: 'Links related to this layer. Possible link ''rel'' values
                  are: ''geodata'' for a URL pointing to the collection of geospatial
                  data.'
                type: array
                minItems: 1
                items:
                  "$ref": "#/components/schemas/link"
        boundingBox:
          allOf:
          - description: Minimum bounding rectangle surrounding the tile matrix set,
              in the supported CRS
          - "$ref": "#/components/schemas/2DBoundingBox"
        centerPoint:
          allOf:
          - description: Location of a tile that nicely represents the tileset. Implementations
              may use this center value to set the default location or to present
              a representative tile in a user interface
          - type: object
            required:
            - coordinates
            properties:
              coordinates:
                type: array
                minItems: 2
                maxItems: 2
                items:
                  type: number
              crs:
                allOf:
                - description: Coordinate Reference System (CRS) of the coordinates
                - "$ref": "#/components/schemas/crs"
              tileMatrix:
                description: TileMatrix identifier associated with the scaleDenominator
                type: string
              scaleDenominator:
                description: Scale denominator of the tile matrix selected
                type: number
              cellSize:
                description: Cell size of the tile matrix selected
                type: number
        style:
          allOf:
          - description: Style involving all layers used to generate the tileset
          - type: object
            required:
            - id
            properties:
              id:
                description: An identifier for this style. Implementation of 'identifier'
                type: string
              title:
                description: A title for this style
                type: string
              description:
                description: Brief narrative description of this style
                type: string
              keywords:
                description: keywords about this style
                type: array
                items:
                  type: string
              links:
                description: 'Links to style related resources. Possible link ''rel''
                  values are: ''style'' for a URL pointing to the style description,
                  ''styleSpec'' for a URL pointing to the specification or standard
                  used to define the style.'
                type: array
                minItems: 1
                items:
                  "$ref": "#/components/schemas/link"
        license:
          description: License applicable to the tiles
          type: string
        accessConstraints:
          description: Restrictions on the availability of the Tile Set that the user
            needs to be aware of before using or redistributing the Tile Set
          type: string
          default: unclassified
          enum:
          - unclassified
          - restricted
          - confidential
          - secret
          - topSecret
        keywords:
          description: keywords about this tileset
          type: array
          items:
            type: string
        version:
          description: Version of the Tile Set. Changes if the data behind the tiles
            has been changed
          type: string
        created:
          allOf:
          - description: When the Tile Set was first produced
          - "$ref": "#/components/schemas/timeStamp"
        updated:
          allOf:
          - description: Last Tile Set change/revision
          - "$ref": "#/components/schemas/timeStamp"
        pointOfContact:
          description: Useful information to contact the authors or custodians for
            the Tile Set
          type: string
        mediaTypes:
          description: Media types available for the tiles
          type: array
          items:
            type: string
    tileSet-item:
      title: Tile Set Metadata item
      description: A minimal tileset element for use within a list of tilesets linking
        to full description of those tilesets.
      type: object
      required:
      - dataType
      - links
      - crs
      properties:
        title:
          description: A title for this tileset
          type: string
        dataType:
          allOf:
          - description: Type of data represented in the tileset
          - "$ref": "#/components/schemas/dataType"
        crs:
          allOf:
          - description: Coordinate Reference System (CRS)
          - "$ref": "#/components/schemas/crs"
        tileMatrixSetURI:
          description: Reference to a Tile Matrix Set on an offical source for Tile
            Matrix Sets such as the OGC NA definition server (http://www.opengis.net/def/tms/).
            Required if the tile matrix set is registered on an open official source.
          type: string
          format: uri
        links:
          description: Links to related resources. A 'self' link to the tileset as
            well as a 'http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme' link
            to a definition of the TileMatrixSet are required.
          type: array
          items:
            "$ref": "#/components/schemas/link"
    tileMatrixSet:
      title: Tile Matrix Set Definition
      description: A definition of a tile matrix set following the Tile Matrix Set
        standard. For tileset metadata, such a description (in `tileMatrixSet` property)
        is only required for offline use, as an alternative to a link with a `http://www.opengis.net/def/rel/ogc/1.0/tiling-scheme`
        relation type.
      type: object
      required:
      - crs
      - tileMatrices
      properties:
        title:
          description: Title of this tile matrix set, normally used for display to
            a human
          type: string
        description:
          description: Brief narrative description of this tile matrix set, normally
            available for display to a human
          type: string
        keywords:
          description: Unordered list of one or more commonly used or formalized word(s)
            or phrase(s) used to describe this tile matrix set
          type: array
          items:
            type: string
        id:
          description: Tile matrix set identifier. Implementation of 'identifier'
          type: string
        uri:
          description: Reference to an official source for this tileMatrixSet
          type: string
          format: uri
        orderedAxes:
          type: array
          minItems: 1
          items:
            type: string
        crs:
          allOf:
          - description: Coordinate Reference System (CRS)
          - "$ref": "#/components/schemas/crs"
        wellKnownScaleSet:
          description: Reference to a well-known scale set
          type: string
          format: uri
        boundingBox:
          allOf:
          - description: Minimum bounding rectangle surrounding the tile matrix set,
              in the supported CRS
          - "$ref": "#/components/schemas/2DBoundingBox"
        tileMatrices:
          type: array
          description: Describes scale levels and its tile matrices
          items:
            description: ''
            type: object
            required:
            - id
            - scaleDenominator
            - cellSize
            - pointOfOrigin
            - tileWidth
            - tileHeight
            - matrixWidth
            - matrixHeight
            properties:
              title:
                description: Title of this tile matrix set, normally used for display
                  to a human
                type: string
              description:
                description: Brief narrative description of this tile matrix set,
                  normally available for display to a human
                type: string
              keywords:
                description: Unordered list of one or more commonly used or formalized
                  word(s) or phrase(s) used to describe this dataset
                type: array
                items:
                  type: string
              id:
                description: Identifier selecting one of the scales defined in the
                  TileMatrixSet and representing the scaleDenominator the tile. Implementation
                  of 'identifier'
                type: string
              scaleDenominator:
                description: Scale denominator of this tile matrix
                type: number
              cellSize:
                description: Cell size of this tile matrix
                type: number
              cornerOfOrigin:
                description: The corner of the tile matrix (_topLeft_ or _bottomLeft_)
                  used as the origin for numbering tile rows and columns. This corner
                  is also a corner of the (0, 0) tile.
                type: string
                enum:
                - topLeft
                - bottomLeft
                default: topLeft
              pointOfOrigin:
                allOf:
                - description: Precise position in CRS coordinates of the corner of
                    origin (e.g. the top-left corner) for this tile matrix. This position
                    is also a corner of the (0, 0) tile. In previous version, this
                    was 'topLeftCorner' and 'cornerOfOrigin' did not exist.
                - "$ref": "#/components/schemas/2DPoint"
              tileWidth:
                type: number
                description: Width of each tile of this tile matrix in pixels
                format: integer
                minimum: 1
                multipleOf: 1
              tileHeight:
                type: number
                description: Height of each tile of this tile matrix in pixels
                format: integer
                minimum: 1
                multipleOf: 1
              matrixHeight:
                type: number
                description: Width of the matrix (number of tiles in width)
                format: integer
                minimum: 1
                multipleOf: 1
              matrixWidth:
                type: number
                description: Height of the matrix (number of tiles in height)
                format: integer
                minimum: 1
                multipleOf: 1
              variableMatrixWidths:
                description: Describes the rows that has variable matrix width
                type: array
                items:
                  description: Variable Matrix Width data structure
                  type: object
                  required:
                  - coalesce
                  - minTileRow
                  - maxTileRow
                  properties:
                    coalesce:
                      description: Number of tiles in width that coalesce in a single
                        tile for these rows
                      type: number
                      format: integer
                      minimum: 2
                      multipleOf: 1
                    minTileRow:
                      description: First tile row where the coalescence factor applies
                        for this tilematrix
                      type: number
                      format: integer
                      minimum: 0
                      multipleOf: 1
                    maxTileRow:
                      description: Last tile row where the coalescence factor applies
                        for this tilematrix
                      type: number
                      format: integer
                      minimum: 0
                      multipleOf: 1
    tileMatrixSet-item:
      title: Tile Matrix Set Item
      description: A minimal tile matrix set element for use within a list of tile
        matrix sets linking to a full definition.
      type: object
      required:
      - links
      properties:
        id:
          description: Optional local tile matrix set identifier, e.g. for use as
            unspecified `{tileMatrixSetId}` parameter. Implementation of 'identifier'
          type: string
        title:
          description: Title of this tile matrix set, normally used for display to
            a human
          type: string
        uri:
          description: Reference to an official source for this tileMatrixSet
          type: string
          format: uri
        crs:
          allOf:
          - description: Coordinate Reference System (CRS)
          - "$ref": "#/components/schemas/crs"
        links:
          description: Links to related resources. A 'self' link to the tile matrix
            set definition is required.
          type: array
          items:
            "$ref": "#/components/schemas/link"
    tileMatrixLimits:
      title: TileMatrixLimits
      description: The limits for an individual tile matrix of a TileSet's TileMatrixSet,
        as defined in the OGC 2D TileMatrixSet and TileSet Metadata Standard
      type: object
      required:
      - tileMatrix
      - minTileRow
      - maxTileRow
      - minTileCol
      - maxTileCol
      properties:
        tileMatrix:
          type: string
        minTileRow:
          type: integer
          minimum: 0
        maxTileRow:
          type: integer
          minimum: 0
        minTileCol:
          type: integer
          minimum: 0
        maxTileCol:
          type: integer
          minimum: 0
    2DPoint:
      description: A 2D Point in the CRS indicated elsewhere
      type: array
      minItems: 2
      maxItems: 2
      items:
        type: number
    2DBoundingBox:
      description: Minimum bounding rectangle surrounding a 2D resource in the CRS
        indicated elsewhere
      type: object
      required:
      - lowerLeft
      - upperRight
      properties:
        lowerLeft:
          "$ref": "#/components/schemas/2DPoint"
        upperRight:
          "$ref": "#/components/schemas/2DPoint"
        crs:
          "$ref": "#/components/schemas/crs"
        orderedAxes:
          type: array
          minItems: 2
          maxItems: 2
          items:
            type: string
    FeatureCollection:
      title: GeoJSON FeatureCollection
      type: object
      required:
      - type
      - features
      properties:
        type:
          type: string
          enum:
          - FeatureCollection
        features:
          type: array
          items:
            title: GeoJSON Feature
            type: object
            required:
            - type
            - properties
            - geometry
            properties:
              type:
                type: string
                enum:
                - Feature
              id:
                oneOf:
                - type: number
                - type: string
              properties:
                type: object
                nullable: true
              geometry:
                oneOf:
                - title: GeoJSON Point
                  type: object
                  nullable: true
                  required:
                  - type
                  - coordinates
                  properties:
                    type:
                      type: string
                      enum:
                      - Point
                    coordinates:
                      type: array
                      minItems: 2
                      items:
                        type: number
                    bbox:
                      type: array
                      minItems: 4
                      items:
                        type: number
                - title: GeoJSON LineString
                  type: object
                  required:
                  - type
                  - coordinates
                  properties:
                    type:
                      type: string
                      enum:
                      - LineString
                    coordinates:
                      type: array
                      minItems: 2
                      items:
                        type: array
                        minItems: 2
                        items:
                          type: number
                    bbox:
                      type: array
                      minItems: 4
                      items:
                        type: number
                - title: GeoJSON Polygon
                  type: object
                  required:
                  - type
                  - coordinates
                  properties:
                    type:
                      type: string
                      enum:
                      - Polygon
                    coordinates:
                      type: array
                      items:
                        type: array
                        minItems: 4
                        items:
                          type: array
                          minItems: 2
                          items:
                            type: number
                    bbox:
                      type: array
                      minItems: 4
                      items:
                        type: number
                - title: GeoJSON MultiPoint
                  type: object
                  required:
                  - type
                  - coordinates
                  properties:
                    type:
                      type: string
                      enum:
                      - MultiPoint
                    coordinates:
                      type: array
                      items:
                        type: array
                        minItems: 2
                        items:
                          type: number
                    bbox:
                      type: array
                      minItems: 4
                      items:
                        type: number
                - title: GeoJSON MultiLineString
                  type: object
                  required:
                  - type
                  - coordinates
                  properties:
                    type:
                      type: string
                      enum:
                      - MultiLineString
                    coordinates:
                      type: array
                      items:
                        type: array
                        minItems: 2
                        items:
                          type: array
                          minItems: 2
                          items:
                            type: number
                    bbox:
                      type: array
                      minItems: 4
                      items:
                        type: number
                - title: GeoJSON MultiPolygon
                  type: object
                  required:
                  - type
                  - coordinates
                  properties:
                    type:
                      type: string
                      enum:
                      - MultiPolygon
                    coordinates:
                      type: array
                      items:
                        type: array
                        items:
                          type: array
                          minItems: 4
                          items:
                            type: array
                            minItems: 2
                            items:
                              type: number
                    bbox:
                      type: array
                      minItems: 4
                      items:
                        type: number
              bbox:
                type: array
                minItems: 4
                items:
                  type: number
        bbox:
          type: array
          minItems: 4
          items:
            type: number
    enumeration:
      type: object
      required:
      - type
      - enum
      properties:
        type:
          type: string
          enum:
          - enum
        enum:
          type: array
          items:
            type: string
    all-collections:
      type: string
      enum:
      - blueMarble
      - NaturalEarth:raster:HYP_HR_SR_OB_DR
      - NaturalEarth:cultural:ne_10m_admin_0_countries
      - NaturalEarth:physical:bathymetry
      - SRTM_ViewFinderPanorama
      - HRDEM-Ottawa
      - HRDEM-RedRiver
    vectorTiles-collections:
      type: string
      enum:
      - NaturalEarth:cultural:ne_10m_admin_0_countries
      - NaturalEarth:physical:bathymetry
    coverage-collections:
      type: string
      enum:
      - SRTM_ViewFinderPanorama
      - HRDEM-Ottawa
      - HRDEM-RedRiver
    styles:
      type: string
      enum:
      - default
    tileMatrixSets:
      type: string
      enum:
      - WebMercatorQuad
      - WorldCRS84Quad
      - GNOSISGlobalGrid
      - WorldMercatorWGS84Quad
  parameters:
    f-metadata:
      name: f
      in: query
      description: The format of the response. If no value is provided, the accept
        header is used to determine the format. Accepted values are 'json' or 'html'.
      required: false
      schema:
        type: string
        enum:
        - json
        - html
      style: form
      explode: false
    collectionId-all:
      name: collectionId
      in: path
      description: Local identifier of a collection
      required: true
      schema:
        "$ref": "#/components/schemas/all-collections"
    collectionId-coverage:
      name: collectionId
      in: path
      description: Local identifier of a coverage collection
      required: true
      allowEmptyValue: false
      schema:
        "$ref": "#/components/schemas/coverage-collections"
      style: simple
      explode: false
    collectionId-vectorTiles:
      name: collectionId
      in: path
      description: Local identifier of a vector tile collection
      required: true
      allowEmptyValue: false
      schema:
        "$ref": "#/components/schemas/vectorTiles-collections"
    collections:
      name: collections
      in: query
      style: form
      description: The collections that should be included in the response. The parameter
        value is a comma-separated list of collection identifiers. If the parameters
        is missing, some or all collections will be included. The collection will
        be rendered in the order specified, with the last one showing on top, unless
        the priority is overridden by styling rules.
      required: false
      explode: false
      schema:
        type: array
        items:
          "$ref": "#/components/schemas/all-collections"
    collections-coverage:
      name: collections
      in: query
      style: form
      description: The collections that should be included in the response. The parameter
        value is a comma-separated list of collection identifiers. If the parameters
        is missing, some or all collections will be included. The collection will
        be rendered in the order specified, with the last one showing on top, unless
        the priority is overridden by styling rules.
      required: false
      explode: false
      schema:
        type: array
        items:
          "$ref": "#/components/schemas/coverage-collections"
    collections-vectorTiles:
      name: collections
      in: query
      style: form
      description: The collections that should be included in the response. The parameter
        value is a comma-separated list of collection identifiers. If the parameters
        is missing, some or all collections will be included. The collection will
        be rendered in the order specified, with the last one showing on top, unless
        the priority is overridden by styling rules.
      required: false
      explode: false
      schema:
        type: array
        items:
          "$ref": "#/components/schemas/vectorTiles-collections"
    datetime:
      name: datetime
      in: query
      description: |-
        Either a date-time or an interval, half-bounded or bounded. Date and time expressions
        adhere to RFC 3339. Half-bounded intervals are expressed using double-dots.

        Examples:

        * A date-time: "2018-02-12T23:20:50Z"
        * A bounded interval: "2018-02-12T00:00:00Z/2018-03-18T12:31:12Z"
        * Half-bounded intervals: "2018-02-12T00:00:00Z/.." or "../2018-03-18T12:31:12Z"

        Only features that have a temporal property that intersects the value of
        `datetime` are selected.

        If a feature has multiple temporal properties, it is the decision of the
        server whether only a single temporal property is used to determine
        the extent or all relevant temporal properties.
      required: false
      schema:
        type: string
      style: form
      explode: false
    subset:
      name: subset
      in: query
      description: |
        Retrieve only part of the data by slicing or trimming along one or more axis
        For trimming: {axisAbbrev}({low}:{high}) (preserves dimensionality)
           An asterisk (`*`) can be used instead of {low} or {high} to indicate the minimum/maximum value.
        For slicing:  {axisAbbrev}({value})      (reduces dimensionality)
      style: form
      explode: false
      required: false
      schema:
        type: array
        items:
          type: string
    crs:
      name: crs
      in: query
      description: reproject the output to the given crs
      required: false
      style: form
      explode: true
      schema:
        type: string
    subset-crs:
      name: subset-crs
      in: query
      description: crs for the specified subset
      required: false
      style: form
      explode: true
      schema:
        type: string
    tileMatrix:
      name: tileMatrix
      in: path
      description: |-
        Identifier selecting one of the scales defined in the TileMatrixSet and representing the scaleDenominator the tile. For example,
        Ireland is fully within the Tile at WebMercatorQuad tileMatrix=5, tileRow=10 and tileCol=15.
      required: true
      schema:
        type: string
      example: '5'
    tileRow:
      name: tileRow
      in: path
      description: Row index of the tile on the selected TileMatrix. It cannot exceed
        the MatrixWidth-1 for the selected TileMatrix. For example, Ireland is fully
        within the Tile at WebMercatorQuad tileMatrix=5, tileRow=10 and tileCol=15.
      required: true
      schema:
        minimum: 0
        type: integer
      example: 10
    tileCol:
      name: tileCol
      in: path
      description: Column index of the tile on the selected TileMatrix. It cannot
        exceed the MatrixHeight-1 for the selected TileMatrix. For example, Ireland
        is fully within the Tile at WebMercatorQuad tileMatrix=5, tileRow=10 and tileCol=15.
      required: true
      schema:
        minimum: 0
        type: integer
      example: 15
    tileMatrixSetId:
      name: tileMatrixSetId
      in: path
      description: Identifier for a supported TileMatrixSet
      required: true
      allowEmptyValue: false
      schema:
        "$ref": "#/components/schemas/tileMatrixSets"
    f-mapTile:
      name: f
      in: query
      description: The format of the map tile response (e.g. png). Accepted values
        are 'png', 'jpg' or 'tiff' (GeoTIFF).
      required: false
      schema:
        type: string
        enum:
        - png
        - jpg
        - tiff
      style: form
      explode: false
    f-vectorTile:
      name: f
      in: query
      description: The format of the vector tile response (e.g. json). Accepted values
        are 'mvt' (Mapbox Vector Tiles) or 'json' (GeoJSON).
      required: false
      schema:
        type: string
        enum:
        - mvt
        - json
      style: form
      explode: false
    f-coverageTile:
      name: f
      in: query
      description: The format of the coverage tile response (e.g. tiff). Accepted
        values are 'tiff' (GeoTIFF), 'netcdf', or 'png'.
      required: false
      schema:
        type: string
        enum:
        - tiff
        - netcdf
        - png
      style: form
      explode: false
    bgcolor:
      name: bgcolor
      in: query
      description: Web color name or hexadecimal 0x[AA]RRGGBB color value for the
        background color (default to 0x9C9C9C gray). If alpha is not specified, full
        opacity is assumed.
      required: false
      style: form
      explode: false
      schema:
        type: string
        default: '0xFFFFFF'
    transparent:
      name: transparent
      in: query
      description: Background transparency of map (default=true).
      required: false
      style: form
      explode: false
      schema:
        type: boolean
        default: true
    styleId:
      name: styleId
      in: path
      description: An identifier representing a specific style.
      required: true
      allowEmptyValue: false
      schema:
        "$ref": "#/components/schemas/styles"
    styleId-collection:
      name: styleId
      in: path
      description: An identifier representing a specific style.
      required: true
      allowEmptyValue: false
      schema:
        type: string
  responses:
    NotFound:
      description: The requested resource does not exist on the server. For example,
        a path parameter had an incorrect value.
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/exception"
        text/html:
          schema:
            type: string
    NotAcceptable:
      description: Content negotiation failed. For example, the `Accept` header submitted
        in the request did not support any of the media types supported by the server
        for the requested resource.
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/exception"
        text/html:
          schema:
            type: string
    ServerError:
      description: A server error occurred.
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/exception"
        text/html:
          schema:
            type: string
    InvalidParameter:
      description: A query parameter has an invalid value.
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/exception"
        text/html:
          schema:
            type: string
    Exception:
      description: An error occured.
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/exception"
        text/html:
          schema:
            type: string
    LandingPage:
      description: |-
        The landing page provides links to the API definition (link relation `service-desc`, in this case path `/api`),
        to the Conformance declaration (path `/conformance`, link relation `conformance`), and to the Collections of geospatial data (path `/collections`, link relation `data`).
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/landingPage"
          example:
            title: Buildings in Bonn
            description: Access to data about buildings in the city of Bonn via a
              Web API that conforms to the OGC API Tiles specification.
            links:
            - href: http://data.example.org/
              rel: self
              type: application/json
              title: this document
            - href: http://data.example.org/api
              rel: service-desc
              type: application/vnd.oai.openapi+json;version=3.0
              title: the API definition
            - href: http://data.example.org/api.html
              rel: service-doc
              type: text/html
              title: the API documentation
            - href: http://data.example.org/conformance
              rel: conformance
              type: application/json
              title: OGC API conformance classes implemented by this service
            - href: http://data.example.org/collections
              rel: data
              type: application/json
              title: Information about the collections
        text/html:
          schema:
            type: string
    Conformance:
      description: The URIs of all conformance classes supported by the server
      content:
        application/json:
          schema:
            allOf:
            - "$ref": "#/components/schemas/confClasses"
            example:
              conformsTo:
              - http://www.opengis.net/spec/ogcapi-common-1/1.0/conf/core
              - http://www.opengis.net/spec/ogcapi-common-1/1.0/conf/json
              - http://www.opengis.net/spec/ogcapi-common-1/1.0/conf/html
              - http://www.opengis.net/spec/ogcapi-common-1/1.0/conf/oas30
              - http://www.opengis.net/spec/ogcapi-common-2/1.0/conf/collections
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/core
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/tileset
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/tilesets-list
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/geodata-tilesets
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/dataset-tilesets
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/geodata-selection
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/jpeg
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/png
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/mvt
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/geojson
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/tiff
              - http://www.opengis.net/spec/ogcapi-tiles-1/1.0/conf/netcdf
    API:
      description: The OpenAPI definition of the API.
      content:
        application/vnd.oai.openapi+json;version=3.0:
          schema:
            type: object
        text/html:
          schema:
            type: string
    Enumeration:
      description: An enumerated list of valid string values for API parameters.
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/enumeration"
        text/html:
          schema:
            type: string
    CollectionsList:
      description: |-
        The collections of (mostly geospatial) data available from this API. The dataset contains one or more collections. This resource provides information about and access to the collections. The response contains the list of collections. Each collection is accessible via one or more OGC API set of specifications, for which a link to relevant accessible resources, e.g. /collections/{collectionId}/(items, coverage, map, tiles...) is provided, with the corresponding relation type, as well as key information about the collection. This information includes:
        * a local identifier for the collection that is unique for the dataset;
        * a list of coordinate reference systems (CRS) in which data may be returned by the server. The first CRS is the default coordinate reference system (the default is always WGS 84 with axis order longitude/latitude);
        * an optional title and description for the collection;
        * an optional extent that can be used to provide an indication of the spatial and temporal extent of the collection - typically derived from the data;
        * for collections accessible via the Features or Records API, an optional indicator about the type of the items in the collection (the default value, if the indicator is not provided, is 'feature').
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/collections"
          example:
            links:
            - href: http://data.example.org/collections.json
              rel: self
              type: application/json
              title: this document
            - href: http://data.example.org/collections.html
              rel: alternate
              type: text/html
              title: this document as HTML
            - href: http://schemas.example.org/1.0/buildings.xsd
              rel: describedby
              type: application/xml
              title: GML application schema for Acme Corporation building data
            - href: http://download.example.org/buildings.gpkg
              rel: enclosure
              type: application/geopackage+sqlite3
              title: Bulk download (GeoPackage)
              length: 472546
            collections:
            - id: buildings
              title: Buildings
              description: Buildings in the city of Bonn.
              extent:
                spatial:
                  bbox:
                  - - 7.01
                    - 50.63
                    - 7.22
                    - 50.78
                temporal:
                  interval:
                  - - '2010-02-15T12:34:56Z'
                    -
              links:
              - href: http://data.example.org/collections/buildings/items
                rel: items
                type: application/geo+json
                title: Buildings
              - href: http://data.example.org/collections/buildings/items.html
                rel: items
                type: text/html
                title: Buildings
              - href: https://creativecommons.org/publicdomain/zero/1.0/
                rel: license
                type: text/html
                title: CC0-1.0
              - href: https://creativecommons.org/publicdomain/zero/1.0/rdf
                rel: license
                type: application/rdf+xml
                title: CC0-1.0
        text/html:
          schema:
            type: string
    Collection:
      description: |-
        Information about a particular collection of (mostly geospatial) data available from this API. The collection is accessible via one or more OGC API set of specifications, for which a link to relevant accessible resources, e.g. /collections/{collectionId}/(items, coverage, map, tiles...) is contained in the response, with the corresponding relation type, as well as key information about the collection. This information includes:
        * a local identifier for the collection that is unique for the dataset;
        * a list of coordinate reference systems (CRS) in which data may be returned by the server. The first CRS is the default coordinate reference system (the default is always WGS 84 with axis order longitude/latitude);
        * an optional title and description for the collection;
        * an optional extent that can be used to provide an indication of the spatial and temporal extent of the collection - typically derived from the data;
        * for collections accessible via the Features or Records API, an optional indicator about the type of the items in the collection (the default value, if the indicator is not provided, is 'feature').
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/collectionInfo"
          example:
            id: buildings
            title: Buildings
            description: Buildings in the city of Bonn.
            extent:
              spatial:
                bbox:
                - - 7.01
                  - 50.63
                  - 7.22
                  - 50.78
              temporal:
                interval:
                - - '2010-02-15T12:34:56Z'
                  -
            links:
            - href: http://data.example.org/collections/buildings/items
              rel: items
              type: application/geo+json
              title: Buildings
            - href: http://data.example.org/collections/buildings/items.html
              rel: items
              type: text/html
              title: Buildings
            - href: https://creativecommons.org/publicdomain/zero/1.0/
              rel: license
              type: text/html
              title: CC0-1.0
            - href: https://creativecommons.org/publicdomain/zero/1.0/rdf
              rel: license
              type: application/rdf+xml
              title: CC0-1.0
        text/html:
          schema:
            type: string
    TileSetsList:
      description: List of available tilesets.
      content:
        application/json:
          schema:
            type: object
            required:
            - tilesets
            properties:
              links:
                type: array
                items:
                  "$ref": "#/components/schemas/link"
              tilesets:
                type: array
                items:
                  "$ref": "#/components/schemas/tileSet-item"
        text/html:
          schema:
            type: string
    TileSet:
      description: Description of the tileset
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/tileSet"
        text/html:
          schema:
            type: string
    MapTile:
      description: A map tile image returned as a response.
      content:
        image/png:
          schema:
            type: string
            format: binary
        image/jpeg:
          schema:
            type: string
            format: binary
        image/tiff; application=geotiff:
          schema:
            type: string
            format: binary
    CoverageTile:
      description: A coverage tile returned as a response.
      content:
        application/netcdf:
          schema:
            type: string
            format: binary
        image/tiff; application=geotiff:
          schema:
            type: string
            format: binary
    VectorTile:
      description: A vector tile returned as a response.
      content:
        application/vnd.mapbox-vector-tile:
          schema:
            type: string
            format: binary
        application/geo+json:
          schema:
            allOf:
            - format: geojson-feature-collection
            - "$ref": "#/components/schemas/FeatureCollection"
    EmptyTile:
      description: No data available for this tile.
    TileMatrixSetsList:
      description: List of tile matrix sets (tiling schemes).
      content:
        application/json:
          schema:
            type: object
            properties:
              tileMatrixSets:
                type: array
                items:
                  "$ref": "#/components/schemas/tileMatrixSet-item"
        text/html:
          schema:
            type: string
    TileMatrixSet:
      description: tile matrix set
      content:
        application/json:
          schema:
            "$ref": "#/components/schemas/tileMatrixSet"