@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
116 lines • 2.87 kB
JSON
{
"$ref": "#/definitions/ExtendedMarket",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"ExtendedMarket": {
"additionalProperties": false,
"description": "Extended market data written to separate 'Market.json' file.",
"properties": {
"CarrierDockingAccess": {
"type": "string"
},
"Items": {
"items": {
"additionalProperties": false,
"properties": {
"BuyPrice": {
"type": "number"
},
"Category": {
"type": "string"
},
"Category_Localised": {
"type": "string"
},
"Consumer": {
"type": "boolean"
},
"Demand": {
"type": "number"
},
"DemandBracket": {
"type": "number"
},
"MeanPrice": {
"type": "number"
},
"Name": {
"type": "string"
},
"Name_Localised": {
"type": "string"
},
"Producer": {
"type": "boolean"
},
"Rare": {
"type": "boolean"
},
"SellPrice": {
"type": "number"
},
"Stock": {
"type": "number"
},
"StockBracket": {
"type": "number"
},
"id": {
"type": "number"
}
},
"required": [
"id",
"Name",
"Name_Localised",
"Category",
"Category_Localised",
"BuyPrice",
"SellPrice",
"MeanPrice",
"StockBracket",
"DemandBracket",
"Stock",
"Demand",
"Consumer",
"Producer",
"Rare"
],
"type": "object"
},
"type": "array"
},
"MarketID": {
"type": "number"
},
"StarSystem": {
"type": "string"
},
"StationName": {
"type": "string"
},
"StationType": {
"type": "string"
},
"event": {
"const": "Market",
"description": "The type of event.",
"type": "string"
},
"timestamp": {
"description": "The time in GMT, ISO 8601.",
"type": "string"
}
},
"required": [
"Items",
"MarketID",
"StarSystem",
"StationName",
"event",
"timestamp"
],
"type": "object"
}
}
}