changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "DcaCheckItem": {
+ "description": "DCA-eligibility result for one symbol.",
+ "properties": {
+ "reason": {
+ "description": "Reason when unsupported.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "support_dca": {
+ "description": "Whether the symbol supports DCA recurring investment.",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Security symbol.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `dca_check`. DCA-eligibility result per queried symbol,\nforwarded after the standard transform (upstream `counter_ids` query →\nper-symbol items). Subset of the wire payload — only documented fields are\ndeclared; all optional.",
+ "properties": {
+ "items": {
+ "description": "Per-symbol support results.",
+ "items": {
+ "$ref": "#/$defs/DcaCheckItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "DcaCheckResponse",
+ "type": "object"
+}