mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
30 lines
715 B
JSON
30 lines
715 B
JSON
{
|
|
"type": "object",
|
|
"description": "The navigation information of the ship.",
|
|
"properties": {
|
|
"systemSymbol": {
|
|
"type": "string",
|
|
"description": "The system symbol of the ship's current location."
|
|
},
|
|
"waypointSymbol": {
|
|
"type": "string",
|
|
"description": "The waypoint symbol of the ship's current location, or if the ship is in-transit, the waypoint symbol of the ship's destination."
|
|
},
|
|
"route": {
|
|
"$ref": "./ShipNavRoute.json"
|
|
},
|
|
"status": {
|
|
"$ref": "./ShipNavStatus.json"
|
|
},
|
|
"speed": {
|
|
"$ref": "./ShipNavSpeed.json"
|
|
}
|
|
},
|
|
"required": [
|
|
"systemSymbol",
|
|
"waypointSymbol",
|
|
"route",
|
|
"status",
|
|
"speed"
|
|
]
|
|
} |