2022-10-06 01:42:15 +02:00
|
|
|
{
|
|
|
|
"description": "A waypoint is a location that ships can travel to such as a Planet, Moon or Space Station.",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"symbol": {
|
2023-12-16 17:46:48 +01:00
|
|
|
"$ref": "./WaypointSymbol.json"
|
2022-10-06 01:42:15 +02:00
|
|
|
},
|
|
|
|
"type": {
|
|
|
|
"$ref": "./WaypointType.json"
|
|
|
|
},
|
|
|
|
"systemSymbol": {
|
2023-12-16 17:46:48 +01:00
|
|
|
"$ref": "./SystemSymbol.json"
|
2022-10-06 01:42:15 +02:00
|
|
|
},
|
|
|
|
"x": {
|
2023-06-09 22:50:36 +02:00
|
|
|
"type": "integer",
|
2023-09-15 17:57:04 +02:00
|
|
|
"description": "Relative position of the waypoint on the system's x axis. This is not an absolute position in the universe."
|
2022-10-06 01:42:15 +02:00
|
|
|
},
|
|
|
|
"y": {
|
2023-06-09 22:50:36 +02:00
|
|
|
"type": "integer",
|
2023-09-15 17:57:04 +02:00
|
|
|
"description": "Relative position of the waypoint on the system's y axis. This is not an absolute position in the universe."
|
2022-10-06 01:42:15 +02:00
|
|
|
},
|
|
|
|
"orbitals": {
|
|
|
|
"type": "array",
|
2023-06-09 22:50:36 +02:00
|
|
|
"description": "Waypoints that orbit this waypoint.",
|
2022-10-06 01:42:15 +02:00
|
|
|
"items": {
|
|
|
|
"$ref": "./WaypointOrbital.json"
|
|
|
|
}
|
|
|
|
},
|
2023-09-15 17:57:04 +02:00
|
|
|
"orbits": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1,
|
|
|
|
"description": "The symbol of the parent waypoint, if this waypoint is in orbit around another waypoint. Otherwise this value is undefined."
|
|
|
|
},
|
2022-10-28 06:09:27 +02:00
|
|
|
"faction": {
|
2022-12-17 04:03:59 +01:00
|
|
|
"$ref": "./WaypointFaction.json"
|
2022-10-06 01:42:15 +02:00
|
|
|
},
|
|
|
|
"traits": {
|
|
|
|
"type": "array",
|
|
|
|
"description": "The traits of the waypoint.",
|
|
|
|
"items": {
|
|
|
|
"$ref": "./WaypointTrait.json"
|
|
|
|
}
|
|
|
|
},
|
2023-09-22 00:00:04 +02:00
|
|
|
"modifiers": {
|
|
|
|
"type": "array",
|
|
|
|
"description": "The modifiers of the waypoint.",
|
|
|
|
"items": {
|
|
|
|
"$ref": "./WaypointModifier.json"
|
|
|
|
}
|
|
|
|
},
|
2022-10-06 01:42:15 +02:00
|
|
|
"chart": {
|
2022-10-22 18:05:01 +02:00
|
|
|
"$ref": "./Chart.json"
|
2023-10-04 22:46:37 +02:00
|
|
|
},
|
|
|
|
"isUnderConstruction": {
|
|
|
|
"type": "boolean",
|
|
|
|
"description": "True if the waypoint is under construction."
|
2022-10-06 01:42:15 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"symbol",
|
|
|
|
"type",
|
|
|
|
"systemSymbol",
|
|
|
|
"x",
|
|
|
|
"y",
|
|
|
|
"orbitals",
|
2023-10-04 22:46:37 +02:00
|
|
|
"traits",
|
|
|
|
"isUnderConstruction"
|
2022-10-06 01:42:15 +02:00
|
|
|
]
|
|
|
|
}
|