-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
48 lines (48 loc) · 1.19 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
openapi: "3.0.3"
info:
title: "DeppartPrototypeHentaiPlayMod HttpReporter API"
description: "DeppartPrototypeHentaiPlayMod HttpReporter API"
version: "1.0.0"
servers:
- url: "http://localhost:7788"
paths:
/report:
get:
summary: Report game events
parameters:
- name: event_name
in: query
description: The name of the event
required: true
schema:
type: string
enum:
- GameEnter
- GameExit
- InGame
- BulbBroken
- ZombieRun
- EnterLevel1
- Level1Zombie
- EndZombie
- PlayerDied
- Shot
- name: status
in: query
description: The status of the event
schema:
type: string
enum:
- activate
- deactivate
- name: t
in: query
description: The timestamp of the event
schema:
type: string
format: date-time
responses:
"200":
description: Event reported successfully
"400":
description: Bad request