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,12 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMSquadMembersReadParameters",
"type": "object",
"additionalProperties": false,
"required": ["squadId", "limit", "offset"],
"properties": {
"squadId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"limit": { "type": "integer", "minimum": 1, "maximum": 500 },
"offset": { "type": "integer", "minimum": 0, "maximum": 1000000 }
}
}