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 /apps/federation | |
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 'apps/federation')
-rw-r--r-- | apps/federation/openapi.json | 84 |
1 files changed, 36 insertions, 48 deletions
diff --git a/apps/federation/openapi.json b/apps/federation/openapi.json index c8b4d1a91b3..3740b8ad04f 100644 --- a/apps/federation/openapi.json +++ b/apps/federation/openapi.json @@ -63,32 +63,26 @@ "basic_auth": [] } ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "required": [ - "url", - "token" - ], - "properties": { - "url": { - "type": "string", - "description": "URL of the server" - }, - "token": { - "type": "string", - "description": "Token of the server" - } - } - } - } - } - }, "parameters": [ { + "name": "url", + "in": "query", + "description": "URL of the server", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "token", + "in": "query", + "description": "Token of the server", + "required": true, + "schema": { + "type": "string" + } + }, + { "name": "OCS-APIRequest", "in": "header", "description": "Required to be true for the API request to pass", @@ -297,32 +291,26 @@ "basic_auth": [] } ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "required": [ - "url", - "token" - ], - "properties": { - "url": { - "type": "string", - "description": "URL of the server" - }, - "token": { - "type": "string", - "description": "Token of the server" - } - } - } - } - } - }, "parameters": [ { + "name": "url", + "in": "query", + "description": "URL of the server", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "token", + "in": "query", + "description": "Token of the server", + "required": true, + "schema": { + "type": "string" + } + }, + { "name": "OCS-APIRequest", "in": "header", "description": "Required to be true for the API request to pass", |