@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
52 lines • 1.27 kB
JSON
{
"$ref": "#/definitions/ExtendedModuleInfo",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"ExtendedModuleInfo": {
"additionalProperties": false,
"description": "Extended modules info written to separate 'ModulesInfo.json' file.",
"properties": {
"Modules": {
"items": {
"additionalProperties": false,
"properties": {
"Item": {
"type": "string"
},
"Power": {
"type": "number"
},
"Priority": {
"type": "number"
},
"Slot": {
"type": "string"
}
},
"required": [
"Slot",
"Item"
],
"type": "object"
},
"type": "array"
},
"event": {
"const": "ModuleInfo",
"description": "The type of event.",
"type": "string"
},
"timestamp": {
"description": "The time in GMT, ISO 8601.",
"type": "string"
}
},
"required": [
"Modules",
"event",
"timestamp"
],
"type": "object"
}
}
}