api-docs/models/ShipyardShip.json

61 lines
1.1 KiB
JSON
Raw Normal View History

2022-10-06 01:42:15 +02:00
{
"description": "",
"type": "object",
"properties": {
"symbol": {
"type": "string",
2022-12-04 17:38:00 +01:00
"enum": [
"SHIP_PROBE_SATELLITE",
"SHIP_MINING_DRONE",
"SHIP_INTERCEPTOR",
"SHIP_LIGHT_HAULER",
"SHIP_COMMAND_FRIGATE",
"SHIP_EXPLORER",
"SHIP_HEAVY_FREIGHTER",
"SHIP_LIGHT_SHUTTLE",
"SHIP_ORE_HOUND"
]
},
"name": {
"type": "string"
},
"description": {
"type": "string"
2022-10-06 01:42:15 +02:00
},
2022-10-22 18:05:01 +02:00
"purchasePrice": {
2022-10-06 01:42:15 +02:00
"type": "integer"
},
"frame": {
"$ref": "./ShipFrame.json"
},
"reactor": {
"$ref": "./ShipReactor.json"
},
"engine": {
"$ref": "./ShipEngine.json"
},
"modules": {
"type": "array",
"items": {
"$ref": "./ShipModule.json"
}
},
"mounts": {
"type": "array",
"items": {
"$ref": "./ShipMount.json"
}
}
2022-10-22 18:05:01 +02:00
},
"required": [
"symbol",
2022-12-04 17:38:00 +01:00
"name",
"description",
2022-10-22 18:05:01 +02:00
"purchasePrice",
"frame",
"reactor",
"engine",
"modules",
"mounts"
]
2022-10-06 01:42:15 +02:00
}