Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 4 additions & 2 deletions item-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,13 @@ parameter name is defined by the implementor and is not necessarily part of the
"links": [
{
"rel": "next",
"href": "http://api.cool-sat.com/search?page=3"
"href": "http://api.cool-sat.com/search?page=3",
"type": "application/geo+json"
},
{
"rel": "prev",
"href": "http://api.cool-sat.com/search?page=1"
"href": "http://api.cool-sat.com/search?page=1",
"type": "application/geo+json"
}
]
}
Expand Down
6 changes: 5 additions & 1 deletion item-search/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ Response with `200 OK`:
"links": [
{
"rel": "next",
"href": "http://api.cool-sat.com/search?page=2"
"href": "http://api.cool-sat.com/search?page=2",
"type": "application/geo+json"
}
]
}
Expand All @@ -58,6 +59,7 @@ Response with `200 OK`:
{
"rel": "next",
"href": "http://api.cool-sat.com/search",
"type": "application/geo+json",
"method": "POST",
"body": {
"page": 2,
Expand Down Expand Up @@ -89,6 +91,7 @@ Response with `200 OK`:
{
"rel": "next",
"href": "http://api.cool-sat.com/search",
"type": "application/geo+json",
"method": "POST",
"body": {
"next": "a9f3kfbc98e29a0da23"
Expand Down Expand Up @@ -123,6 +126,7 @@ Response with `200 OK`:
{
"rel": "next",
"href": "http://api.cool-sat.com/search",
"type": "application/geo+json",
"method": "POST",
"headers": {
"Search-After": "LC81530752019135LGN00"
Expand Down
9 changes: 6 additions & 3 deletions ogcapi-features/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ or `token` and any additional filter parameters if given and required. For examp
"links": [
{
"rel": "next",
"href": "http://api.cool-sat.com/collections/my_collection/items?page=2"
"href": "http://api.cool-sat.com/collections/my_collection/items?page=2",
"type": "application/geo+json"
}
]
```
Expand Down Expand Up @@ -175,11 +176,13 @@ previous (page=2) pages:
...
{
"rel": "prev",
"href": "http://api.cool-sat.com/collections?page=2"
"href": "http://api.cool-sat.com/collections?page=2",
"type": "application/geo+json"
},
{
"rel": "next",
"href": "http://api.cool-sat.com/collections?page=4"
"href": "http://api.cool-sat.com/collections?page=4",
"type": "application/geo+json"
}
]
```
Expand Down