changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "deviation": {
+ "description": "Current peg deviation in basis points",
+ "type": "number"
+ },
+ "history": {
+ "description": "Recent peg deviation samples",
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "timestamp": {
+ "description": "ISO-8601 timestamp of the data point",
+ "type": "string"
+ },
+ "value": {
+ "description": "The recorded numeric value",
+ "type": "number"
+ }
+ },
+ "required": [
+ "timestamp",
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "pegTarget": {
+ "description": "Target peg in USD (typically 1.0)",
+ "type": "number"
+ },
+ "symbol": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "symbol",
+ "pegTarget",
+ "deviation",
+ "history"
+ ],
+ "type": "object"
+}