api-docs/models/ShipyardShip.json
Space Admiral a27432248e - add warp endpoint
- rename ship symbol to ship type
- update ship modules and engines w/ new types
2022-12-18 15:04:13 -08:00

50 lines
809 B
JSON

{
"description": "",
"type": "object",
"properties": {
"type": {
"$ref": "./ShipType.json"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"purchasePrice": {
"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"
}
}
},
"required": [
"symbol",
"name",
"description",
"purchasePrice",
"frame",
"reactor",
"engine",
"modules",
"mounts"
]
}