mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-15 14:50:52 +01:00
19 lines
387 B
JSON
19 lines
387 B
JSON
|
{
|
||
|
"description": "Siphon details.",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"shipSymbol": {
|
||
|
"type": "string",
|
||
|
"minLength": 1,
|
||
|
"description": "Symbol of the ship that executed the siphon."
|
||
|
},
|
||
|
"yield": {
|
||
|
"$ref": "./SiphonYield.json",
|
||
|
"description": "Yields from the siphon operation."
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"shipSymbol",
|
||
|
"yield"
|
||
|
]
|
||
|
}
|