api-docs/models/ExtractionYield.json

18 lines
416 B
JSON
Raw Normal View History

2022-10-22 18:05:01 +02:00
{
"type": "object",
2023-06-09 22:50:36 +02:00
"description": "A yield from the extraction operation.",
2022-10-22 18:05:01 +02:00
"properties": {
"symbol": {
2023-06-09 22:50:36 +02:00
"$ref": "./TradeSymbol.json",
"description": "Symbol of the good that was extracted."
2022-10-22 18:05:01 +02:00
},
"units": {
"type": "integer",
"description": "The number of units extracted that were placed into the ship's cargo hold."
}
},
"required": [
"symbol",
"units"
]
}