aboutsummaryrefslogtreecommitdiffstats
path: root/core/openapi-ex_app.json
diff options
context:
space:
mode:
Diffstat (limited to 'core/openapi-ex_app.json')
-rw-r--r--core/openapi-ex_app.json10
1 files changed, 8 insertions, 2 deletions
diff --git a/core/openapi-ex_app.json b/core/openapi-ex_app.json
index 95a86e8e112..4dad268c1b3 100644
--- a/core/openapi-ex_app.json
+++ b/core/openapi-ex_app.json
@@ -181,8 +181,12 @@
"$ref": "#/components/schemas/TaskProcessingIO"
},
"output": {
- "$ref": "#/components/schemas/TaskProcessingIO",
- "nullable": true
+ "nullable": true,
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/TaskProcessingIO"
+ }
+ ]
},
"customId": {
"type": "string",
@@ -754,6 +758,7 @@
"output": {
"type": "object",
"nullable": true,
+ "default": null,
"description": "The resulting task output, files are represented by their IDs",
"additionalProperties": {
"type": "object"
@@ -762,6 +767,7 @@
"errorMessage": {
"type": "string",
"nullable": true,
+ "default": null,
"description": "An error message if the task failed"
}
}