NASA · Schema

Geomagnetic Storm

A geomagnetic storm event from NASA's DONKI space weather database.

GovernmentScienceSpace

Properties

Name Type Description
gstID string Unique identifier for the geomagnetic storm.
startTime string Start time of the geomagnetic storm.
allKpIndex array Kp index observations for this storm.
View JSON Schema on GitHub

JSON Schema

geomagnetic-storm.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/nasa/blob/main/json-schema/geomagnetic-storm.json",
  "title": "Geomagnetic Storm",
  "description": "A geomagnetic storm event from NASA's DONKI space weather database.",
  "type": "object",
  "properties": {
    "gstID": {
      "type": "string",
      "description": "Unique identifier for the geomagnetic storm."
    },
    "startTime": {
      "type": "string",
      "format": "date-time",
      "description": "Start time of the geomagnetic storm."
    },
    "allKpIndex": {
      "type": "array",
      "description": "Kp index observations for this storm.",
      "items": {
        "type": "object",
        "properties": {
          "observedTime": { "type": "string", "format": "date-time" },
          "kpIndex": { "type": "number" },
          "source": { "type": "string" }
        }
      }
    }
  },
  "required": ["gstID", "startTime"]
}