UNPKG

@kayahr/ed-journal

Version:

Typescript library to read/watch the player journal of Frontier's game Elite Dangerous

73 lines 1.74 kB
{ "$ref": "#/definitions/ExtendedShipyard", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ExtendedShipyard": { "additionalProperties": false, "description": "Extended shipyard info written to separate 'Shipyard.json' file.", "properties": { "AllowCobraMkIV": { "type": "boolean" }, "Horizons": { "type": "boolean" }, "MarketID": { "type": "number" }, "PriceList": { "items": { "additionalProperties": false, "properties": { "ShipPrice": { "type": "number" }, "ShipType": { "type": "string" }, "ShipType_Localised": { "type": "string" }, "id": { "type": "number" } }, "required": [ "id", "ShipType", "ShipPrice" ], "type": "object" }, "type": "array" }, "StarSystem": { "type": "string" }, "StationName": { "type": "string" }, "event": { "const": "Shipyard", "description": "The type of event.", "type": "string" }, "timestamp": { "description": "The time in GMT, ISO 8601.", "type": "string" } }, "required": [ "AllowCobraMkIV", "Horizons", "MarketID", "PriceList", "StarSystem", "StationName", "event", "timestamp" ], "type": "object" } } }