api-docs/models/ShipCargo.json
2022-10-05 18:13:55 -07:00

21 lines
444 B
JSON

{
"type": "object",
"properties": {
"capacity": {
"type": "integer",
"description": "The max number of items that can be stored in the cargo hold.",
"minimum": 0
},
"inventory": {
"type": "array",
"description": "The items currently in the cargo hold.",
"items": {
"$ref": "./ShipCargoItem.json"
},
"required": [
"capacity",
"inventory"
]
}
}
}