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

Add openEO processes version #517 #549

Merged
merged 4 commits into from
Nov 20, 2024
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 @@ -10,6 +10,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)
- Added `version` property to `GET /processes` [#517](https://github.com/Open-EO/openeo-api/issues/517)

### Fixed

Expand Down
13 changes: 12 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ paths:
api_version:
type: string
description: >-
Version number of the openEO specification this back-end
Version number of the openEO API specification this back-end
implements.
enum:
- 1.2.0
Expand Down Expand Up @@ -1660,6 +1660,17 @@ paths:
- processes
- links
properties:
version:
type: string
nullable: true
description: >-
Version number of the openEO process specification this back-end
targets.
If not provided or `null`, the version is either unknown or multiple versions are implemented.
Clients must be able to handle multiple process specification versions at the same time.

This is **not** the openEO API specification version.
example: 1.2.0
processes:
type: array
items:
Expand Down
Loading