25 lines
787 B
JSON
25 lines
787 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "blockception.minecraft.behavior.entities",
|
|
"examples": [
|
|
{
|
|
"format_version": "1.19.0",
|
|
"minecraft:entity": {
|
|
"description": { "identifier": "namespace:entity", "is_spawnable": true, "is_summonable": true },
|
|
"component_groups": {},
|
|
"components": {},
|
|
"events": {}
|
|
}
|
|
}
|
|
],
|
|
"type": "object",
|
|
"title": "Entity Behavior",
|
|
"description": "The minecraft entity behavior specification",
|
|
"required": ["format_version", "minecraft:entity"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"format_version": { "$ref": "../../general/format_version.json" },
|
|
"minecraft:entity": { "$ref": "./format/minecraft.entity.json" }
|
|
}
|
|
}
|