api-docs/models/SystemWaypoint.json

26 lines
490 B
JSON

{
"type": "object",
"properties": {
"symbol": {
"$ref": "./WaypointSymbol.json",
"description": "The symbol of the waypoint."
},
"type": {
"$ref": "./WaypointType.json"
},
"x": {
"type": "integer",
"description": "Position in the universe in the x axis."
},
"y": {
"type": "integer",
"description": "Position in the universe in the y axis."
}
},
"required": [
"symbol",
"type",
"x",
"y"
]
}