-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.entities.put.json
74 lines (74 loc) · 2.38 KB
/
schema.entities.put.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
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
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "array",
"items": {
"$ref": "#/definitions/EntityPlacementInstructionElement"
},
"definitions": {
"EntityPlacementInstructionElement": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"title": "Entity ID",
"description": "Any namespaced entity ID",
"examples": [
"minecraft:cat",
"minecraft:cow",
"minecraft:painting"
]
},
"x": {
"$ref": "#/definitions/PosAxis"
},
"y": {
"$ref": "#/definitions/PosAxis"
},
"z": {
"$ref": "#/definitions/PosAxis"
},
"data": {
"type": "string",
"title": "Entity Data",
"description": "SNBT-formatted string (https://minecraft.wiki/w/NBT_format#SNBT_format) containing entity data (https://minecraft.wiki/w/Entity_format#Entity_Format) information",
"examples": [
"{variant:\"minecraft:red\",hasVisualFire:true,Invulnerable:true}"
]
}
},
"required": [
"id",
"x",
"y",
"z"
],
"title": "Entity Placement Instruction Element"
},
"PosAxis": {
"anyOf": [
{
"type": "integer",
"description": "Any negative or positive number to represent absolute world coordinates",
"examples": [
-2,
781,
83.74
]
},
{
"type": "string",
"description": "Any negative or positive number to represent absolute world coordinates, a relative coordinate (https://minecraft.wiki/w/Coordinates#Relative_world_coordinates) or a local coordinate (https://minecraft.wiki/w/Coordinates#Local_coordinates)",
"examples": [
"-2",
"~84",
"^-412",
"~-2.22"
]
}
],
"title": "Position Axis",
"description": "Describe x/y/z placement position for entity. If omitted, axis value defaults to the corresponding axis in the request URL."
}
}
}