api-docs/models/System.json

56 lines
917 B
JSON
Raw Normal View History

2022-10-22 18:05:01 +02:00
{
"description": "",
"type": "object",
"properties": {
"symbol": {
"type": "string",
"minLength": 1
},
"sectorSymbol": {
"type": "string",
"minLength": 1
},
"type": {
"type": "string",
"enum": [
"NEUTRON_STAR",
"RED_STAR",
"ORANGE_STAR",
"BLUE_STAR",
"YOUNG_STAR",
"WHITE_DWARF",
"BLACK_HOLE",
"HYPERGIANT",
"NEBULA",
"UNSTABLE"
]
},
"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
]
}