Ship

Definition

type Ship {
  abs: Int
  active: Boolean
  attempted_landings: Int
  class: Int
  course_deg: Int
  home_port: String
  id: ID
  image: String
  imo: Int
  missions: [ShipMission]
  mmsi: Int
  model: String
  name: String
  position: ShipLocation
  roles: [String]
  speed_kn: Float
  status: String
  successful_landings: Int
  type: String
  url: String
  weight_kg: Int
  weight_lbs: Int
  year_built: Int
}

Fields

abs

Int

active

attempted_landings

Int

class

Int

course_deg

Int

home_port

id

ID

image

imo

Int

missions

mmsi

Int

model

name

position

roles

[String]

speed_kn

status

successful_landings

Int

type

url

weight_kg

Int

weight_lbs

Int

year_built

Int

Example

Ship.json
{
  "abs": 12345,
  "active": true,
  "attempted_landings": 12345,
  "class": 12345,
  "course_deg": 12345,
  "home_port": "Some string",
  "id": "ac23e983-c67e-442c-9570-c3f2d40e5bf3",
  "image": "Some string",
  "imo": 12345,
  "missions": [ShipMission],
  "mmsi": 12345,
  "model": "Some string",
  "name": "Some string",
  "position": ShipLocation,
  "roles": ["Some string"],
  "speed_kn": 123.45,
  "status": "Some string",
  "successful_landings": 12345,
  "type": "Some string",
  "url": "Some string",
  "weight_kg": 12345,
  "weight_lbs": 12345,
  "year_built": 12345
}