28 lines
893 B
JSON
28 lines
893 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMSquadsResult",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["rows"],
|
|
"properties": {
|
|
"rows": {
|
|
"type": "array",
|
|
"maxItems": 500,
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["squadId"],
|
|
"properties": {
|
|
"squadId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"name": { "type": "string", "minLength": 1, "maxLength": 80 },
|
|
"leaderProfileId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"leaderPlayerId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"memberCount": { "type": "integer", "minimum": 0, "maximum": 1000 },
|
|
"score": { "type": "number" }
|
|
}
|
|
}
|
|
},
|
|
"truncated": { "type": "boolean" }
|
|
}
|
|
}
|