33 lines
677 B
JSON
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
|
|
}
|
|
}
|
|
}
|