{
  "$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"
    }
  }
}