aboutsummaryrefslogtreecommitdiffstats
path: root/core/openapi-ex_app.json
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-08-19 11:08:28 +0200
committerprovokateurin <kate@provokateurin.de>2024-08-21 11:07:50 +0200
commitff10f9f60f777407ecf8ac8901339e985e4d49b5 (patch)
tree7cd27ea42b4b22288bdfcf3212aa921a4762848f /core/openapi-ex_app.json
parentcf56874cb1cb6150eadaf673474785e6b86937f7 (diff)
downloadnextcloud-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.json52
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",