File tree Expand file tree Collapse file tree 1 file changed +77
-0
lines changed Expand file tree Collapse file tree 1 file changed +77
-0
lines changed Original file line number Diff line number Diff line change 11
11
}
12
12
],
13
13
"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
+ },
14
71
"/api/v1/avatar/upload" : {
15
72
"post" : {
16
73
"description" : " Upload an avatar for user or organization." ,
9405
9462
}
9406
9463
}
9407
9464
},
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
+ },
9408
9485
"TestSuiteVersioned" : {
9409
9486
"required" : [
9410
9487
" description" ,
You can’t perform that action at this time.
0 commit comments