-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.entities.patch.json
33 lines (33 loc) · 1.06 KB
/
schema.entities.patch.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
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "array",
"items": {
"$ref": "#/definitions/EntityPatchInstructionElement"
},
"definitions": {
"EntityPatchInstructionElement": {
"type": "object",
"additionalProperties": false,
"properties": {
"uuid": {
"type": "string",
"title": "UUID",
"description": "Universally unique identifier (https://minecraft.wiki/w/Universally_unique_identifier) of an entity in the world"
},
"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 that should be changed",
"examples": [
"{variant:\"minecraft:red\",hasVisualFire:true,Invulnerable:true}"
]
}
},
"required": [
"data",
"uuid"
],
"title": "Entity Patch Instruction Element"
}
}
}