diff options
author | provokateurin <kate@provokateurin.de> | 2024-08-19 11:08:28 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-08-21 11:07:50 +0200 |
commit | ff10f9f60f777407ecf8ac8901339e985e4d49b5 (patch) | |
tree | 7cd27ea42b4b22288bdfcf3212aa921a4762848f /core/openapi-ex_app.json | |
parent | cf56874cb1cb6150eadaf673474785e6b86937f7 (diff) | |
download | nextcloud-server-ff10f9f60f777407ecf8ac8901339e985e4d49b5.tar.gz nextcloud-server-ff10f9f60f777407ecf8ac8901339e985e4d49b5.zip |
chore(deps): Update openapi-extractor to v1.0.0
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'core/openapi-ex_app.json')
-rw-r--r-- | core/openapi-ex_app.json | 52 |
1 files changed, 23 insertions, 29 deletions
diff --git a/core/openapi-ex_app.json b/core/openapi-ex_app.json index 3f5de516172..cc4a53e10b1 100644 --- a/core/openapi-ex_app.json +++ b/core/openapi-ex_app.json @@ -907,37 +907,31 @@ "basic_auth": [] } ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "required": [ - "providerIds", - "taskTypeIds" - ], - "properties": { - "providerIds": { - "type": "array", - "description": "The ids of the providers", - "items": { - "type": "string" - } - }, - "taskTypeIds": { - "type": "array", - "description": "The ids of the task types", - "items": { - "type": "string" - } - } - } + "parameters": [ + { + "name": "providerIds[]", + "in": "query", + "description": "The ids of the providers", + "required": true, + "schema": { + "type": "array", + "items": { + "type": "string" } } - } - }, - "parameters": [ + }, + { + "name": "taskTypeIds[]", + "in": "query", + "description": "The ids of the task types", + "required": true, + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, { "name": "OCS-APIRequest", "in": "header", |