changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "AlertIndicator": {
+ "description": "A single configured price-alert indicator.",
+ "properties": {
+ "condition": {
+ "description": "Alert condition.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "enabled": {
+ "description": "Whether the alert is currently enabled.",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "frequency": {
+ "description": "Alert frequency.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Alert (indicator) ID. Use as `alert_id` in alert_delete/enable/disable.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "indicator_id": {
+ "description": "Indicator type ID.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "price": {
+ "description": "Threshold price or percentage value.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "triggered_at": {
+ "description": "Time the alert last triggered (RFC3339), if any.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "AlertSymbolGroup": {
+ "description": "A group of alert indicators configured for one security.",
+ "properties": {
+ "indicators": {
+ "description": "Configured alert indicators for this symbol.",
+ "items": {
+ "$ref": "#/$defs/AlertIndicator"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Security symbol (upstream `counter_id`, normalized to `<CODE>.<MARKET>`).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `alert_list`. The upstream price-alert payload, forwarded after\nthe standard transform (note: upstream `counter_id` is renamed to `symbol`\nand `*_at` timestamps become RFC3339). Subset of the wire payload — only the\ndocumented fields are declared; all are optional.",
+ "properties": {
+ "lists": {
+ "description": "Per-symbol alert groups.",
+ "items": {
+ "$ref": "#/$defs/AlertSymbolGroup"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "AlertListResponse",
+ "type": "object"
+}