28 lines
1.2 KiB
JSON
28 lines
1.2 KiB
JSON
{
|
|
"$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 }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|