api-docs/models/ShipCargoItem.json
2022-10-15 21:34:08 -07:00

21 lines
327 B
JSON

{
"type": "object",
"description": "The type of cargo item and the number of units.",
"properties": {
"symbol": {
"type": "string"
},
"name": {
"type": "string"
},
"units": {
"type": "integer",
"minimum": 1
}
},
"required": [
"symbol",
"name",
"units"
]
}