Skip to content

Commit fe98ed0

Browse files
Update backend-api-docs.json
1 parent 2aed6f1 commit fe98ed0

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

save-backend/backend-api-docs.json

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,63 @@
1111
}
1212
],
1313
"paths": {
14+
"/api/v1/a/validate": {
15+
"get": {
16+
"operationId": "sequential",
17+
"parameters": [
18+
{
19+
"in": "header",
20+
"name": "Accept",
21+
"schema": {
22+
"type": "string",
23+
"enum": [
24+
"application/x-ndjson"
25+
]
26+
}
27+
}
28+
],
29+
"responses": {
30+
"401": {
31+
"content": {
32+
"application/x-ndjson": {
33+
"schema": {
34+
"$ref": "#/components/schemas/TestSuiteValidationResult"
35+
}
36+
},
37+
"text/event-stream": {
38+
"schema": {
39+
"$ref": "#/components/schemas/TestSuiteValidationResult"
40+
}
41+
}
42+
},
43+
"description": "Unauthorized"
44+
},
45+
"406": {
46+
"content": {
47+
"application/x-ndjson": {
48+
"schema": {
49+
"$ref": "#/components/schemas/TestSuiteValidationResult"
50+
}
51+
},
52+
"text/event-stream": {
53+
"schema": {
54+
"$ref": "#/components/schemas/TestSuiteValidationResult"
55+
}
56+
}
57+
},
58+
"description": "Could not find acceptable representation."
59+
}
60+
},
61+
"security": [
62+
{
63+
"basic": []
64+
}
65+
],
66+
"tags": [
67+
"test-suite-validation-controller"
68+
]
69+
}
70+
},
1471
"/api/v1/avatar/upload": {
1572
"post": {
1673
"description": "Upload an avatar for user or organization.",
@@ -9405,6 +9462,26 @@
94059462
}
94069463
}
94079464
},
9465+
"TestSuiteValidationResult": {
9466+
"required": [
9467+
"checkId",
9468+
"checkName",
9469+
"percentage"
9470+
],
9471+
"type": "object",
9472+
"properties": {
9473+
"checkId": {
9474+
"type": "string"
9475+
},
9476+
"checkName": {
9477+
"type": "string"
9478+
},
9479+
"percentage": {
9480+
"type": "integer",
9481+
"format": "int32"
9482+
}
9483+
}
9484+
},
94089485
"TestSuiteVersioned": {
94099486
"required": [
94109487
"description",

0 commit comments

Comments
 (0)