Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

* Add `/queryables` link to the landing page ([#587](https://github.com/stac-utils/stac-fastapi/pull/587))

## [2.4.8] - 2023-06-07

### Changed
Expand Down
7 changes: 7 additions & 0 deletions stac_fastapi/types/stac_fastapi/types/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,13 @@ def _landing_page(
"href": urljoin(base_url, "search"),
"method": "POST",
},
{
"rel": Relations.queryables.value,
"type": MimeTypes.jsonschema,
"title": "Queryables",
"href": urljoin(base_url, "queryables"),
"method": "GET",
},
],
stac_extensions=extension_schemas,
)
Expand Down