功能修改
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "SCUMPlayerByIdResult",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["players"],
|
||||
"properties": {
|
||||
"players": {
|
||||
"type": "array",
|
||||
"maxItems": 1,
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["playerId", "playerName"],
|
||||
"properties": {
|
||||
"playerId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" },
|
||||
"playerName": { "type": "string", "minLength": 1, "maxLength": 80 },
|
||||
"platformUserId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" },
|
||||
"squadId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" },
|
||||
"famePoints": { "type": "integer", "minimum": 0, "maximum": 2147483647 },
|
||||
"lastSeenAt": { "type": "string", "minLength": 1, "maxLength": 64, "format": "date-time" }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user