-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yml
More file actions
241 lines (239 loc) · 6.12 KB
/
openapi.yml
File metadata and controls
241 lines (239 loc) · 6.12 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
# ******************************************************************************
# * Copyright (c) 2023 DevCloud Software. All Rights reserved.
# ******************************************************************************
openapi: "3.0.0"
info:
title: BetterAPI
description: BetterAPI Minecraft API Dokumentation.
version: 1.0.2
contact:
name: Dev-Cloud Software
email: contact@dev-cloud.software
url: https://dev-cloud.software/
servers:
- url: http:{host}:{port}/{suffix}
variables:
host:
default: localhost
description: The IP-Address od the API-Endpoint
port:
default: '8080'
suffix:
default: api
paths:
/players/list:
get:
tags:
- Players
operationId: listPlayers
description: This returns an array of playerObjects
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/playerList'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/generalError'
/player/{uuid}:
get:
tags:
- Player
operationId: getPlayer
description: This returns the Playerinformation or the occured error.
parameters:
- $ref: "#/components/parameters/uuid"
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/playerResponse"
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/generalError"
/player/health/{uuid}:
post:
tags:
- Player Health
operationId: setPlayerHealth
description: This sets the health of the given player.
parameters:
- $ref: "#/components/parameters/uuid"
- $ref: "#/components/parameters/value"
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/success"
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/generalError"
/player/food/{uuid}:
post:
tags:
- Player Food
operationId: setPlayerHealth
description: This sets the Food Level of the given player.
parameters:
- $ref: "#/components/parameters/uuid"
- $ref: "#/components/parameters/value"
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/success"
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/generalError"
/player/saturation/{uuid}:
post:
tags:
- Player Food
operationId: setPlayerHealth
description: This sets the Saturation of the given player.
parameters:
- $ref: "#/components/parameters/uuid"
- $ref: "#/components/parameters/value"
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/success"
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/generalError"
components:
parameters:
uuid:
name: uuid
in: path
required: true
schema:
type: string
example: 069a79f4-44e9-4726-a5be-fca90e38aaf5
name:
name: playername
in: path
required: true
schema:
type: string
example: Notch
value:
name: value
in: query
required: true
schema:
type: integer
example: 20
schemas:
generalError:
type: object
required:
- name
properties:
status:
type: string
example: error
message:
type: string
example: The given Player was not found.
success:
type: object
required:
- name
properties:
status:
type: string
example: success
message:
type: string
example: Executed action successfully
playerList:
description: Array of Players
type: object
properties:
players:
type: array
items:
$ref: '#/components/schemas/player'
playerResponse:
type: object
required:
- uuid
properties:
status:
type: string
example: success
player:
type: object
properties:
name:
type: string
example: Notch
uuid:
type: string
example: 069a79f4-44e9-4726-a5be-fca90e38aaf5
ipaddress:
type: string
example: 192.168.178.32
location:
type: string
example: todo
worldname:
type: string
example: todo
health:
type: number
format: double
example: 20.0
foodlevel:
type: number
format: float
example: 15.0
saturation:
type: number
format: float
example: 18.0
level:
type: integer
example: 3
experience:
type: integer
example: 51
gamemode:
type: string
example: SURVIVAL
player:
type: object
properties:
name:
type: string
example: Notch
uuid:
type: string
example: 069a79f4-44e9-4726-a5be-fca90e38aaf5