addedInput schema / examples
Added value: +[
+ {
+ "days": 30,
+ "limit": 50,
+ "status": "open"
+ },
+ {
+ "bbox": "-120,40,-110,35",
+ "category": "wildfires,severeStorms",
+ "days": 60,
+ "status": "all"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "events": {
+ "description": "List of natural events",
+ "items": {
+ "properties": {
+ "categories": {
+ "description": "Event categories",
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Category id",
+ "type": "string"
+ },
+ "title": {
+ "description": "Category title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "closed": {
+ "description": "Closed date or null if open",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Event description",
+ "type": "string"
+ },
+ "geometry": {
+ "description": "Geographic coordinates",
+ "items": {
+ "properties": {
+ "coordinates": {
+ "description": "GeoJSON coordinates",
+ "type": "array"
+ },
+ "date": {
+ "description": "Observation date",
+ "type": "string"
+ },
+ "type": {
+ "description": "Geometry type (Point, Polygon)",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "id": {
+ "description": "EONET event id",
+ "type": "string"
+ },
+ "link": {
+ "description": "Event link",
+ "type": "string"
+ },
+ "sources": {
+ "description": "Event sources",
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Source id",
+ "type": "string"
+ },
+ "url": {
+ "description": "Source URL",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Event title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "events"
+ ],
+ "type": "object"
+}