Skip to content

Commit

Permalink
Merge pull request #150 from stac-utils/patch/optional-limit
Browse files Browse the repository at this point in the history
optional limit in search query
  • Loading branch information
vincentsarago authored May 20, 2024
2 parents f714c66 + 9aef470 commit b18cc74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- move datetime validation in `StacCommonMetadata` model definition (#131, @eseglem)
- use `StacBaseModel` as base model for `Asset` model (#148, @vincentsarago)
- add `license` in `StacCommonMetadata` model (#147, @vincentsarago)
- make `limit` optional in `api.Search` model (#150, @vincentsarago)

3.0.0 (2024-01-25)
------------------
Expand Down
2 changes: 1 addition & 1 deletion stac_pydantic/api/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Search(BaseModel):
bbox: Optional[BBox] = None
intersects: Optional[Intersection] = None
datetime: Optional[str] = None
limit: int = 10
limit: Optional[int] = 10

# Private properties to store the parsed datetime values. Not part of the model schema.
_start_date: Optional[dt] = None
Expand Down

0 comments on commit b18cc74

Please sign in to comment.