api-docs/models/JumpGate.json

25 lines
573 B
JSON
Raw Normal View History

2022-12-23 17:57:37 +01:00
{
"type": "object",
"description": "",
"properties": {
"jumpRange": {
"type": "number",
"description": "The maximum jump range of the gate."
},
"factionSymbol": {
"type": "string",
"description": "The symbol of the faction that owns the gate."
},
"connectedSystems": {
"type": "array",
"description": "The systems within range of the gate that have a corresponding gate.",
"items": {
"$ref": "./ConnectedSystem.json"
}
}
},
"required": [
"jumpRange",
"connectedSystems"
]
}