@@ -61,6 +61,12 @@ curl http://127.0.0.1:8081 | jq
6161 "type" : " application/json" ,
6262 "title" : " Collection metadata"
6363 },
64+ {
65+ "href" : " http://127.0.0.1:8081/collections/{collectionId}/queryables" ,
66+ "rel" : " queryables" ,
67+ "type" : " application/schema+json" ,
68+ "title" : " Collection queryables"
69+ },
6470 {
6571 "href" : " http://127.0.0.1:8081/collections/{collectionId}/items" ,
6672 "rel" : " data" ,
@@ -108,7 +114,8 @@ curl http://127.0.0.1:8081/conformance | jq
108114 " http://www.opengis.net/spec/ogcapi-common-1/1.0/conf/oas30" ,
109115 " http://www.opengis.net/spec/ogcapi-common-2/1.0/conf/collections" ,
110116 " http://www.opengis.net/spec/ogcapi-common-2/1.0/conf/simple-query" ,
111- " http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter,"
117+ " http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter," ,
118+ " http://www.opengis.net/def/rel/ogc/1.0/queryables"
112119 ]
113120}
114121```
@@ -146,6 +153,11 @@ curl http://127.0.0.1:8081/collections | jq
146153 "href" : " http://127.0.0.1:8081/collections/public.countries/items" ,
147154 "rel" : " items" ,
148155 "type" : " application/geo+json"
156+ },
157+ {
158+ "href" : " http://127.0.0.1:8081/collections/public.countries/queryables" ,
159+ "rel" : " queryables" ,
160+ "type" : " application/schema+json"
149161 }
150162 ],
151163 "itemType" : " feature" ,
@@ -214,6 +226,11 @@ curl http://127.0.0.1:8081/collections/public.countries | jq
214226 "href" : " http://127.0.0.1:8081/collections/public.countries/items" ,
215227 "rel" : " items" ,
216228 "type" : " application/geo+json"
229+ },
230+ {
231+ "href" : " http://127.0.0.1:8081/collections/public.countries/queryables" ,
232+ "rel" : " queryables" ,
233+ "type" : " application/schema+json"
217234 }
218235 ],
219236 "itemType" : " feature" ,
0 commit comments