Skip to content

Commit

Permalink
fix(openapi): Minor YAML fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Diwank Tomer <[email protected]>
  • Loading branch information
Diwank Tomer committed Jul 12, 2024
1 parent 02dc028 commit 9a5a894
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1344,7 +1344,7 @@ paths:
- in: path
name: task_id
description: ''
schema: &ref_3
schema:
type: string
format: uuid
required: true
Expand All @@ -1364,7 +1364,9 @@ paths:
- in: path
name: execution_id
description: ''
schema: *ref_3
schema:
type: string
format: uuid
required: true
put:
summary: Stop an Execution by ID
Expand Down Expand Up @@ -1392,35 +1394,41 @@ paths:
responses:
'200':
description: ''
headers: *ref_4
headers: {}
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ExecutionTransition'
security: *ref_5
security:
- api-key: []
summary: List Transitions of an Execution
parameters:
- *ref_6
- in: path
name: execution_id
description: ''
schema:
type: string
format: uuid
required: true
/executions/{execution_id}/transitions/{transition_id}:
get:
description: ''
operationId: GetExecutionTransition
responses:
'200':
description: ''
headers: &ref_4 {}
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/ExecutionTransition'
security: &ref_5
security:
- api-key: []
summary: Get an Execution Transition
parameters:
- &ref_6
in: path
- in: path
name: execution_id
description: ''
schema:
Expand Down

0 comments on commit 9a5a894

Please sign in to comment.