Skip to content

Commit 03d39a9

Browse files
committed
Input details
1 parent 96cd4aa commit 03d39a9

File tree

1 file changed

+38
-2
lines changed

1 file changed

+38
-2
lines changed

schemas/workflowExecutionMatrix.schema.json

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,33 @@
44
"title": "Schema for the workflow execution matrix",
55
"type": "object",
66
"definitions": {
7+
"inputDetails": {
8+
"type": "array",
9+
"items": {
10+
"type": "object",
11+
"properties": {
12+
"seriesDescription": {
13+
"type": "string"
14+
},
15+
"sliceThickness": {
16+
"type": "number"
17+
},
18+
"pixelSpacing": {
19+
"type": "array",
20+
"items": {
21+
"type": "number"
22+
}
23+
},
24+
"dim": {
25+
"type": "array",
26+
"items": {
27+
"type": "number"
28+
}
29+
}
30+
},
31+
"additionalProperties": false
32+
}
33+
},
734
"configuration": {
835
"type": "object",
936
"properties": {
@@ -996,6 +1023,9 @@
9961023
},
9971024
"matrix": {
9981025
"$ref": "#/definitions/matrix"
1026+
},
1027+
"inputDetails": {
1028+
"$ref": "#definitions/inputDetails"
9991029
}
10001030
},
10011031
"required": [
@@ -1007,7 +1037,8 @@
10071037
"statistics",
10081038
"inputConfig",
10091039
"creationDate",
1010-
"modificationDate"
1040+
"modificationDate",
1041+
"inputDetails"
10111042
]
10121043
},
10131044
"getWorkflowExecutionMatrixStep4Response": {
@@ -1111,6 +1142,10 @@
11111142
}
11121143
]
11131144
},
1145+
1146+
"inputDetails": {
1147+
"$ref": "#definitions/inputDetails"
1148+
},
11141149
"completion": {
11151150
"type": "object",
11161151
"properties": {
@@ -1146,7 +1181,8 @@
11461181
"inputConfig",
11471182
"creationDate",
11481183
"modificationDate",
1149-
"completion"
1184+
"completion",
1185+
"inputDetails"
11501186
]
11511187
},
11521188
"getWorkflowExecutionMatrixStep1Response": {

0 commit comments

Comments
 (0)