From 281aa49b3460ae15aa2ddd87a955f73d73db3e52 Mon Sep 17 00:00:00 2001 From: Space Admiral Date: Tue, 14 Mar 2023 09:17:20 -0700 Subject: [PATCH] update: add waypoint symbol to market transaction --- models/MarketTransaction.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/models/MarketTransaction.json b/models/MarketTransaction.json index 56234b1..08d1367 100644 --- a/models/MarketTransaction.json +++ b/models/MarketTransaction.json @@ -1,6 +1,10 @@ { "type": "object", "properties": { + "waypointSymbol": { + "type": "string", + "description": "The symbol of the waypoint where the transaction took place." + }, "shipSymbol": { "type": "string", "description": "The symbol of the ship that made the transaction." @@ -39,11 +43,13 @@ } }, "required": [ - "symbol", + "waypointSymbol", + "shipSymbol", + "tradeSymbol", "type", "units", "pricePerUnit", - "shipSymbol", + "totalPrice", "timestamp" ] } \ No newline at end of file