Worldshaper/content/schema/worlds.schema.json

36 lines
766 B
JSON
Raw Normal View History

2026-06-26 18:18:14 -04:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "World Index",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "worlds"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"worlds": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "name", "worldDir"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"worldDir": {
"type": "string",
"minLength": 1
}
}
}
}
}
}