Skip to content

Commit

Permalink
Add schema of return value for child processes #350
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Dec 21, 2020
1 parent abed573 commit b62e7c0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5311,13 +5311,27 @@ components:
properties:
parameters:
type: array
title: Process Graph Parameters
description: |-
A list of parameters passed to the child process graph.
The order in the array corresponds to the parameter order to
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:
Expand Down

0 comments on commit b62e7c0

Please sign in to comment.