mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
24 lines
517 B
JSON
24 lines
517 B
JSON
{
|
|
"type": "object",
|
|
"description": "The type of cargo item and the number of units.",
|
|
"properties": {
|
|
"symbol": {
|
|
"type": "string",
|
|
"description": "The unique identifier of the cargo item type."
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"description": "The name of the cargo item type."
|
|
},
|
|
"units": {
|
|
"type": "integer",
|
|
"description": "The number of units of the cargo item.",
|
|
"minimum": 1
|
|
}
|
|
},
|
|
"required": [
|
|
"symbol",
|
|
"name",
|
|
"units"
|
|
]
|
|
} |