Files
browser/plugins/examples/scum-server-plugin/schemas/log-events/trade.event.schema.json
T
2026-07-20 16:42:33 +08:00

16 lines
783 B
JSON

{
"$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" }
}
}