Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,12 @@ paths:
items:
$ref: "#/components/schemas/LocalEvaluation"
description: Optional array of local evaluations
path:
type: array
items:
$ref: "#/components/schemas/RunPathSection"
description: Optional path which describes the organizational hierarchy of this test run in relation to all the pipeline tests.
nullable: true
error:
type: string
nullable: true
Expand Down Expand Up @@ -434,6 +440,12 @@ paths:
type: array
items:
$ref: "#/components/schemas/StepRun"
path:
type: array
items:
$ref: "#/components/schemas/RunPathSection"
description: Optional path which describes the organizational hierarchy of this test run in relation to all the pipeline tests.
nullable: true
error:
type: string
nullable: true
Expand Down Expand Up @@ -584,6 +596,12 @@ paths:
items:
$ref: "#/components/schemas/LocalEvaluation"
description: Optional array of local evaluations
path:
type: array
items:
$ref: "#/components/schemas/RunPathSection"
description: Optional path which describes the organizational hierarchy of this test run in relation to all the pipeline tests.
nullable: true
error:
type: string
nullable: true
Expand Down Expand Up @@ -658,6 +676,12 @@ paths:
type: object
additionalProperties: true
description: The returned outputs for the test case
path:
type: array
items:
$ref: "#/components/schemas/RunPathSection"
description: Optional path which describes the organizational hierarchy of this test run in relation to all the pipeline tests.
nullable: true
error:
type: string
nullable: true
Expand Down Expand Up @@ -1877,6 +1901,18 @@ components:
nullable: true
description: Error message if the test run failed

RunPathSection:
type: object
properties:
type:
type: string
enum: ["suite"]
name:
type: string
required:
- type
- name

FullRun:
type: object
required:
Expand Down Expand Up @@ -1933,6 +1969,11 @@ components:
additionalProperties:
$ref: "#/components/schemas/MetadataValueObject"
nullable: true
path:
type: array
items:
$ref: "#/components/schemas/RunPathSection"
nullable: true
error:
type: string
nullable: true
Expand Down Expand Up @@ -1961,6 +2002,11 @@ components:
resultId:
type: string
format: uuid
path:
type: array
items:
$ref: "#/components/schemas/RunPathSection"
nullable: true

ExpandedPipeline:
allOf:
Expand Down