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

Item search POST clarification #79

Merged
merged 4 commits into from
Dec 4, 2020
Merged
Show file tree
Hide file tree
Changes from 3 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: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ the specification takes place in the [issue tracker](https://github.com/radiante

## In this repository

The **[Overview](OVERVIEW.md)** document describes all the various parts of the STAC API and how they fit together.
The **[Overview](overview.md)** document describes all the various parts of the STAC API and how they fit together.

**STAC API - Core Specification:**
The main description of the core STAC API specification is in the *[core](core/)* folder and
Expand Down
4 changes: 3 additions & 1 deletion item-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Implementing `GET /search` is **required**, `POST /search` is optional, but reco

It is **required** to add a Link to the root endpoint (`/`) with the `rel` type set to `search`
that refers to the search endpoint in the `href` property,
with a `type` of `application/geo+json` and a `method` of either `GET` or `POST`.
with a `type` of `application/geo+json` and a `method` of either `GET`.
m-mohr marked this conversation as resolved.
Show resolved Hide resolved
This link should look like:

```json
Expand All @@ -29,6 +29,8 @@ This link should look like:
}
```

Implementations that support `POST` must add a second link with the same structure, but has a `method` of `POST`.

## Query Parameters and Fields

The following list of parameters is used to narrow search queries. They can all be represented as query string parameters
Expand Down