api-docs/models/ShipCargoItem.json

21 lines
327 B
JSON
Raw Normal View History

2022-10-06 01:42:15 +02:00
{
"type": "object",
"description": "The type of cargo item and the number of units.",
"properties": {
"symbol": {
2022-10-16 06:34:08 +02:00
"type": "string"
2022-10-06 01:42:15 +02:00
},
"name": {
2022-10-16 06:34:08 +02:00
"type": "string"
2022-10-06 01:42:15 +02:00
},
"units": {
"type": "integer",
"minimum": 1
}
},
"required": [
"symbol",
"name",
"units"
]
}