changedOutput schema / (root)
Previous value: -{
- "$defs": {
- "AnomalyDetection": {
- "properties": {
- "anomaly_result": {
- "type": "string"
- },
- "significance_level": {
- "type": "string"
- },
- "test_method": {
- "type": "string"
- },
- "thresholds": {
- "$ref": "#/$defs/AnomalyThresholds"
- }
- },
- "required": [
- "anomaly_result",
- "significance_level",
- "test_method",
- "thresholds"
- ],
- "type": "object"
- },
- "AnomalyThresholds": {
- "properties": {
- "high": {
- "type": "string"
- },
- "low": {
- "type": "string"
- },
- "medium": {
- "type": "string"
- }
- },
- "required": [
- "low",
- "medium",
- "high"
- ],
- "type": "object"
- },
- "FactDataSource": {
- "properties": {
- "icon": {
- "type": "string"
- },
- "source_name": {
- "type": "string"
- },
- "type": {
- "$ref": "#/$defs/FactType"
- },
- "url": {
- "type": "string"
- }
- },
- "required": [
- "source_name",
- "type",
- "url",
- "icon"
- ],
- "type": "object"
- },
- "FactDirection": {
- "enum": [
- "long",
- "short",
- "neutral",
- ""
- ],
- "type": "string"
- },
- "FactFactor": {
- "properties": {
- "anomaly_detection": {
- "$ref": "#/$defs/AnomalyDetection"
- },
- "factor_groups": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "long_short_direction": {
- "$ref": "#/$defs/FactDirection"
- },
- "name": {
- "type": "string"
- },
- "trigger_condition": {
- "type": "string"
- }
- },
- "required": [
- "name",
- "factor_groups",
- "long_short_direction",
- "trigger_condition",
- "anomaly_detection"
- ],
- "type": "object"
- },
- "FactNlInfo": {
- "properties": {
- "eli_explain": {
- "$ref": "#/$defs/NlField"
- },
- "invest_anal": {
- "$ref": "#/$defs/NlField"
- },
- "sub_title": {
- "type": "string"
- },
- "summary": {
- "$ref": "#/$defs/NlField"
- },
- "title": {
- "type": "string"
- }
- },
- "required": [
- "title",
- "sub_title",
- "summary",
- "invest_anal",
- "eli_explain"
- ],
- "type": "object"
- },
- "FactSymbol": {
- "properties": {
- "security_name": {
- "type": "string"
- },
- "symbol": {
- "type": "string"
- }
- },
- "required": [
- "symbol",
- "security_name"
- ],
- "type": "object"
- },
- "FactType": {
- "enum": [
- "News",
- "Fundamental",
- "Technical",
- "Unknown"
- ],
- "type": "string"
- },
- "NlField": {
- "anyOf": [
- {
- "items": {
- "$ref": "#/$defs/NlTag"
- },
- "type": "array"
- },
- {
- "type": "string"
- }
- ]
- },
- "NlTag": {
- "properties": {
- "tag": {
- "type": "string"
- },
- "value": {
- "type": "string"
- }
- },
- "required": [
- "tag",
- "value"
- ],
- "type": "object"
- },
- "SecurityFactItem": {
- "properties": {
- "data_source": {
- "items": {
- "$ref": "#/$defs/FactDataSource"
- },
- "type": "array"
- },
- "direction": {
- "$ref": "#/$defs/FactDirection"
- },
- "fact_id": {
- "type": "string"
- },
- "fact_type": {
- "$ref": "#/$defs/FactType"
- },
- "factors": {
- "items": {
- "$ref": "#/$defs/FactFactor"
- },
- "type": "array"
- },
- "nl_info": {
- "$ref": "#/$defs/FactNlInfo"
- },
- "occur_time": {
- "type": "string"
- },
- "symbols_info": {
- "items": {
- "$ref": "#/$defs/FactSymbol"
- },
- "type": "array"
- }
- },
- "required": [
- "fact_id",
- "fact_type",
- "direction",
- "occur_time",
- "symbols_info",
- "factors",
- "data_source",
- "nl_info"
- ],
- "type": "object"
- }
- },
- "properties": {
- "facts": {
- "items": {
- "$ref": "#/$defs/SecurityFactItem"
- },
- "type": "array"
- }
- },
- "required": [
- "facts"
- ],
- "type": "object"
-}New value: +null