You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: engine/src/main/resources/swagger/cromwell.yaml
+14-21Lines changed: 14 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -607,7 +607,7 @@ paths:
607
607
'400':
608
608
$ref: '#/responses/BadRequest'
609
609
'404':
610
-
description: No matching cache entry. Cromwell versions prior to 28 will not have recorded information necessary for this endpoint and thus will also appear to not exist.
610
+
description: No matching cache entry. Cromwell versions prior to 28 will not have recorded information necessary for this endpoint and thus will also appear to not exist.
611
611
'500':
612
612
$ref: '#/responses/ServerError'
613
613
'/api/workflows/{version}/backends':
@@ -1035,10 +1035,6 @@ definitions:
1035
1035
example: Submitted
1036
1036
WorkflowMetadataResponse:
1037
1037
description: Workflow and call level metadata
1038
-
required:
1039
-
- id
1040
-
- status
1041
-
- submission
1042
1038
properties:
1043
1039
id:
1044
1040
type: string
@@ -1067,12 +1063,11 @@ definitions:
1067
1063
calls:
1068
1064
$ref: '#/definitions/CallMetadata'
1069
1065
failures:
1070
-
$ref: '#/definitions/FailureMessage'
1066
+
type: array
1067
+
items:
1068
+
$ref: '#/definitions/FailureMessage'
1071
1069
CallMetadata:
1072
1070
description: Call level metadata
1073
-
required:
1074
-
- inputs
1075
-
- executionStatus
1076
1071
properties:
1077
1072
inputs:
1078
1073
type: object
@@ -1098,7 +1093,9 @@ definitions:
1098
1093
type: string
1099
1094
description: Backend-specific job ID
1100
1095
failures:
1101
-
$ref: '#/definitions/FailureMessage'
1096
+
type: array
1097
+
items:
1098
+
$ref: '#/definitions/FailureMessage'
1102
1099
returnCode:
1103
1100
type: integer
1104
1101
description: Call execution return code
@@ -1113,17 +1110,14 @@ definitions:
1113
1110
description: Paths to backend specific logs for this call
1114
1111
FailureMessage:
1115
1112
description: Failure messages
1116
-
required:
1117
-
- failure
1118
-
- timestamp
1119
1113
properties:
1120
-
failure:
1114
+
message:
1121
1115
type: string
1122
1116
description: The failure message
1123
-
timestamp:
1124
-
type: string
1125
-
format: date-time
1126
-
description: The time at which this failure occurred
1117
+
causedBy:
1118
+
type: array
1119
+
items:
1120
+
$ref: '#/definitions/FailureMessage'
1127
1121
WorkflowDescription:
1128
1122
required:
1129
1123
- valid
@@ -1212,9 +1206,9 @@ definitions:
1212
1206
typeName: Pair
1213
1207
pairTypes:
1214
1208
- leftType:
1215
-
- typeName: Int
1209
+
- typeName: Int
1216
1210
- rightType:
1217
-
- typeName: String
1211
+
- typeName: String
1218
1212
optional: false
1219
1213
default: null
1220
1214
typeDisplayName: Pair[Int, String]
@@ -1959,4 +1953,3 @@ definitions:
1959
1953
are also allowed. The version should be changed whenever the service
0 commit comments