changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "breakdown": {
+ "description": "Aggregated counts per country, sorted by event count descending",
+ "items": {
+ "properties": {
+ "by_type": {
+ "additionalProperties": {
+ "type": "number"
+ },
+ "description": "Event count by type",
+ "type": "object"
+ },
+ "country": {
+ "description": "Country name",
+ "type": "string"
+ },
+ "events": {
+ "description": "Total events in country",
+ "type": "number"
+ },
+ "fatalities": {
+ "description": "Total fatalities in country",
+ "type": "number"
+ }
+ },
+ "required": [
+ "country",
+ "events",
+ "fatalities",
+ "by_type"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "countries": {
+ "description": "Number of countries with events",
+ "type": "number"
+ },
+ "total_events": {
+ "description": "Total events processed",
+ "type": "number"
+ },
+ "truncated": {
+ "description": "Whether results were capped at 5000 events",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "total_events",
+ "countries",
+ "truncated",
+ "breakdown"
+ ],
+ "type": "object"
+}