SpaceX Core

A serialized Falcon first-stage core. Derived from the r-spacex/SpaceX-API mongoose model.

SpaceLaunchSatellitesStarlinkFalcon 9Falcon HeavyDragonRocketsOpen SourceCommunityRESTGraphQLOpen Data

Properties

Name Type Description
id string
serial string Booster serial (e.g. B1062).
block integer
status string
reuse_count integer
rtls_attempts integer
rtls_landings integer
asds_attempts integer
asds_landings integer
last_update string
launches array
View JSON Schema on GitHub

JSON Schema

spacex-core-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/spacex/json-schema/spacex-core-schema.json",
  "title": "SpaceX Core",
  "description": "A serialized Falcon first-stage core. 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"
    },
    "serial": {
      "type": "string",
      "description": "Booster serial (e.g. B1062)."
    },
    "block": {
      "type": "integer",
      "nullable": true
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive",
        "unknown",
        "expended",
        "lost",
        "retired"
      ]
    },
    "reuse_count": {
      "type": "integer",
      "default": 0
    },
    "rtls_attempts": {
      "type": "integer",
      "default": 0
    },
    "rtls_landings": {
      "type": "integer",
      "default": 0
    },
    "asds_attempts": {
      "type": "integer",
      "default": 0
    },
    "asds_landings": {
      "type": "integer",
      "default": 0
    },
    "last_update": {
      "type": "string",
      "nullable": true
    },
    "launches": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "serial",
    "status"
  ]
}