Worldshaper/content/schema/dev_config.schema.json

29 lines
597 B
JSON
Raw Permalink Normal View History

2026-06-26 18:18:14 -04:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Developer Config",
"type": "object",
"additionalProperties": false,
"required": ["autoReloadWatch", "watchIntervalMs", "debugInventoryItems", "debugFlags"],
"properties": {
"autoReloadWatch": {
"type": "boolean"
},
"watchIntervalMs": {
"type": "integer",
"minimum": 1
},
"debugInventoryItems": {
"type": "array",
"items": {
"type": "string"
}
},
"debugFlags": {
"type": "array",
"items": {
"type": "string"
}
}
}
}