{
  "$schema" : "https://json-schema.org/draft/2019-09/schema",
  "$defs" : {
    "BootMode" : {
      "type" : "string",
      "enum" : [ "AUTO", "DISABLED" ]
    }
  },
  "type" : "object",
  "properties" : {
    "MaintenanceMode" : {
      "$ref" : "#/$defs/BootMode",
      "description" : "Switch to maintencance mode if a configuration problem is detected during startup.\nIf set to DISABLED you can explicit start the engine in maintenance mode by using the command line option '-maintenance'.",
      "default" : "AUTO"
    }
  },
  "additionalProperties" : false
}
