Home
SpaceX (Community API)
Spacex Landpad Structure
Spacex Landpad Structure
A SpaceX landing pad or droneship. Derived from the r-spacex/SpaceX-API mongoose model.
Type: object
Properties: 14
Required: 1
Space Launch Satellites Starlink Falcon 9 Falcon Heavy Dragon Rockets Open Source Community REST GraphQL Open Data
SpaceX Landpad is a JSON Structure definition published by SpaceX (Community API), describing 14 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
id
name
full_name
status
type
locality
region
latitude
longitude
landing_attempts
landing_successes
wikipedia
details
launches
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/spacex/refs/heads/main/json-structure/spacex-landpad-structure.json",
"name": "SpaceX Landpad",
"description": "A SpaceX landing pad or droneship. 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"
},
"name": {
"type": "string",
"nullable": true
},
"full_name": {
"type": "string",
"nullable": true
},
"status": {
"type": "string",
"enum": [
"active",
"inactive",
"unknown",
"retired",
"lost",
"under construction"
]
},
"type": {
"type": "string",
"nullable": true,
"description": "e.g. RTLS, ASDS."
},
"locality": {
"type": "string",
"nullable": true
},
"region": {
"type": "string",
"nullable": true
},
"latitude": {
"type": "double",
"nullable": true
},
"longitude": {
"type": "double",
"nullable": true
},
"landing_attempts": {
"type": "int32",
"default": 0
},
"landing_successes": {
"type": "int32",
"default": 0
},
"wikipedia": {
"type": "uri",
"nullable": true
},
"details": {
"type": "string",
"nullable": true
},
"launches": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"status"
]
}