Add D&D scene description codec

This commit is contained in:
2026-07-23 20:02:37 +00:00
parent b8b3f3abfa
commit 2f36b7c3b6
5 changed files with 373 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "notarius.dnd.scene_descriptions",
"type": "object",
"additionalProperties": false,
"required": ["scenes"],
"properties": {
"scenes": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "source_ref", "kind", "title", "summary"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"source_ref": {
"type": "object",
"additionalProperties": false,
"required": ["source_id", "start_unit_id", "end_unit_id"],
"properties": {
"source_id": {
"type": "string",
"minLength": 1
},
"start_unit_id": {
"type": "integer",
"minimum": 1
},
"end_unit_id": {
"type": "integer",
"minimum": 1
}
}
},
"kind": {
"type": "string",
"enum": ["combat", "narrative", "recap", "meta"]
},
"title": {
"type": "string",
"minLength": 1
},
"summary": {
"type": "string",
"minLength": 1
}
}
}
}
}
}