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

25 lines
789 B
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
2021-11-20 11:26:35 +01:00
"$schema": "http://json-schema.org/draft-07/schema",
2021-06-06 10:07:19 +00:00
"$id": "blockception.minecraft.behavior.entities",
"examples": [
{
2023-11-28 19:49:09 +01:00
"format_version": "1.20.41",
2021-06-06 10:07:19 +00:00
"minecraft:entity": {
"description": { "identifier": "namespace:entity", "is_spawnable": true, "is_summonable": true },
"component_groups": {},
"components": {},
"events": {}
}
}
],
2021-10-08 12:57:16 +02:00
"type": "object",
2021-10-08 12:59:03 +02:00
"title": "Entity Behavior",
2022-07-22 19:41:04 +02:00
"description": "The minecraft entity behavior specification.",
2021-10-08 12:57:16 +02:00
"required": ["format_version", "minecraft:entity"],
"additionalProperties": false,
"properties": {
"format_version": { "$ref": "../../general/format_version.json" },
2021-10-08 12:59:03 +02:00
"minecraft:entity": { "$ref": "./format/minecraft.entity.json" }
2021-10-08 12:57:16 +02:00
}
2021-06-06 10:07:19 +00:00
}