2022-10-22 18:05:01 +02:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2023-04-13 21:38:29 +02:00
|
|
|
"waypointSymbol": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "The symbol of the waypoint where the transaction took place."
|
|
|
|
},
|
2022-12-10 17:11:53 +01:00
|
|
|
"shipSymbol": {
|
2022-10-22 18:05:01 +02:00
|
|
|
"type": "string",
|
|
|
|
"description": "The symbol of the ship that was purchased."
|
|
|
|
},
|
|
|
|
"price": {
|
|
|
|
"type": "integer",
|
|
|
|
"description": "The price of the transaction.",
|
2023-05-21 18:28:14 +02:00
|
|
|
"minimum": 0
|
2022-10-22 18:05:01 +02:00
|
|
|
},
|
|
|
|
"agentSymbol": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "The symbol of the agent that made the transaction."
|
|
|
|
},
|
|
|
|
"timestamp": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "date-time",
|
|
|
|
"description": "The timestamp of the transaction."
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
2023-04-13 21:38:29 +02:00
|
|
|
"waypointSymbol",
|
|
|
|
"shipSymbol",
|
2022-10-22 18:05:01 +02:00
|
|
|
"price",
|
|
|
|
"agentSymbol",
|
|
|
|
"timestamp"
|
|
|
|
]
|
|
|
|
}
|