File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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." ,
95019558 }
95029559 }
95039560 },
9561+ "TestSuiteValidationResult" : {
9562+ "required" : [
9563+ " checkId" ,
9564+ " checkName" ,
9565+ " percentage"
9566+ ],
9567+ "type" : " object" ,
9568+ "properties" : {
9569+ "checkId" : {
9570+ "type" : " string"
9571+ },
9572+ "checkName" : {
9573+ "type" : " string"
9574+ },
9575+ "percentage" : {
9576+ "type" : " integer" ,
9577+ "format" : " int32"
9578+ }
9579+ }
9580+ },
95049581 "TestSuiteVersioned" : {
95059582 "required" : [
95069583 " description" ,
You can’t perform that action at this time.
0 commit comments