{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "additionalProperties": false, "required": ["occurredAt", "playerId", "targetKind", "targetId", "outcome", "suspicious"], "properties": { "occurredAt": { "type": "string", "format": "date-time", "minLength": 1, "maxLength": 40 }, "playerId": { "type": "string", "minLength": 1, "maxLength": 96 }, "targetKind": { "type": "string", "enum": ["door", "container", "vehicle", "base", "unknown"] }, "targetId": { "type": "string", "minLength": 1, "maxLength": 128 }, "outcome": { "type": "string", "enum": ["success", "failed", "cancelled"] }, "suspicious": { "type": "boolean" } } }