Cai
2026-08-16 2992aee3f9bb2eaa5dd4da28a598be3d67ea0ec0
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"}
  }
}