Skip to content

Commit

Permalink
Update backend-api-docs.json
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 13, 2023
1 parent 2aed6f1 commit fe98ed0
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions save-backend/backend-api-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,63 @@
}
],
"paths": {
"/api/v1/a/validate": {
"get": {
"operationId": "sequential",
"parameters": [
{
"in": "header",
"name": "Accept",
"schema": {
"type": "string",
"enum": [
"application/x-ndjson"
]
}
}
],
"responses": {
"401": {
"content": {
"application/x-ndjson": {
"schema": {
"$ref": "#/components/schemas/TestSuiteValidationResult"
}
},
"text/event-stream": {
"schema": {
"$ref": "#/components/schemas/TestSuiteValidationResult"
}
}
},
"description": "Unauthorized"
},
"406": {
"content": {
"application/x-ndjson": {
"schema": {
"$ref": "#/components/schemas/TestSuiteValidationResult"
}
},
"text/event-stream": {
"schema": {
"$ref": "#/components/schemas/TestSuiteValidationResult"
}
}
},
"description": "Could not find acceptable representation."
}
},
"security": [
{
"basic": []
}
],
"tags": [
"test-suite-validation-controller"
]
}
},
"/api/v1/avatar/upload": {
"post": {
"description": "Upload an avatar for user or organization.",
Expand Down Expand Up @@ -9405,6 +9462,26 @@
}
}
},
"TestSuiteValidationResult": {
"required": [
"checkId",
"checkName",
"percentage"
],
"type": "object",
"properties": {
"checkId": {
"type": "string"
},
"checkName": {
"type": "string"
},
"percentage": {
"type": "integer",
"format": "int32"
}
}
},
"TestSuiteVersioned": {
"required": [
"description",
Expand Down

0 comments on commit fe98ed0

Please sign in to comment.