Files
browser/plugins/examples/scum-server-plugin/schemas/bridge/event-start.payload.schema.json
T
2026-07-20 16:42:33 +08:00

33 lines
677 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMEventStartPayload",
"type": "object",
"additionalProperties": false,
"required": ["eventType"],
"properties": {
"eventType": {
"type": "string",
"maxLength": 24,
"enum": ["airdrop", "convoy", "horde", "zombie-surge"]
},
"durationSeconds": {
"type": "integer",
"minimum": 30,
"maximum": 86400
},
"maxParticipants": {
"type": "integer",
"minimum": 1,
"maximum": 1000
},
"announce": {
"type": "boolean"
},
"title": {
"type": "string",
"minLength": 1,
"maxLength": 80
}
}
}