2022-10-22 18:05:01 +02:00
|
|
|
{
|
|
|
|
"description": "",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"symbol": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
|
|
|
"sectorSymbol": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
|
|
|
"type": {
|
2022-12-04 17:38:00 +01:00
|
|
|
"$ref": "./SystemType.json"
|
2022-10-22 18:05:01 +02:00
|
|
|
},
|
|
|
|
"x": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"y": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"waypoints": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "./SystemWaypoint.json"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"factions": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "./SystemFaction.json"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"symbol",
|
|
|
|
"sectorSymbol",
|
|
|
|
"type",
|
|
|
|
"x",
|
|
|
|
"y",
|
|
|
|
"waypoints",
|
2022-10-28 06:09:27 +02:00
|
|
|
"factions"
|
2022-10-22 18:05:01 +02:00
|
|
|
]
|
|
|
|
}
|