Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **New extensions:**
- [Remote Process Definition Extension](./extensions/remote-process-definition/README.md)
- [Processing Parameters Extension](./extensions/processing-parameters/README.md)
- `GET /`: New relation type `web-editor` [#577](https://github.com/Open-EO/openeo-api/issues/577)
- `GET /credentials/oidc`: Added `authorization_parameters` property to enforce specific parameters for the authorization endpoint [#534](https://github.com/Open-EO/openeo-api/issues/534)
- `POST /result`: Added response header "OpenEO-Identifier" to expose an identifier associated with a synchronous processing request.
- Added `stacktrace` to log entries (e.g. for `GET /jobs/{job_id}/logs`) [#512](https://github.com/Open-EO/openeo-api/issues/512)
Expand Down
10 changes: 10 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,11 @@ paths:
recover a user account (e.g. to reset the password or send
a reminder about the username to the user's email account).

9. `web-editor`: A link to an openEO Web Editor instance.
This allows clients to open a Web Editor for other tasks.
It may be accompanied with a `version` flag in the link
to allow feature-detection for certain Web Editor functionalities.

For additional relation types see also the lists of
[common relation types in openEO](#section/API-Principles/Web-Linking).
type: array
Expand Down Expand Up @@ -920,6 +925,11 @@ paths:
rel: data
type: application/json
title: List of Datasets
- href: 'https://editor.openeo.org'
rel: web-editor
type: text/html
title: openEO Web Editor
version: '0.14.0'
4XX:
$ref: '#/components/responses/client_error'
5XX:
Expand Down