{
  "$schema" : "https://json-schema.org/draft/2019-09/schema",
  "$defs" : {
    "Check" : {
      "type" : "object",
      "properties" : {
        "Enabled" : {
          "type" : "boolean",
          "description" : "Whether this health check is enabled"
        }
      },
      "additionalProperties" : false
    }
  },
  "type" : "object",
  "properties" : {
    "Enabled" : {
      "type" : "boolean",
      "description" : "Whether health check is enabled",
      "default" : "null"
    },
    "Checks" : {
      "description" : "Settings for an individual health checks",
      "additionalProperties" : {
        "$ref" : "#/$defs/Check"
      },
      "type" : "object",
      "examples" : [ "RestartRequiredCheck", "EngineModeCheck", "ReleaseCandidateCheck" ]
    }
  },
  "additionalProperties" : false
}
