chore: bootstrap nana-story M0

This commit is contained in:
Codex
2026-07-28 12:51:00 +08:00
commit 3dacc92423
71 changed files with 6840 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PlotModule",
"type": "object",
"required": ["header", "name", "opening_event", "events"],
"properties": {
"header": {
"$ref": "resource-header.schema.json"
},
"name": {
"type": "string",
"minLength": 1
},
"opening_event": {
"type": "string",
"minLength": 1
},
"events": {
"type": "array",
"items": {
"type": "object"
}
}
}
}