changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "metric": {
+ "description": "Metric type: avg_tone (-100..+100)",
+ "type": "string"
+ },
+ "points": {
+ "description": "Number of datapoints returned",
+ "type": "number"
+ },
+ "query": {
+ "description": "The query string used",
+ "type": "string"
+ },
+ "series": {
+ "description": "Day-by-day tone datapoints",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Date of datapoint",
+ "type": "string"
+ },
+ "value": {
+ "description": "Average tone value for the day",
+ "type": "number"
+ }
+ },
+ "required": [
+ "date",
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "timespan": {
+ "description": "Lookback window applied (default 1m)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "query",
+ "timespan",
+ "metric",
+ "points",
+ "series"
+ ],
+ "type": "object"
+}