update: add waypoint symbol to market transaction

This commit is contained in:
Space Admiral 2023-03-14 09:17:20 -07:00
parent d91b85a77a
commit 49e925eee8

View File

@ -1,6 +1,10 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"waypointSymbol": {
"type": "string",
"description": "The symbol of the waypoint where the transaction took place."
},
"shipSymbol": { "shipSymbol": {
"type": "string", "type": "string",
"description": "The symbol of the ship that made the transaction." "description": "The symbol of the ship that made the transaction."
@ -39,11 +43,13 @@
} }
}, },
"required": [ "required": [
"symbol", "waypointSymbol",
"shipSymbol",
"tradeSymbol",
"type", "type",
"units", "units",
"pricePerUnit", "pricePerUnit",
"shipSymbol", "totalPrice",
"timestamp" "timestamp"
] ]
} }