Worldshaper/content/schema/factions.schema.json

39 lines
872 B
JSON
Raw Permalink Normal View History

2026-06-26 18:18:14 -04:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Faction Definitions",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "factions"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"factions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "name", "description", "color"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string"
},
"color": {
"type": "string",
"pattern": "^#[0-9A-Fa-f]{6}$"
}
}
}
}
}
}