diff --git a/stac_fastapi/types/stac_fastapi/types/core.py b/stac_fastapi/types/stac_fastapi/types/core.py index a704ae49b..d915d465f 100644 --- a/stac_fastapi/types/stac_fastapi/types/core.py +++ b/stac_fastapi/types/stac_fastapi/types/core.py @@ -373,8 +373,10 @@ def landing_page(self, **kwargs) -> stac_types.LandingPage: if self.extension_is_enabled("FilterExtension"): landing_page["links"].append( { - "rel": Relations.queryables.value, - "type": MimeTypes.jsonschema, + # TODO: replace this with Relations.queryables.value, + "rel": "http://www.opengis.net/def/rel/ogc/1.0/queryables", + # TODO: replace this with MimeTypes.jsonschema, + "type": "application/schema+json", "title": "Queryables", "href": urljoin(base_url, "queryables"), "method": "GET", @@ -583,8 +585,10 @@ async def landing_page(self, **kwargs) -> stac_types.LandingPage: if self.extension_is_enabled("FilterExtension"): landing_page["links"].append( { - "rel": Relations.queryables.value, - "type": MimeTypes.jsonschema, + # TODO: replace this with Relations.queryables.value, + "rel": "http://www.opengis.net/def/rel/ogc/1.0/queryables", + # TODO: replace this with MimeTypes.jsonschema, + "type": "application/schema+json", "title": "Queryables", "href": urljoin(base_url, "queryables"), "method": "GET",