mirror of
https://github.com/dtzp555-max/memory-continuity.git
synced 2026-07-21 21:15:07 +00:00
16 lines
692 B
JSON
16 lines
692 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "StrategyAlert",
|
|
"type": "object",
|
|
"required": ["type", "severity", "target", "message"],
|
|
"properties": {
|
|
"type": {"type": "string", "enum": ["entry_zone", "danger_zone", "exit_zone", "ko_risk", "spread_widening", "event_shock", "vol_spike", "earnings_window"]},
|
|
"severity": {"type": "string", "enum": ["info", "warning", "high", "critical"]},
|
|
"target": {"type": "string"},
|
|
"instrumentCode": {"type": ["string", "null"]},
|
|
"message": {"type": "string"},
|
|
"evidence": {"type": "array", "items": {"type": "string"}},
|
|
"timestamp": {"type": ["string", "null"], "format": "date-time"}
|
|
}
|
|
}
|