api-docs/models/TradeGood.json
2023-06-09 23:50:36 +03:00

22 lines
436 B
JSON

{
"type": "object",
"description": "A good that can be traded for other goods or currency.",
"properties": {
"symbol": {
"$ref": "./TradeSymbol.json"
},
"name": {
"type": "string",
"description": "The name of the good."
},
"description": {
"type": "string",
"description": "The description of the good."
}
},
"required": [
"symbol",
"name",
"description"
]
}