-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.players.get.json
37 lines (37 loc) · 1.3 KB
/
schema.players.get.json
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
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "array",
"items": {
"$ref": "#/definitions/PlayerInformationElement"
},
"definitions": {
"PlayerInformationElement": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Player name"
},
"uuid": {
"type": "string",
"format": "uuid",
"description": "UUID of player entity"
},
"data": {
"type": "string",
"title": "Player Data",
"description": "SNBT string (https://minecraft.wiki/w/NBT_format#SNBT_format) containing player data (https://minecraft.wiki/w/Player.dat_format#NBT_structure) information. This is only included if URL parameter `includeData=true` is present. Example data is truncated, real player data is often much bigger.",
"examples": [
"{AbsorptionAmount:0.0f,Air:300s,Attributes:[{Base:0.0d,Name:\"forge:step_height_addition\"},{Base:0.10000000149011612d,Name:\"minecraft:generic.movement_speed\"},{Base:0.08d,Name:\"forge:entity_gravity\"}],Brain:{memories:{}}..."
]
}
},
"required": [
"name",
"uuid"
],
"title": "Player Information Element"
}
}
}