mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-15 14:50:52 +01:00
29 lines
625 B
JSON
29 lines
625 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"waypointSymbol": {
|
||
|
"$ref": "./WaypointSymbol.json"
|
||
|
},
|
||
|
"shipSymbol": {
|
||
|
"type": "string",
|
||
|
"description": "The symbol of the ship."
|
||
|
},
|
||
|
"totalPrice": {
|
||
|
"type": "integer",
|
||
|
"description": "The total price of the transaction.",
|
||
|
"minimum": 0
|
||
|
},
|
||
|
"timestamp": {
|
||
|
"type": "string",
|
||
|
"format": "date-time",
|
||
|
"description": "The timestamp of the transaction."
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"waypointSymbol",
|
||
|
"shipSymbol",
|
||
|
"totalPrice",
|
||
|
"timestamp"
|
||
|
],
|
||
|
"description": "Result of a repair transaction."
|
||
|
}
|