api-docs/models/ShipyardShip.json
2023-11-18 12:58:08 -08:00

74 lines
1.2 KiB
JSON

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