Files
browser/plugins/examples/scum-server-plugin/schemas/bridge/squads.snapshot.schema.json
T
2026-07-20 16:42:33 +08:00

63 lines
1.5 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMSquadsSnapshot",
"type": "object",
"additionalProperties": false,
"required": ["observedAt", "squads"],
"properties": {
"observedAt": {
"type": "string",
"maxLength": 64,
"format": "date-time"
},
"squads": {
"type": "array",
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"required": ["squadId", "name", "memberCount"],
"properties": {
"squadId": {
"type": "string",
"pattern": "^[A-Za-z0-9_.:-]{1,96}$"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 80
},
"memberCount": {
"type": "integer",
"minimum": 0,
"maximum": 64
},
"leaderPlayerId": {
"type": "string",
"pattern": "^[A-Za-z0-9_.:-]{1,96}$"
},
"memberPlayerIds": {
"type": "array",
"maxItems": 64,
"uniqueItems": true,
"items": {
"type": "string",
"pattern": "^[A-Za-z0-9_.:-]{1,96}$"
}
},
"createdAt": {
"type": "string",
"maxLength": 64,
"format": "date-time"
},
"lastActiveAt": {
"type": "string",
"maxLength": 64,
"format": "date-time"
}
}
}
}
}
}