Merge pull request #9276 from Flole998/fixautherrors

Fix missing / in openapi-docs
This commit is contained in:
David Bomba 2024-02-10 14:36:08 +11:00 committed by GitHub
commit 9d7471ea54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

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

View File

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