2022-10-06 01:42:15 +02:00
|
|
|
{
|
|
|
|
"description": "",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"symbol": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "The symbol of the shipyard. The symbol is the same as the waypoint where the shipyard is located.",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
2022-12-19 06:39:25 +01:00
|
|
|
"shipTypes": {
|
|
|
|
"type": "array",
|
|
|
|
"description": "The list of ship types available for purchase at this shipyard.",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"$ref": "./ShipType.json"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2022-10-22 18:05:01 +02:00
|
|
|
"transactions": {
|
|
|
|
"type": "array",
|
|
|
|
"description": "The list of recent transactions at this shipyard.",
|
|
|
|
"items": {
|
|
|
|
"$ref": "./ShipyardTransaction.json"
|
|
|
|
}
|
|
|
|
},
|
2022-10-06 01:42:15 +02:00
|
|
|
"ships": {
|
|
|
|
"type": "array",
|
|
|
|
"description": "The ships that are currently available for purchase at the shipyard.",
|
|
|
|
"items": {
|
|
|
|
"$ref": "./ShipyardShip.json"
|
|
|
|
}
|
|
|
|
}
|
2022-10-22 18:05:01 +02:00
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"symbol",
|
2022-12-19 06:39:25 +01:00
|
|
|
"shipTypes"
|
2022-10-22 18:05:01 +02:00
|
|
|
]
|
2022-10-06 01:42:15 +02:00
|
|
|
}
|