{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "additionalProperties": false, "required": ["occurredAt", "playerId", "tradeKind", "itemCount", "currencyDelta", "suspicious"], "properties": { "occurredAt": { "type": "string", "format": "date-time", "minLength": 1, "maxLength": 40 }, "playerId": { "type": "string", "minLength": 1, "maxLength": 96 }, "counterpartyPlayerId": { "type": "string", "minLength": 1, "maxLength": 96 }, "tradeKind": { "type": "string", "enum": ["purchase", "sale", "transfer", "unknown"] }, "itemCount": { "type": "integer", "minimum": 0, "maximum": 1000 }, "currencyDelta": { "type": "integer", "minimum": -1000000000, "maximum": 1000000000 }, "suspicious": { "type": "boolean" } } }