mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-15 06:40:51 +01:00
22 lines
526 B
JSON
22 lines
526 B
JSON
{
|
|
"description": "The details of the required construction materials for a given waypoint under construction.",
|
|
"type": "object",
|
|
"properties": {
|
|
"tradeSymbol": {
|
|
"$ref": "./TradeSymbol.json"
|
|
},
|
|
"required": {
|
|
"type": "integer",
|
|
"description": "The number of units required."
|
|
},
|
|
"fulfilled": {
|
|
"type": "integer",
|
|
"description": "The number of units fulfilled toward the required amount."
|
|
}
|
|
},
|
|
"required": [
|
|
"tradeSymbol",
|
|
"required",
|
|
"fulfilled"
|
|
]
|
|
} |