Skip to content

Commit

Permalink
Merge pull request #155 from ga4gh/issue/76
Browse files Browse the repository at this point in the history
Making file type an optional argument
  • Loading branch information
kellrott committed Sep 21, 2022
2 parents 70b8270 + 88c8b1b commit dfbda82
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions openapi/task_execution_service.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -370,14 +370,17 @@ components:
description: ExecutorLog describes logging information related to an Executor.
tesFileType:
type: string
description: |-
Define if input/output element is a file or a directory. It is not required
that the user provide this value, but it is required that the server fill in the
value once the information is avalible at run time.
default: FILE
enum:
- FILE
- DIRECTORY
tesInput:
required:
- path
- type
type: object
properties:
name:
Expand Down Expand Up @@ -437,7 +440,6 @@ components:
tesOutput:
required:
- path
- type
- url
type: object
properties:
Expand Down Expand Up @@ -566,7 +568,7 @@ components:
backend_parameters_strict:
type: boolean
description: |-
If set to true, backends should fail the task if any backend_parameters
If set to true, backends should fail the task if any backend_parameters
key/values are unsupported, otherwise, backends should attempt to run the task
format: boolean
default: false
Expand Down Expand Up @@ -601,7 +603,7 @@ components:
tesResources_backend_parameters:
type: array
description: |-
Lists all tesResources.backend_parameters keys supported
Lists all tesResources.backend_parameters keys supported
by the service
items:
type: string
Expand Down

0 comments on commit dfbda82

Please sign in to comment.