api-docs/models/SystemWaypoint.json

23 lines
295 B
JSON
Raw Normal View History

2022-10-22 18:05:01 +02:00
{
"type": "object",
"properties": {
"symbol": {
2022-10-28 06:09:27 +02:00
"type": "string"
2022-12-17 17:16:01 +01:00
},
"type": {
"$ref": "./WaypointType.json"
2022-12-17 18:32:19 +01:00
},
"x": {
"type": "integer"
},
"y": {
"type": "integer"
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
]
}