NASA Open APIs · Schema

EonetEvent

A natural event from NASA EONET (Earth Observatory Natural Event Tracker) v3.

GovernmentFederalSpaceEarth ScienceOpen DataAstronomyPlanetary ScienceHeliophysicsBioscienceNASA

Properties

Name Type Description
id string
title string
description string
link string
closed stringnull
categories array
sources array
geometry array
View JSON Schema on GitHub

JSON Schema

eonet-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/nasa-gov/json-schema/eonet-event-schema.json",
  "title": "EonetEvent",
  "description": "A natural event from NASA EONET (Earth Observatory Natural Event Tracker) v3.",
  "type": "object",
  "required": ["id", "title", "categories", "geometry"],
  "properties": {
    "id": {"type": "string"},
    "title": {"type": "string"},
    "description": {"type": "string"},
    "link": {"type": "string", "format": "uri"},
    "closed": {"type": ["string", "null"], "format": "date-time"},
    "categories": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {"type": "string"},
          "title": {"type": "string"}
        }
      }
    },
    "sources": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {"type": "string"},
          "url": {"type": "string", "format": "uri"}
        }
      }
    },
    "geometry": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "magnitudeValue": {"type": ["number", "null"]},
          "magnitudeUnit": {"type": ["string", "null"]},
          "date": {"type": "string", "format": "date-time"},
          "type": {"type": "string"},
          "coordinates": {"type": "array"}
        }
      }
    }
  }
}