changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "DcaStatsItem": {
+ "description": "Per-symbol DCA statistics line.",
+ "properties": {
+ "invested": {
+ "description": "Amount invested in this symbol (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "return_rate": {
+ "description": "Return rate for this symbol (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Security symbol.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "description": "Current value of this symbol's position (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `dca_stats`. Aggregate DCA statistics forwarded after the\nstandard transform. Subset of the wire payload — only documented fields are\ndeclared; all optional.",
+ "properties": {
+ "items": {
+ "description": "Per-symbol breakdown.",
+ "items": {
+ "$ref": "#/$defs/DcaStatsItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "plan_count": {
+ "description": "Number of plans included.",
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "return_rate": {
+ "description": "Overall return rate (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total_invested": {
+ "description": "Total amount invested across plans (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total_return": {
+ "description": "Total return (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total_value": {
+ "description": "Current total market value (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "title": "DcaStatsResponse",
+ "type": "object"
+}