16 lines
676 B
JSON
16 lines
676 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["playerId", "fieldKey", "before", "after", "safetyWindow", "backupRef"],
|
|
"properties": {
|
|
"playerId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"fieldKey": { "const": "855" },
|
|
"before": { "type": "integer", "minimum": 0, "maximum": 100000 },
|
|
"after": { "type": "integer", "minimum": 0, "maximum": 100000 },
|
|
"safetyWindow": { "type": "string", "minLength": 1, "maxLength": 120 },
|
|
"backupRef": { "type": "string", "minLength": 1, "maxLength": 180 },
|
|
"reason": { "type": "string", "maxLength": 240 }
|
|
}
|
|
}
|