api-docs/models/ShipCargoItem.json

24 lines
517 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-22 18:05:01 +02:00
"type": "string",
"description": "The unique identifier of the cargo item type."
2022-10-06 01:42:15 +02:00
},
"name": {
2022-10-22 18:05:01 +02:00
"type": "string",
"description": "The name of the cargo item type."
2022-10-06 01:42:15 +02:00
},
"units": {
"type": "integer",
2022-10-22 18:05:01 +02:00
"description": "The number of units of the cargo item.",
2022-10-06 01:42:15 +02:00
"minimum": 1
}
},
"required": [
"symbol",
"name",
"units"
]
}