{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMSquadMembersResult", "type": "object", "additionalProperties": false, "required": ["rows"], "properties": { "rows": { "type": "array", "maxItems": 500, "items": { "type": "object", "additionalProperties": false, "required": ["squadId", "userProfileId", "gamePlayerId", "steamId", "displayName", "rank", "isLeader"], "properties": { "squadId": { "type": "string", "minLength": 1, "maxLength": 96 }, "userProfileId": { "type": "string", "minLength": 1, "maxLength": 96 }, "gamePlayerId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96 }, "steamId": { "type": "string", "minLength": 1, "maxLength": 96 }, "displayName": { "type": "string", "minLength": 1, "maxLength": 80 }, "rank": { "type": ["string", "null"], "minLength": 1, "maxLength": 32 }, "isLeader": { "type": "integer", "minimum": 0, "maximum": 1 } } } }, "truncated": { "type": "boolean" } } }