Add SCUM player query assets
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "SCUMPlayersReadResult",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["rows"],
|
||||
"properties": {
|
||||
"rows": {
|
||||
"type": "array",
|
||||
"maxItems": 100,
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["externalPlayerId", "idType", "provider", "userCreationTime", "userLastLoginTime", "isBanned", "profileId", "displayName", "profileType", "prisonerId", "entityId"],
|
||||
"properties": {
|
||||
"externalPlayerId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" },
|
||||
"idType": { "type": "string", "minLength": 1, "maxLength": 32 },
|
||||
"provider": { "type": "string", "minLength": 1, "maxLength": 32 },
|
||||
"userCreationTime": { "type": "string", "minLength": 1, "maxLength": 64 },
|
||||
"userLastLoginTime": { "type": "string", "minLength": 1, "maxLength": 64 },
|
||||
"isBanned": { "type": "integer", "minimum": 0, "maximum": 1 },
|
||||
"profileId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
|
||||
"displayName": { "type": ["string", "null"], "minLength": 1, "maxLength": 80 },
|
||||
"profileType": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
|
||||
"prisonerId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
|
||||
"entityId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user