Fix missing / in openapi-docs

Helps fixing #9272
This commit is contained in:
Flole998 2024-02-09 13:00:26 +00:00
parent e2eb53ed30
commit f78b3700c0
4 changed files with 6 additions and 6 deletions

View File

@ -14147,7 +14147,7 @@ components:
content:
application/json:
schema:
$ref: '#components/schemas/AuthorizationError'
$ref: '#/components/schemas/AuthorizationError'
422:
description: 'Validation error'
content:
@ -14165,13 +14165,13 @@ components:
content:
application/json:
schema:
$ref: '#components/schemas/InvalidInputError'
$ref: '#/components/schemas/InvalidInputError'
401:
description: 'Authentication error'
content:
application/json:
schema:
$ref: '#components/schemas/AuthenticationError'
$ref: '#/components/schemas/AuthenticationError'
parameters:
X-API-SECRET:
name: X-API-SECRET

View File

@ -3,4 +3,4 @@
content:
application/json:
schema:
$ref: '#components/schemas/InvalidInputError'
$ref: '#/components/schemas/InvalidInputError'

View File

@ -3,4 +3,4 @@
content:
application/json:
schema:
$ref: '#components/schemas/AuthenticationError'
$ref: '#/components/schemas/AuthenticationError'

View File

@ -3,4 +3,4 @@
content:
application/json:
schema:
$ref: '#components/schemas/AuthorizationError'
$ref: '#/components/schemas/AuthorizationError'