We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Results returned from following routes should support paging and add additional metadata:
GET /processes
GET /proceses/{id}/jobs
Additional paging metadata should be defined as in follow:
{ <...>, "links": [ { "href": "<this_url_path>?page=<page>&limit=<limit>", "rel": "self", "type": "application/json", "title": "This page results" }, { "href": "<this_url_path>?page=0&limit=<limit>", "rel": "first", "type": "application/json", "title": "This page results" }, { "href": "<this_url_path>?page=<page-1>&limit=<limit>", "rel": "prev", "type": "application/json", "title": "Previous page results" }, { "href": "<this_url_path>?page=<page+1>&limit=<limit>", "rel": "next", "type": "application/json", "title": "Next page results" }, { "href": "<this_url_path>?page=<max(page)>&limit=<limit>", "rel": "last", "type": "application/json", "title": "Last page results" } ] }
see example: https://github.com/opengeospatial/oapi_common/blob/master/standard/examples/collections_metadata_JSON_1.adoc
The text was updated successfully, but these errors were encountered:
fmigneault
No branches or pull requests
Results returned from following routes should support paging and add additional metadata:
GET /processes
GET /proceses/{id}/jobs
Additional paging metadata should be defined as in follow:
see example:
https://github.com/opengeospatial/oapi_common/blob/master/standard/examples/collections_metadata_JSON_1.adoc
The text was updated successfully, but these errors were encountered: