api-docs/models/TradeGood.json

22 lines
436 B
JSON
Raw Normal View History

2022-12-04 17:38:00 +01:00
{
"type": "object",
2023-06-09 22:50:36 +02:00
"description": "A good that can be traded for other goods or currency.",
2022-12-24 20:30:13 +01:00
"properties": {
"symbol": {
"$ref": "./TradeSymbol.json"
},
"name": {
2023-06-09 22:50:36 +02:00
"type": "string",
"description": "The name of the good."
},
"description": {
2023-06-09 22:50:36 +02:00
"type": "string",
"description": "The description of the good."
2022-12-24 20:30:13 +01:00
}
},
"required": [
"symbol",
"name",
"description"
]
2022-12-04 17:38:00 +01:00
}