Worldshaper/content/schema/loot_tables.schema.json

62 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2026-06-26 18:18:14 -04:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Loot Table Definitions",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "lootTables"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"lootTables": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "entries", "rollsMin", "rollsMax"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"entries": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["itemId", "weight", "min", "max"],
"properties": {
"itemId": {
"type": "string",
"minLength": 1
},
"weight": {
"type": "integer",
"minimum": 0
},
"min": {
"type": "integer",
"minimum": 0
},
"max": {
"type": "integer",
"minimum": 0
}
}
}
},
"rollsMin": {
"type": "integer",
"minimum": 0
},
"rollsMax": {
"type": "integer",
"minimum": 0
}
}
}
}
}
}