42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "notarius.dnd.npc_interactions.llm",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["interactions"],
|
|
"properties": {
|
|
"interactions": {
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|