api-docs/models/ShipyardTransaction.json
2023-12-16 08:48:06 -08:00

40 lines
982 B
JSON

{
"type": "object",
"description": "Results of a transaction with a shipyard.",
"properties": {
"waypointSymbol": {
"$ref": "./WaypointSymbol.json"
},
"shipSymbol": {
"type": "string",
"deprecated": true,
"description": "The symbol of the ship that was the subject of the transaction."
},
"shipType": {
"type": "string",
"description": "The symbol of the ship that was the subject of the transaction."
},
"price": {
"type": "integer",
"description": "The price of the transaction.",
"minimum": 0
},
"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": [
"waypointSymbol",
"shipSymbol",
"shipType",
"price",
"agentSymbol",
"timestamp"
]
}