mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-15 06:40:51 +01:00
30 lines
482 B
JSON
30 lines
482 B
JSON
|
{
|
||
|
"description": "The destination or departure of a ships nav route.",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"symbol": {
|
||
|
"type": "string",
|
||
|
"minLength": 1
|
||
|
},
|
||
|
"type": {
|
||
|
"$ref": "./WaypointType.json"
|
||
|
},
|
||
|
"systemSymbol": {
|
||
|
"type": "string",
|
||
|
"minLength": 1
|
||
|
},
|
||
|
"x": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"y": {
|
||
|
"type": "integer"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"symbol",
|
||
|
"type",
|
||
|
"systemSymbol",
|
||
|
"x",
|
||
|
"y"
|
||
|
]
|
||
|
}
|