mirror of
https://github.com/dtzp555-max/memory-continuity.git
synced 2026-07-21 21:15:07 +00:00
19 lines
935 B
JSON
19 lines
935 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "InstrumentRiskReview",
|
|
"type": "object",
|
|
"required": ["target", "instrumentType"],
|
|
"properties": {
|
|
"target": {"type": "string"},
|
|
"instrumentType": {"type": "string"},
|
|
"gapRisk": {"type": "string", "enum": ["low", "medium", "high", "critical"]},
|
|
"koRisk": {"type": ["string", "null"], "enum": ["low", "medium", "high", "critical", null]},
|
|
"ivRisk": {"type": ["string", "null"], "enum": ["low", "medium", "high", "critical", null]},
|
|
"thetaRisk": {"type": ["string", "null"], "enum": ["low", "medium", "high", "critical", null]},
|
|
"liquidityRisk": {"type": "string", "enum": ["low", "medium", "high", "critical"]},
|
|
"executionRisk": {"type": "string", "enum": ["low", "medium", "high", "critical"]},
|
|
"headlineRisk": {"type": "string", "enum": ["low", "medium", "high", "critical"]},
|
|
"summary": {"type": "string"}
|
|
}
|
|
}
|