{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMPlayerStateSnapshot", "type": "object", "additionalProperties": false, "required": ["playerId", "stateVersion", "maintenanceVerified", "playerOnline", "fields"], "properties": { "playerId": { "type": "string", "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }, "stateVersion": { "type": "string", "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }, "safetyWindow": { "type": "string", "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }, "maintenanceVerified": { "type": "boolean" }, "playerOnline": { "type": "boolean" }, "fields": { "type": "object", "additionalProperties": false, "required": ["skills.running", "attributes.strength"], "properties": { "skills.running": { "type": "number", "minimum": 0, "maximum": 10 }, "attributes.strength": { "type": "number", "minimum": 0, "maximum": 10 } } } } }