Dragon
Definition
type Dragon {
active: Boolean
crew_capacity: Int
description: String
diameter: Distance
dry_mass_kg: Int
dry_mass_lb: Int
first_flight: String
heat_shield: DragonHeatShield
height_w_trunk: Distance
id: ID
launch_payload_mass: Mass
launch_payload_vol: Volume
name: String
orbit_duration_yr: Int
pressurized_capsule: DragonPressurizedCapsule
return_payload_mass: Mass
return_payload_vol: Volume
sidewall_angle_deg: Float
thrusters: [DragonThrust]
trunk: DragonTrunk
type: String
wikipedia: String
}
Fields
Example
Dragon.json
{
"active": true,
"crew_capacity": 12345,
"description": "Some string",
"diameter": Distance,
"dry_mass_kg": 12345,
"dry_mass_lb": 12345,
"first_flight": "Some string",
"heat_shield": DragonHeatShield,
"height_w_trunk": Distance,
"id": "ac23e983-c67e-442c-9570-c3f2d40e5bf3",
"launch_payload_mass": Mass,
"launch_payload_vol": Volume,
"name": "Some string",
"orbit_duration_yr": 12345,
"pressurized_capsule": DragonPressurizedCapsule,
"return_payload_mass": Mass,
"return_payload_vol": Volume,
"sidewall_angle_deg": 123.45,
"thrusters": [DragonThrust],
"trunk": DragonTrunk,
"type": "Some string",
"wikipedia": "Some string"
}