changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "date_range": {
+ "description": "Lookback window applied",
+ "type": "string"
+ },
+ "locations": {
+ "description": "Ranked list of top locations",
+ "items": {
+ "properties": {
+ "code": {
+ "description": "2-letter country code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Country name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "share_pct": {
+ "description": "Percentage share of metric",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "metric": {
+ "description": "Metric type (http_requests, dns_queries, attacks)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "metric",
+ "date_range",
+ "locations"
+ ],
+ "type": "object"
+}