mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
26 lines
583 B
JSON
26 lines
583 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"description": "The construction details of a waypoint.",
|
||
|
"properties": {
|
||
|
"symbol": {
|
||
|
"type": "string",
|
||
|
"description": "The symbol of the waypoint."
|
||
|
},
|
||
|
"materials": {
|
||
|
"type": "array",
|
||
|
"description": "The materials required to construct the waypoint.",
|
||
|
"items": {
|
||
|
"$ref": "./ConstructionMaterial.json"
|
||
|
}
|
||
|
},
|
||
|
"isComplete": {
|
||
|
"type": "boolean",
|
||
|
"description": "Whether the waypoint has been constructed."
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"symbol",
|
||
|
"materials",
|
||
|
"isComplete"
|
||
|
]
|
||
|
}
|