40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "notarius.dnd.item_occurrences.llm",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["occurrences"],
|
|
"properties": {
|
|
"occurrences": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["name", "kind", "quantity", "from", "to", "source_refs"],
|
|
"properties": {
|
|
"name": {"type": "string"},
|
|
"kind": {
|
|
"type": "string",
|
|
"enum": ["discovered", "acquired", "lost", "consumed", "transferred"]
|
|
},
|
|
"quantity": {"type": ["integer", "null"]},
|
|
"from": {"type": ["string", "null"]},
|
|
"to": {"type": ["string", "null"]},
|
|
"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"}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|