api-docs/models/Siphon.json
2023-10-23 16:33:13 -07:00

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