api-docs/models/SystemWaypoint.json

26 lines
475 B
JSON
Raw Normal View History

2022-10-22 18:05:01 +02:00
{
"type": "object",
"properties": {
"symbol": {
2023-06-09 22:50:36 +02:00
"type": "string",
"description": "The symbol of the waypoint."
2022-12-17 17:16:01 +01:00
},
"type": {
"$ref": "./WaypointType.json"
2022-12-17 18:32:19 +01:00
},
"x": {
2023-06-09 22:50:36 +02:00
"type": "integer",
"description": "Position in the universe in the x axis."
2022-12-17 18:32:19 +01:00
},
"y": {
2023-06-09 22:50:36 +02:00
"type": "integer",
"description": "Position in the universe in the y axis."
2022-10-22 18:05:01 +02:00
}
},
"required": [
2022-12-17 17:16:01 +01:00
"symbol",
2022-12-17 18:32:19 +01:00
"type",
"x",
"y"
2022-10-22 18:05:01 +02:00
]
}