changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total number of earthquakes found",
+ "type": "number"
+ },
+ "earthquakes": {
+ "description": "List of earthquake events",
+ "items": {
+ "properties": {
+ "depth_km": {
+ "description": "Depth in kilometers",
+ "type": "number"
+ },
+ "details_url": {
+ "description": "URL to USGS event details",
+ "type": "string"
+ },
+ "latitude": {
+ "description": "Event latitude",
+ "type": "number"
+ },
+ "location": {
+ "description": "Geographic location description",
+ "type": "string"
+ },
+ "longitude": {
+ "description": "Event longitude",
+ "type": "number"
+ },
+ "magnitude": {
+ "description": "Earthquake magnitude",
+ "type": "number"
+ },
+ "time": {
+ "description": "ISO 8601 timestamp of event",
+ "type": "string"
+ },
+ "tsunami_warning": {
+ "description": "Whether tsunami warning was issued",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "magnitude",
+ "location",
+ "time",
+ "latitude",
+ "longitude",
+ "depth_km",
+ "tsunami_warning",
+ "details_url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "earthquakes"
+ ],
+ "type": "object"
+}