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

active

crew_capacity

Int

description

diameter

dry_mass_kg

Int

dry_mass_lb

Int

first_flight

heat_shield

height_w_trunk

id

ID

launch_payload_mass

launch_payload_vol

name

orbit_duration_yr

Int

pressurized_capsule

return_payload_mass

return_payload_vol

sidewall_angle_deg

thrusters

trunk

type

wikipedia

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"
}