{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMPlayerFameSetPayload", "type": "object", "additionalProperties": false, "required": ["playerId", "fame"], "properties": { "playerId": { "type": "string", "minLength": 17, "maxLength": 17, "pattern": "^[0-9]{17}$" }, "fame": { "type": "integer", "minimum": -2147483648, "maximum": 2147483647 }, "reason": { "type": "string", "minLength": 1, "maxLength": 240 } } }