Add SCUM world query assets

This commit is contained in:
npc0-hue
2026-08-13 09:20:42 +08:00
parent bad09df3e2
commit e313081204
18 changed files with 471 additions and 3 deletions
@@ -0,0 +1,27 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMSquadsReadResult",
"type": "object",
"additionalProperties": false,
"required": ["rows"],
"properties": {
"rows": {
"type": "array",
"maxItems": 100,
"items": {
"type": "object",
"additionalProperties": false,
"required": ["squadId", "squadName", "memberCount", "leaderProfileId", "leaderExternalPlayerId", "leaderRankCode", "leaderRankMeaning"],
"properties": {
"squadId": { "type": "integer", "minimum": 0, "maximum": 2147483647 },
"squadName": { "type": ["string", "null"], "minLength": 1, "maxLength": 80 },
"memberCount": { "type": "integer", "minimum": 0, "maximum": 1000 },
"leaderProfileId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"leaderExternalPlayerId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" },
"leaderRankCode": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"leaderRankMeaning": { "type": ["string", "null"], "minLength": 1, "maxLength": 32 }
}
}
}
}
}