Files
browser/plugins/examples/scum-server-plugin/schemas/bridge/queries/player-by-id.parameters.schema.json
T
2026-07-20 16:42:33 +08:00

16 lines
343 B
JSON

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