{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMPlayerProfileParameters", "type": "object", "additionalProperties": false, "properties": { "gamePlayerId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }, "userProfileId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }, "steamId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }, "search": { "type": "string", "minLength": 1, "maxLength": 80 }, "activeWithinSeconds": { "type": "integer", "minimum": 1, "maximum": 86400 }, "limit": { "type": "integer", "minimum": 1, "maximum": 500 } } }