@@ -373,8 +373,10 @@ def landing_page(self, **kwargs) -> stac_types.LandingPage:
373
373
if self .extension_is_enabled ("FilterExtension" ):
374
374
landing_page ["links" ].append (
375
375
{
376
- "rel" : Relations .queryables .value ,
377
- "type" : MimeTypes .jsonschema ,
376
+ # TODO: replace this with Relations.queryables.value,
377
+ "rel" : "http://www.opengis.net/def/rel/ogc/1.0/queryables" ,
378
+ # TODO: replace this with MimeTypes.jsonschema,
379
+ "type" : "application/schema+json" ,
378
380
"title" : "Queryables" ,
379
381
"href" : urljoin (base_url , "queryables" ),
380
382
"method" : "GET" ,
@@ -583,8 +585,10 @@ async def landing_page(self, **kwargs) -> stac_types.LandingPage:
583
585
if self .extension_is_enabled ("FilterExtension" ):
584
586
landing_page ["links" ].append (
585
587
{
586
- "rel" : Relations .queryables .value ,
587
- "type" : MimeTypes .jsonschema ,
588
+ # TODO: replace this with Relations.queryables.value,
589
+ "rel" : "http://www.opengis.net/def/rel/ogc/1.0/queryables" ,
590
+ # TODO: replace this with MimeTypes.jsonschema,
591
+ "type" : "application/schema+json" ,
588
592
"title" : "Queryables" ,
589
593
"href" : urljoin (base_url , "queryables" ),
590
594
"method" : "GET" ,
0 commit comments