Skip to content

Commit fb04b14

Browse files
author
github-actions
committed
Update REST API documentation Mon Apr 6 07:59:27 UTC 2026
1 parent 22c0357 commit fb04b14

1 file changed

Lines changed: 49 additions & 1 deletion

File tree

restapi.json

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6355,7 +6355,30 @@
63556355
},
63566356
"components": {
63576357
"schemas": {
6358+
"ErrorDetails": {
6359+
"type": "object",
6360+
"example": {
6361+
"format.formatOptions[0]": [
6362+
"The value you selected is not a valid choice."
6363+
],
6364+
"schedule.repeatUntil": [
6365+
"This value is not a valid datetime."
6366+
],
6367+
"schedule.requeueUntil": [
6368+
"This value is not a valid datetime."
6369+
]
6370+
},
6371+
"additionalProperties": {
6372+
"type": "array",
6373+
"items": {
6374+
"type": "string"
6375+
}
6376+
}
6377+
},
63586378
"UnauthorizedResponse": {
6379+
"required": [
6380+
"message"
6381+
],
63596382
"properties": {
63606383
"message": {
63616384
"type": "string",
@@ -6365,15 +6388,25 @@
63656388
"type": "object"
63666389
},
63676390
"ValidationErrorResponse": {
6391+
"required": [
6392+
"message",
6393+
"errors"
6394+
],
63686395
"properties": {
63696396
"message": {
63706397
"type": "string",
6371-
"example": "Some fields are invalid"
6398+
"example": "Validation failed"
6399+
},
6400+
"errors": {
6401+
"$ref": "#/components/schemas/ErrorDetails"
63726402
}
63736403
},
63746404
"type": "object"
63756405
},
63766406
"BadRequestResponse": {
6407+
"required": [
6408+
"message"
6409+
],
63776410
"properties": {
63786411
"message": {
63796412
"type": "string",
@@ -6383,6 +6416,9 @@
63836416
"type": "object"
63846417
},
63856418
"AlreadyExistsResponse": {
6419+
"required": [
6420+
"message"
6421+
],
63866422
"properties": {
63876423
"message": {
63886424
"type": "string",
@@ -6403,6 +6439,18 @@
64036439
},
64046440
"type": "object"
64056441
},
6442+
"GenericErrorResponse": {
6443+
"required": [
6444+
"message"
6445+
],
6446+
"properties": {
6447+
"message": {
6448+
"type": "string",
6449+
"example": "An unexpected error occurred."
6450+
}
6451+
},
6452+
"type": "object"
6453+
},
64066454
"CursorPagination": {
64076455
"properties": {
64086456
"total": {

0 commit comments

Comments
 (0)