restore: import verified wave3 baseline

This commit is contained in:
Codex
2026-07-28 03:16:01 -04:00
parent 4157f8790d
commit cf9507a9dd
41 changed files with 12251 additions and 982 deletions
+37 -28
View File
@@ -2,6 +2,42 @@
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DemoPackSummary",
"type": "object",
"properties": {
"characters": {
"type": "integer",
"format": "uint",
"minimum": 0
},
"displayName": {
"type": "string"
},
"id": {
"type": "string"
},
"itemSpecs": {
"type": "integer",
"format": "uint",
"minimum": 0
},
"personas": {
"type": "integer",
"format": "uint",
"minimum": 0
},
"plotModules": {
"type": "integer",
"format": "uint",
"minimum": 0
},
"revision": {
"type": "string"
},
"worldBooks": {
"type": "integer",
"format": "uint",
"minimum": 0
}
},
"required": [
"id",
"displayName",
@@ -11,32 +47,5 @@
"personas",
"plotModules",
"itemSpecs"
],
"properties": {
"id": {
"type": "string"
},
"displayName": {
"type": "string"
},
"revision": {
"type": "string"
},
"characters": {
"type": "integer"
},
"worldBooks": {
"type": "integer"
},
"personas": {
"type": "integer"
},
"plotModules": {
"type": "integer"
},
"itemSpecs": {
"type": "integer"
}
},
"additionalProperties": false
]
}