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

19 lines
628 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema",
2021-04-04 13:52:35 +02:00
"$id": "blockception.minecraft.behavior.entity1.16.100",
"type": "object",
2021-05-07 14:45:23 +02:00
"title": "Behavior Entity 1.16.100",
"description": "TODO description",
"required": ["format_version", "minecraft:entity"],
"properties": {
"format_version": {
2021-03-21 15:18:38 +01:00
"title": "1.16.100 Format Version",
"type": "string",
2020-11-18 10:10:51 +01:00
"const": "1.16.100",
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
},
2020-12-12 00:09:25 +01:00
"minecraft:entity": { "$ref": "./minecraft.entity.json" }
},
"additionalProperties": false
}