Files
browser/plugins/examples/scum-server-plugin/schemas/scum-live/squad-members-read.result.schema.json
T
2026-08-13 09:20:42 +08:00

31 lines
1.4 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMSquadMembersReadResult",
"type": "object",
"additionalProperties": false,
"required": ["rows"],
"properties": {
"rows": {
"type": "array",
"maxItems": 500,
"items": {
"type": "object",
"additionalProperties": false,
"required": ["squadId", "userProfileId", "rankCode", "rankMeaning", "isLeader", "externalPlayerId", "idType", "provider", "displayName", "profileType"],
"properties": {
"squadId": { "type": "integer", "minimum": 0, "maximum": 2147483647 },
"userProfileId": { "type": "integer", "minimum": 0, "maximum": 2147483647 },
"rankCode": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"rankMeaning": { "type": ["string", "null"], "minLength": 1, "maxLength": 32 },
"isLeader": { "type": ["boolean", "null"] },
"externalPlayerId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" },
"idType": { "type": ["string", "null"], "minLength": 1, "maxLength": 32 },
"provider": { "type": ["string", "null"], "minLength": 1, "maxLength": 32 },
"displayName": { "type": ["string", "null"], "minLength": 1, "maxLength": 80 },
"profileType": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 }
}
}
}
}
}