api-docs/models/ShipRequirements.json
2022-10-05 18:13:47 -07:00

18 lines
284 B
JSON

{
"type": "object",
"description": "The requirements for installation on a ship",
"properties": {
"power": {
"type": "integer",
"minimum": 0
},
"crew": {
"type": "integer",
"minimum": 0
}
},
"required": [
"power",
"crew"
]
}