Files
browser/plugins/examples/scum-server-plugin/schemas/scum-live/player-session-enrichment-read.result.schema.json
T
2026-08-13 08:27:22 +08:00

31 lines
1.4 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMPlayerSessionEnrichmentReadResult",
"type": "object",
"additionalProperties": false,
"required": ["rows"],
"properties": {
"rows": {
"type": "array",
"maxItems": 1,
"items": {
"type": "object",
"additionalProperties": false,
"required": ["externalPlayerId", "idType", "provider", "userCreationTime", "userLastLoginTime", "isBanned", "profileId", "displayName", "profileType", "prisonerId"],
"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 }
}
}
}
}
}