diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2023-11-13 10:49:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 10:49:14 +0100 |
commit | 0feb55ee93b579bfcba30410325ca0c28f501779 (patch) | |
tree | 57f0752858983b0ba52344ca32c7c9a905b1c126 /core/openapi.json | |
parent | 36d370b2163ac2a98dbecf2400eb1300025b79b2 (diff) | |
parent | 2031fe17b4f6b48d3b72fee520285dde37488afb (diff) | |
download | nextcloud-server-0feb55ee93b579bfcba30410325ca0c28f501779.tar.gz nextcloud-server-0feb55ee93b579bfcba30410325ca0c28f501779.zip |
Merge pull request #41271 from nextcloud/enh/text-processing-iprovider2
enh(TextProcessing): Add two new provider interfaces
Diffstat (limited to 'core/openapi.json')
-rw-r--r-- | core/openapi.json | 46 |
1 files changed, 45 insertions, 1 deletions
diff --git a/core/openapi.json b/core/openapi.json index a63d9380db7..b703cfff79f 100644 --- a/core/openapi.json +++ b/core/openapi.json @@ -416,7 +416,8 @@ "appId", "input", "output", - "identifier" + "identifier", + "completionExpectedAt" ], "properties": { "id": { @@ -447,6 +448,11 @@ }, "identifier": { "type": "string" + }, + "completionExpectedAt": { + "type": "integer", + "format": "int64", + "nullable": true } } }, @@ -4684,6 +4690,44 @@ } } }, + "500": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "ocs" + ], + "properties": { + "ocs": { + "type": "object", + "required": [ + "meta", + "data" + ], + "properties": { + "meta": { + "$ref": "#/components/schemas/OCSMeta" + }, + "data": { + "type": "object", + "required": [ + "message" + ], + "properties": { + "message": { + "type": "string" + } + } + } + } + } + } + } + } + } + }, "400": { "description": "Scheduling task is not possible", "content": { |