mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
29 lines
626 B
JSON
29 lines
626 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"shipSymbol": {
|
|
"type": "string",
|
|
"description": "The symbol of the ship that was purchased."
|
|
},
|
|
"price": {
|
|
"type": "integer",
|
|
"description": "The price of the transaction.",
|
|
"minimum": 1
|
|
},
|
|
"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": [
|
|
"symbol",
|
|
"price",
|
|
"agentSymbol",
|
|
"timestamp"
|
|
]
|
|
} |