api-docs/models/JumpGate.json

21 lines
439 B
JSON
Raw Normal View History

2022-12-23 17:57:37 +01:00
{
"type": "object",
"description": "",
"properties": {
2023-12-16 17:51:46 +01:00
"symbol": {
"$ref": "./WaypointSymbol.json"
},
2023-10-04 22:46:37 +02:00
"connections": {
2022-12-23 17:57:37 +01:00
"type": "array",
2023-10-04 22:46:37 +02:00
"description": "All the gates that are connected to this waypoint.",
2022-12-23 17:57:37 +01:00
"items": {
2023-10-04 22:46:37 +02:00
"type": "string",
"description": "The symbol of the waypoint that has a corresponding gate."
2022-12-23 17:57:37 +01:00
}
}
},
"required": [
2023-12-16 17:51:46 +01:00
"symbol",
2023-10-04 22:46:37 +02:00
"connections"
2022-12-23 17:57:37 +01:00
]
}