UNPKG

@kayahr/ed-journal

Version:

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

73 lines 1.76 kB
{ "$ref": "#/definitions/ExtendedFCMaterials", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ExtendedFCMaterials": { "additionalProperties": false, "description": "Extended Fleet Carrier materials list written to separate 'FCMaterials.json' file.", "properties": { "CarrierID": { "type": "string" }, "CarrierName": { "type": "string" }, "Items": { "items": { "additionalProperties": false, "properties": { "Demand": { "type": "number" }, "Name": { "type": "string" }, "Name_Localised": { "type": "string" }, "Price": { "type": "number" }, "Stock": { "type": "number" }, "id": { "type": "number" } }, "required": [ "id", "Name", "Price", "Stock", "Demand" ], "type": "object" }, "type": "array" }, "MarketID": { "type": "number" }, "event": { "const": "FCMaterials", "description": "The type of event.", "type": "string" }, "timestamp": { "description": "The time in GMT, ISO 8601.", "type": "string" } }, "required": [ "CarrierID", "CarrierName", "Items", "MarketID", "event", "timestamp" ], "type": "object" } } }