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

19 lines
617 B
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
2021-04-04 13:52:35 +02:00
"$id": "blockception.minecraft.behavior.entity.1.8.0",
2020-11-01 17:22:42 +01:00
"type": "object",
2021-05-07 14:45:23 +02:00
"title": "Behavior Entity 1.8.0",
2020-11-01 17:22:42 +01:00
"description": "TODO description",
"required": ["format_version", "minecraft:entity"],
"properties": {
"format_version": {
2021-03-21 15:18:38 +01:00
"title": "1.8.0 Format Version",
2020-11-01 17:22:42 +01: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" }
},
"additionalProperties": false
}