This commit is contained in:
naudachu
2026-02-13 15:11:49 +05:00
commit 3d914a4853
172 changed files with 8200 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
description: Bad request
content:
application/json:
schema:
$ref: ../schemas/Error.yaml
+5
View File
@@ -0,0 +1,5 @@
description: Internal error
content:
application/json:
schema:
$ref: ../schemas/Error.yaml
+10
View File
@@ -0,0 +1,10 @@
description: Required fields are not acceptable
content:
application/json:
schema:
type: object
properties:
nameField:
type: array
items:
type: string
+5
View File
@@ -0,0 +1,5 @@
description: Entity not found
content:
application/json:
schema:
$ref: ../schemas/Error.yaml
@@ -0,0 +1,5 @@
description: Admin API is not available in that edition
content:
application/json:
schema:
$ref: ../schemas/Error.yaml
+5
View File
@@ -0,0 +1,5 @@
description: Access denied
content:
application/json:
schema:
$ref: ../schemas/Error.yaml
@@ -0,0 +1,5 @@
description: Unprocessable entity
content:
application/json:
schema:
$ref: ../schemas/UnprocessableEntity.yaml
+14
View File
@@ -0,0 +1,14 @@
BadRequest:
$ref: ./BadRequest.yaml
InternalError:
$ref: ./InternalError.yaml
NotAcceptable:
$ref: ./NotAcceptable.yaml
NotFound:
$ref: ./NotFound.yaml
PaymentRequired:
$ref: ./PaymentRequired.yaml
Unauthorized:
$ref: ./Unauthorized.yaml
UnprocessableEntity:
$ref: ./UnprocessableEntity.yaml