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

11 lines
338 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMPlayerDetailsReadParameters",
"type": "object",
"additionalProperties": false,
"required": ["externalPlayerId"],
"properties": {
"externalPlayerId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }
}
}