Skip to content

Commit

Permalink
Merge pull request #123 from constantinius/queryables
Browse files Browse the repository at this point in the history
Adding `queryables` link relation type
  • Loading branch information
vincentsarago authored Apr 11, 2024
2 parents f682826 + 5a44813 commit 389706f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
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

0 comments on commit 389706f

Please sign in to comment.