From b62e7c04178b136007e3f87048827559c11bd79d Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Mon, 21 Dec 2020 19:02:07 +0100 Subject: [PATCH] Add schema of return value for child processes #350 --- openapi.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index e8d0b246..8e36de12 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -5311,6 +5311,7 @@ components: properties: parameters: type: array + title: Process Graph Parameters description: |- A list of parameters passed to the child process graph. @@ -5318,6 +5319,19 @@ components: be used in clients that don't support named parameters. items: $ref: '#/components/schemas/parameter' + returns: + type: object + title: Process Graph Return Value + description: Description of the data that is returned by the child process graph. + required: + - schema + properties: + description: + $ref: '#/components/schemas/process_description' + schema: + $ref: '#/components/schemas/data_type_schema' + allOf: + - $ref: '#/components/schemas/json_schema' allOf: - $ref: '#/components/schemas/json_schema' json_schema: