api-docs/models/Extraction.json

18 lines
341 B
JSON
Raw Permalink Normal View History

2022-10-22 18:05:01 +02:00
{
2023-06-09 22:50:36 +02:00
"description": "Extraction details.",
2022-10-22 18:05:01 +02:00
"type": "object",
"properties": {
"shipSymbol": {
"type": "string",
2023-06-09 22:50:36 +02:00
"minLength": 1,
"description": "Symbol of the ship that executed the extraction."
2022-10-22 18:05:01 +02:00
},
"yield": {
"$ref": "./ExtractionYield.json"
2022-10-22 18:05:01 +02:00
}
},
"required": [
"shipSymbol",
"yield"
]
}