aboutsummaryrefslogtreecommitdiffhomepage
path: root/openapi.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'openapi.yaml')
-rw-r--r--openapi.yaml18
1 files changed, 18 insertions, 0 deletions
diff --git a/openapi.yaml b/openapi.yaml
index fdd0146..6d9dea3 100644
--- a/openapi.yaml
+++ b/openapi.yaml
@@ -220,6 +220,10 @@ components:
type: array
items:
$ref: '#/components/schemas/User'
+ verification_steps:
+ type: array
+ items:
+ $ref: '#/components/schemas/VerificationStep'
required:
- game_id
- game_type
@@ -227,6 +231,20 @@ components:
- display_name
- duration_seconds
- players
+ - verification_steps
+ VerificationStep:
+ type: object
+ properties:
+ testcase_id:
+ type: integer
+ nullable: true
+ example: 1
+ label:
+ type: string
+ example: "Test case 1"
+ required:
+ - testcase_id
+ - label
Problem:
type: object
properties: