mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-15 06:40:51 +01:00
25 lines
573 B
JSON
25 lines
573 B
JSON
|
{
|
||
|
"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"
|
||
|
]
|
||
|
}
|