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

Pull some of the endpoints out of their coma #181

Merged
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
14 changes: 7 additions & 7 deletions docs/src/user_guide/endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ QueryParams:

- **limit** (int): Limits the number of collections in the response.
- **offset** (int): Collection's offset.
- **bbox** (str): Coma (,) delimited bbox coordinates to spatially filter collection in `minx,miny,maxx,maxy` form.
- **bbox** (str): Comma (,) delimited bbox coordinates to spatially filter collection in `minx,miny,maxx,maxy` form.
- **datetime** (str): Single datetime or `/` delimited datetime intervals to temporally filter features.

- interval-bounded = `date-time/date-time`
Expand Down Expand Up @@ -412,16 +412,16 @@ QueryParams:

- **limit** (int): Limits the number of features in the response. Defaults to 10.
- **offset** (int): Features offset.
- **bbox** (str): Coma (,) delimited bbox coordinates to spatially filter features in `minx,miny,maxx,maxy` form.
- **bbox** (str): Comma (,) delimited bbox coordinates to spatially filter features in `minx,miny,maxx,maxy` form.
- **datetime** (str): Single datetime or `/` delimited datetime intervals to temporally filter features.

- interval-bounded = `date-time/date-time`
- interval-half-bounded-start = `../date-time`
- interval-half-bounded-end = `date-time/..`
- datetime = `date-time`

- **ids** * (str): Coma (,) delimited list of item Ids.
- **properties** * (str): Coma (,) delimited list of item properties to return in each feature.
- **ids** * (str): Comma (,) delimited list of item Ids.
- **properties** * (str): Comma (,) delimited list of item properties to return in each feature.
- **filter** (str): CQL2 filter as defined by https://docs.ogc.org/DRAFTS/19-079r1.html#rc_filter
- **filter-lang** (str, one of [`cql2-text`, `cql2-json`]): `Filter` language. Defaults to `cql2-text`.
- **geom-column** * (str): Select geometry column to apply filter on and to create geometry from.
Expand Down Expand Up @@ -588,16 +588,16 @@ PathParams:
QueryParams:

- **limit** (int): Limits the number of features in the response. Defaults to 10000.
- **bbox** (str): Coma (,) delimited bbox coordinates to spatially filter features in `minx,miny,maxx,maxy` form.
- **bbox** (str): Comma (,) delimited bbox coordinates to spatially filter features in `minx,miny,maxx,maxy` form.
- **datetime** (str): Single datetime or `/` delimited datetime intervals to temporally filter features.

- interval-bounded = `date-time/date-time`
- interval-half-bounded-start = `../date-time`
- interval-half-bounded-end = `date-time/..`
- datetime = `date-time`

- **ids** * (str): Coma (,) delimited list of item Ids.
- **properties** * (str): Coma (,) delimited list of item properties to return in each feature.
- **ids** * (str): Comma (,) delimited list of item Ids.
- **properties** * (str): Comma (,) delimited list of item properties to return in each feature.
- **filter** (str): CQL2 filter as defined by https://docs.ogc.org/DRAFTS/19-079r1.html#rc_filter
- **filter-lang** (str, one of [`cql2-text`, `cql2-json`]): `Filter` language. Defaults to `cql2-text`.
- **geom-column** * (str): Select geometry column to apply filter on and to create geometry from.
Expand Down