Cai
2026-08-14 9f147e4e2345e03f1d0f72ceb43cef7d88f69562
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Stock valuation V2 judgment overlay",
  "type": "object",
  "additionalProperties": false,
  "required": ["normalization", "valuation", "analysis"],
  "properties": {
    "normalization": {"type": "object"},
    "valuation": {
      "type": "object",
      "required": ["scenarios"],
      "properties": {"scenarios": {"type": "array", "minItems": 1}}
    },
    "analysis": {"type": "object"}
  }
}