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