changedOutput schema / (root)
Previous value: -{
- "properties": {
- "count": {
- "description": "Total number of earthquakes in response",
- "type": "number"
- },
- "earthquakes": {
- "description": "List of recent earthquakes",
- "items": {
- "properties": {
- "alert": {
- "description": "Alert level if applicable",
- "type": [
- "string",
- "null"
- ]
- },
- "depth_km": {
- "description": "Depth below surface in kilometers",
- "type": "number"
- },
- "id": {
- "description": "USGS event ID",
- "type": "string"
- },
- "latitude": {
- "description": "Epicenter latitude",
- "type": "number"
- },
- "longitude": {
- "description": "Epicenter longitude",
- "type": "number"
- },
- "magnitude": {
- "description": "Earthquake magnitude",
- "type": "number"
- },
- "place": {
- "description": "Location description",
- "type": "string"
- },
- "significance": {
- "description": "Event significance score",
- "type": "number"
- },
- "time": {
- "description": "Event time in ISO 8601 format",
- "type": "string"
- },
- "tsunami": {
- "description": "Tsunami warning flag",
- "type": "boolean"
- },
- "type": {
- "description": "Event type (e.g., earthquake)",
- "type": "string"
- }
- },
- "required": [
- "id",
- "magnitude",
- "place",
- "time",
- "latitude",
- "longitude",
- "depth_km",
- "type",
- "tsunami",
- "significance"
- ],
- "type": "object"
- },
- "type": "array"
- }
- },
- "required": [
- "count",
- "earthquakes"
- ],
- "type": "object"
-}New value: +null