SpaceX Company

SpaceX company info document (single). Derived from the r-spacex/SpaceX-API mongoose model.

SpaceLaunchSatellitesStarlinkFalcon 9Falcon HeavyDragonRocketsOpen SourceCommunityRESTGraphQLOpen Data

Properties

Name Type Description
id string
name string
founder string
founded integer
employees integer
vehicles integer
launch_sites integer
test_sites integer
ceo string
cto string
coo string
cto_propulsion string
valuation number
headquarters object
links object
summary string
View JSON Schema on GitHub

JSON Schema

spacex-company-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/spacex/json-schema/spacex-company-schema.json",
  "title": "SpaceX Company",
  "description": "SpaceX company info document (single). 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"
    },
    "founder": {
      "type": "string"
    },
    "founded": {
      "type": "integer"
    },
    "employees": {
      "type": "integer"
    },
    "vehicles": {
      "type": "integer"
    },
    "launch_sites": {
      "type": "integer"
    },
    "test_sites": {
      "type": "integer"
    },
    "ceo": {
      "type": "string"
    },
    "cto": {
      "type": "string"
    },
    "coo": {
      "type": "string"
    },
    "cto_propulsion": {
      "type": "string"
    },
    "valuation": {
      "type": "number"
    },
    "headquarters": {
      "type": "object",
      "properties": {
        "address": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "state": {
          "type": "string"
        }
      }
    },
    "links": {
      "type": "object",
      "properties": {
        "website": {
          "type": "string",
          "format": "uri"
        },
        "flickr": {
          "type": "string",
          "format": "uri"
        },
        "twitter": {
          "type": "string",
          "format": "uri"
        },
        "elon_twitter": {
          "type": "string",
          "format": "uri"
        }
      }
    },
    "summary": {
      "type": "string"
    }
  }
}