Add SCUM player query assets

This commit is contained in:
npc0-hue
2026-08-13 08:27:22 +08:00
parent f34c9ac10f
commit bad09df3e2
15 changed files with 380 additions and 2 deletions
@@ -0,0 +1,26 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMPlayerEconomyReadResult",
"type": "object",
"additionalProperties": false,
"required": ["rows"],
"properties": {
"rows": {
"type": "array",
"maxItems": 16,
"items": {
"type": "object",
"additionalProperties": false,
"required": ["externalPlayerId", "profileId", "bankAccountId", "currencyRowId", "currencyType", "accountBalance"],
"properties": {
"externalPlayerId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" },
"profileId": { "type": "integer", "minimum": 0, "maximum": 2147483647 },
"bankAccountId": { "type": "integer", "minimum": 0, "maximum": 2147483647 },
"currencyRowId": { "type": "integer", "minimum": 0, "maximum": 2147483647 },
"currencyType": { "type": "integer", "minimum": 0, "maximum": 2147483647 },
"accountBalance": { "type": ["integer", "null"], "minimum": -2147483648, "maximum": 2147483647 }
}
}
}
}
}