Skip to content

Commit a7e8f23

Browse files
committed
arguments and process_graph can't be used together in process examples.
1 parent e53c04d commit a7e8f23

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6767
### Fixed
6868

6969
- Service parameters and attributes in `GET /service_types` and output format parameters in `GET /file_formats` (previously `GET /output_formats`) now have a `type`, which was previously only mentioned in examples.
70+
- `GET /processes`: Parameters `arguments` and `process_graph` can't be used together in process examples.
7071
- Clarified how clients and back-ends should implement well-known discovery for `GET ./well-known/openeo`. [#202](https://github.com/Open-EO/openeo-api/issues/202)
7172

7273
## [0.4.2] - 2019-06-11

openapi.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4802,19 +4802,21 @@ components:
48024802
- title: Process Example with Process Graph
48034803
required:
48044804
- process_graph
4805+
properties:
4806+
process_graph:
4807+
$ref: '#/components/schemas/process_graph'
48054808
- title: Process Example with Arguments
48064809
required:
48074810
- arguments
4811+
properties:
4812+
arguments:
4813+
$ref: '#/components/schemas/process_arguments'
48084814
properties:
48094815
title:
48104816
type: string
48114817
description: A title for the example.
48124818
description:
48134819
$ref: '#/components/schemas/process_description'
4814-
process_graph:
4815-
$ref: '#/components/schemas/process_graph'
4816-
arguments:
4817-
$ref: '#/components/schemas/process_arguments'
48184820
returns:
48194821
nullable: true
48204822
links:

0 commit comments

Comments
 (0)