changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "DcaExecution": {
+ "description": "A single DCA plan execution record.",
+ "properties": {
+ "amount": {
+ "description": "Amount invested (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "Execution date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "order_id": {
+ "description": "Resulting order ID, if any.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "price": {
+ "description": "Execution price (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "quantity": {
+ "description": "Quantity acquired (decimal string).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Execution status.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `dca_history`. Execution records for one DCA plan, forwarded\nafter the standard transform. Subset of the wire payload — only documented\nfields are declared; all optional.",
+ "properties": {
+ "executions": {
+ "description": "Execution records.",
+ "items": {
+ "$ref": "#/$defs/DcaExecution"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "DcaHistoryResponse",
+ "type": "object"
+}