addedInput schema / examples
Added value: +[
+ {
+ "endtime": "2024-01-31",
+ "minmagnitude": 5,
+ "starttime": "2024-01-01"
+ },
+ {
+ "endtime": "2024-12-31",
+ "latitude": 35.68,
+ "longitude": 139.69,
+ "maxradius": 5,
+ "minmagnitude": 3,
+ "starttime": "2024-01-01"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total number of earthquakes matching criteria",
+ "type": "number"
+ },
+ "earthquakes": {
+ "description": "List of earthquakes matching search criteria",
+ "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"
+}