34 lines
899 B
JSON
34 lines
899 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "notarius.dnd.enemy_events.llm",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["events"],
|
|
"properties": {
|
|
"events": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["name", "kind", "source_refs"],
|
|
"properties": {
|
|
"name": {"type": "string"},
|
|
"kind": {"type": "string"},
|
|
"source_refs": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["start_unit_id", "end_unit_id"],
|
|
"properties": {
|
|
"start_unit_id": {"type": "integer"},
|
|
"end_unit_id": {"type": "integer"}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|