{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMPlayerProfileResult", "type": "object", "additionalProperties": false, "required": ["rows"], "properties": { "rows": { "type": "array", "maxItems": 500, "items": { "type": "object", "additionalProperties": false, "required": ["userProfileId", "steamId", "gamePlayerId", "displayName", "lastLoginIp", "registeredAt", "squadId", "squadName", "famePoints", "moneyBalance", "normalBalance", "goldBalance", "x", "y", "z", "lastLoginTime", "lastLogoutTime", "lastSaveTime"], "properties": { "gamePlayerId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96 }, "userProfileId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96 }, "steamId": { "type": "string", "minLength": 1, "maxLength": 96 }, "displayName": { "type": "string", "minLength": 1, "maxLength": 80 }, "lastLoginIp": { "type": ["string", "null"], "maxLength": 96 }, "registeredAt": { "type": ["string", "null"], "maxLength": 120 }, "squadId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96 }, "squadName": { "type": ["string", "null"], "minLength": 1, "maxLength": 80 }, "famePoints": { "type": ["number", "null"] }, "moneyBalance": { "type": ["number", "null"] }, "normalBalance": { "type": ["number", "null"] }, "goldBalance": { "type": ["number", "null"] }, "x": { "type": ["number", "null"] }, "y": { "type": ["number", "null"] }, "z": { "type": ["number", "null"] }, "lastLoginTime": { "type": ["string", "null"], "maxLength": 120 }, "lastLogoutTime": { "type": ["string", "null"], "maxLength": 120 }, "lastSaveTime": { "type": ["string", "null"], "format": "date-time" } } } }, "truncated": { "type": "boolean" } } }