{ "$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 } } } } } }