Files
minecraft-bedrock-json-schemas/source/behavior/entities/1.8.0/entities.json

18 lines
600 B
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
"$id": "blockception.minecraft.behavior.entity.1.8.0",
"type": "object",
2021-07-02 21:09:45 +02:00
"additionalProperties": false,
2021-06-08 22:46:21 +02:00
"title": "Entity Behavior 1.8.0",
2021-07-02 20:21:51 +02:00
"description": "The minecraft entity behavior specification",
2021-06-06 10:07:19 +00:00
"required": ["format_version", "minecraft:entity"],
"properties": {
"format_version": {
2021-06-09 11:19:07 +02:00
"title": "Format Version",
2021-06-06 10:07:19 +00:00
"type": "string",
"const": "1.8.0",
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
},
"minecraft:entity": { "$ref": "./minecraft.entity.json" }
2021-07-02 21:09:45 +02:00
}
2021-06-06 10:07:19 +00:00
}