diff options
author | provokateurin <kate@provokateurin.de> | 2024-04-08 20:09:24 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-04-08 20:09:24 +0200 |
commit | f8ab422d81d9a331b5f60a7fc24f368088384d91 (patch) | |
tree | 30914fa324d934bc9ff8db7230efaf630142d61a /apps/federation/openapi.json | |
parent | 8aa294567ddc6c16fc672a6e2f82fe0538649aa9 (diff) | |
download | nextcloud-server-f8ab422d81d9a331b5f60a7fc24f368088384d91.tar.gz nextcloud-server-f8ab422d81d9a331b5f60a7fc24f368088384d91.zip |
chore(deps): Update openapi-extractor
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/federation/openapi.json')
-rw-r--r-- | apps/federation/openapi.json | 88 |
1 files changed, 80 insertions, 8 deletions
diff --git a/apps/federation/openapi.json b/apps/federation/openapi.json index 71e72dbec92..59545e7dc98 100644 --- a/apps/federation/openapi.json +++ b/apps/federation/openapi.json @@ -135,9 +135,27 @@ "403": { "description": "Getting shared secret is not allowed", "content": { - "text/plain": { + "application/json": { "schema": { - "type": "string" + "type": "object", + "required": [ + "ocs" + ], + "properties": { + "ocs": { + "type": "object", + "required": [ + "meta", + "data" + ], + "properties": { + "meta": { + "$ref": "#/components/schemas/OCSMeta" + }, + "data": {} + } + } + } } } } @@ -223,9 +241,27 @@ "403": { "description": "Requesting shared secret is not allowed", "content": { - "text/plain": { + "application/json": { "schema": { - "type": "string" + "type": "object", + "required": [ + "ocs" + ], + "properties": { + "ocs": { + "type": "object", + "required": [ + "meta", + "data" + ], + "properties": { + "meta": { + "$ref": "#/components/schemas/OCSMeta" + }, + "data": {} + } + } + } } } } @@ -321,9 +357,27 @@ "403": { "description": "Getting shared secret is not allowed", "content": { - "text/plain": { + "application/json": { "schema": { - "type": "string" + "type": "object", + "required": [ + "ocs" + ], + "properties": { + "ocs": { + "type": "object", + "required": [ + "meta", + "data" + ], + "properties": { + "meta": { + "$ref": "#/components/schemas/OCSMeta" + }, + "data": {} + } + } + } } } } @@ -407,9 +461,27 @@ "403": { "description": "Requesting shared secret is not allowed", "content": { - "text/plain": { + "application/json": { "schema": { - "type": "string" + "type": "object", + "required": [ + "ocs" + ], + "properties": { + "ocs": { + "type": "object", + "required": [ + "meta", + "data" + ], + "properties": { + "meta": { + "$ref": "#/components/schemas/OCSMeta" + }, + "data": {} + } + } + } } } } |