api-docs/models/ShipyardShip.json

50 lines
809 B
JSON
Raw Normal View History

2022-10-06 01:42:15 +02:00
{
"description": "",
"type": "object",
"properties": {
"type": {
"$ref": "./ShipType.json"
2022-12-04 17:38:00 +01:00
},
"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
}