15 lines
678 B
JSON
15 lines
678 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["occurredAt", "playerId", "action", "mineClass", "zone", "suspicious"],
|
|
"properties": {
|
|
"occurredAt": { "type": "string", "format": "date-time", "minLength": 1, "maxLength": 40 },
|
|
"playerId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"action": { "type": "string", "enum": ["placed", "triggered", "detonated", "disarmed", "removed"] },
|
|
"mineClass": { "type": "string", "minLength": 1, "maxLength": 80 },
|
|
"zone": { "type": "string", "minLength": 1, "maxLength": 32 },
|
|
"suspicious": { "type": "boolean" }
|
|
}
|
|
}
|