Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding queryables link relation type #123

Merged
merged 5 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Update pre-commit configuration and switch to astral-sh/ruff for linter and formater
- Add official support for python 3.12
- Enforce required `type` key for `Collection` and `Catalog` models
- Add queryables link relation type (#123, @constantinius)

3.0.0 (2024-01-25)
------------------
Expand Down
1 change: 1 addition & 0 deletions stac_pydantic/links.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,4 @@ class Relations(str, AutoValueEnum):
data = auto()
service_desc = "service-desc"
service_doc = "service-doc"
queryables = "http://www.opengis.net/def/rel/ogc/1.0/queryables"
1 change: 1 addition & 0 deletions stac_pydantic/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class MimeTypes(str, Enum):
html = "text/html"
text = "text/plain"
openapi = "application/vnd.oai.openapi+json;version=3.0"
jsonschema = "application/schema+json"


class AssetRoles(str, AutoValueEnum):
Expand Down
Loading