api-docs/models/ConstructionMaterial.json
SpaceAdmiral a46d675039
V2.1 (#74)
* update: new traits and add modifiers

* breaking: jump gates and construction

* update: add supply to shipyard listing

* add gas siphon endpoint

* add cooldown to jumps

* add missing types

* update supply and activity levels

* update: add waypoint query filters for type and traits

* add cargo modules

* add shipyard activity
2023-10-28 09:26:28 -07:00

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"
]
}