功能修改

This commit is contained in:
npc0-hue
2026-07-20 16:42:33 +08:00
parent 48b8ad8d6c
commit a0e69417db
224 changed files with 22015 additions and 884 deletions
@@ -0,0 +1,24 @@
{
"$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"
}
}
}