2022-10-06 01:42:15 +02:00
|
|
|
{
|
|
|
|
"description": "",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2022-12-19 00:04:13 +01:00
|
|
|
"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
|
|
|
},
|
2023-10-22 21:51:47 +02:00
|
|
|
"supply": {
|
2023-10-26 02:27:37 +02:00
|
|
|
"$ref": "./SupplyLevel.json"
|
|
|
|
},
|
2023-10-28 02:27:44 +02:00
|
|
|
"activity": {
|
2023-10-26 02:27:37 +02:00
|
|
|
"$ref": "./ActivityLevel.json"
|
2023-10-22 21:51:47 +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"
|
|
|
|
}
|
2023-09-15 18:17:05 +02:00
|
|
|
},
|
|
|
|
"crew": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"required": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"capacity": {
|
|
|
|
"type": "integer"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"required",
|
|
|
|
"capacity"
|
|
|
|
]
|
2022-10-06 01:42:15 +02:00
|
|
|
}
|
2022-10-22 18:05:01 +02:00
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"symbol",
|
2022-12-04 17:38:00 +01:00
|
|
|
"name",
|
|
|
|
"description",
|
2023-10-22 21:51:47 +02:00
|
|
|
"supply",
|
2022-10-22 18:05:01 +02:00
|
|
|
"purchasePrice",
|
|
|
|
"frame",
|
|
|
|
"reactor",
|
|
|
|
"engine",
|
|
|
|
"modules",
|
2023-09-15 18:17:05 +02:00
|
|
|
"mounts",
|
|
|
|
"crew"
|
2022-10-22 18:05:01 +02:00
|
|
|
]
|
2022-10-06 01:42:15 +02:00
|
|
|
}
|