api-docs/models/SystemWaypoint.json
2023-06-09 23:50:36 +03:00

26 lines
475 B
JSON

{
"type": "object",
"properties": {
"symbol": {
"type": "string",
"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"
]
}