SpaceX HistoryEvent

A historical SpaceX event. Derived from the r-spacex/SpaceX-API mongoose model.

SpaceLaunchSatellitesStarlinkFalcon 9Falcon HeavyDragonRocketsOpen SourceCommunityRESTGraphQLOpen Data

Properties

Name Type Description
id string
title string
event_date_utc string
event_date_unix integer
details string
links object
View JSON Schema on GitHub

JSON Schema

spacex-history-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/spacex/json-schema/spacex-history-schema.json",
  "title": "SpaceX HistoryEvent",
  "description": "A historical SpaceX event. Derived from the r-spacex/SpaceX-API mongoose model.",
  "x-schema-source": "documentation",
  "x-source-url": "https://github.com/r-spacex/SpaceX-API/tree/master/docs",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string",
      "nullable": true
    },
    "event_date_utc": {
      "type": "string",
      "nullable": true,
      "format": "date-time"
    },
    "event_date_unix": {
      "type": "integer",
      "nullable": true
    },
    "details": {
      "type": "string",
      "nullable": true
    },
    "links": {
      "type": "object",
      "properties": {
        "article": {
          "type": "string",
          "nullable": true,
          "format": "uri"
        }
      }
    }
  }
}