2022-10-06 01:42:15 +02:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"symbol": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "The symbol of the trade good."
|
|
|
|
},
|
|
|
|
"tradeVolume": {
|
|
|
|
"type": "integer",
|
2022-10-22 18:05:01 +02:00
|
|
|
"description": "The typical volume flowing through the market for this type of good.",
|
2022-10-06 01:42:15 +02:00
|
|
|
"minimum": 1
|
|
|
|
},
|
|
|
|
"supply": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "A rough estimate of the total supply of this good in this marketplace.",
|
|
|
|
"enum": [
|
|
|
|
"HIGH",
|
|
|
|
"AVERAGE",
|
|
|
|
"LOW"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"purchasePrice": {
|
|
|
|
"type": "integer",
|
|
|
|
"description": "The price at which this good is sold.",
|
|
|
|
"minimum": 0
|
|
|
|
},
|
|
|
|
"sellPrice": {
|
|
|
|
"type": "integer",
|
|
|
|
"description": "The price at which this good is bought.",
|
|
|
|
"minimum": 0
|
|
|
|
}
|
2022-10-22 18:05:01 +02:00
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"symbol",
|
|
|
|
"tradeVolume",
|
|
|
|
"supply",
|
|
|
|
"purchasePrice",
|
|
|
|
"sellPrice"
|
|
|
|
]
|
2022-10-06 01:42:15 +02:00
|
|
|
}
|