46 lines
1.4 KiB
JSON
46 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "notarius.dnd.location_occurrences.llm",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["occurrences"],
|
|
"properties": {
|
|
"occurrences": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["name", "registry_refs", "kind", "source_refs"],
|
|
"properties": {
|
|
"name": {"type": "string"},
|
|
"registry_refs": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["start_unit_id", "end_unit_id"],
|
|
"properties": {
|
|
"start_unit_id": {"type": "integer", "minimum": 1},
|
|
"end_unit_id": {"type": "integer", "minimum": 1}
|
|
}
|
|
}
|
|
},
|
|
"kind": {"enum": ["visited", "planned", "recalled", "mentioned"]},
|
|
"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"}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|