25 lines
516 B
JSON
25 lines
516 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMRestartPreparePayload",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["warningSeconds", "reason"],
|
|
"properties": {
|
|
"warningSeconds": {
|
|
"type": "integer",
|
|
"minimum": 30,
|
|
"maximum": 3600
|
|
},
|
|
"reason": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 200
|
|
},
|
|
"scheduleAt": {
|
|
"type": "string",
|
|
"maxLength": 64,
|
|
"format": "date-time"
|
|
}
|
|
}
|
|
}
|