changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "DcaPlan": {
+ "description": "A single DCA recurring-investment plan.",
+ "properties": {
+ "amount": {
+ "description": "Amount invested per cycle (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "currency": {
+ "description": "Settlement currency.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "frequency": {
+ "description": "Investment frequency (Daily / Weekly / Monthly).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "next_execution_date": {
+ "description": "Next scheduled execution date (RFC3339; upstream `next_trd_date`).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "plan_id": {
+ "description": "Plan ID. Use with dca_update / dca_pause / dca_resume / dca_stop.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Plan status (Active / Suspended / Finished).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Security symbol (e.g. \"AAPL.US\").",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `dca_list`. Upstream DCA plan-query payload forwarded after the\nstandard transform; the `next_trd_date` unix field is converted to RFC3339.\nSubset of the wire payload — only documented fields are declared; all\noptional.",
+ "properties": {
+ "plans": {
+ "description": "Recurring-investment (DCA) plans.",
+ "items": {
+ "$ref": "#/$defs/DcaPlan"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "DcaListResponse",
+ "type": "object"
+}