{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMSquadsResult", "type": "object", "additionalProperties": false, "required": ["rows"], "properties": { "rows": { "type": "array", "maxItems": 500, "items": { "type": "object", "additionalProperties": false, "required": ["squadId", "name", "leaderProfileId", "leaderPlayerId", "memberCount", "score", "memberLimit", "message", "info", "lastMemberLoginTime"], "properties": { "squadId": { "type": "string", "minLength": 1, "maxLength": 96 }, "name": { "type": "string", "minLength": 1, "maxLength": 80 }, "leaderProfileId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96 }, "leaderPlayerId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96 }, "memberCount": { "type": "integer", "minimum": 0, "maximum": 1000 }, "score": { "type": ["number", "null"] }, "memberLimit": { "type": ["integer", "null"], "minimum": 0 }, "message": { "type": ["string", "null"], "maxLength": 4096 }, "info": { "type": ["string", "null"], "maxLength": 4096 }, "lastMemberLoginTime": { "type": ["string", "null"], "maxLength": 120 } } } }, "truncated": { "type": "boolean" } } }