{
  "$schema" : "https://json-schema.org/draft/2019-09/schema",
  "$defs" : {
    "FiringStatistic" : {
      "type" : "object",
      "properties" : {
        "Active" : {
          "type" : "boolean",
          "description" : "If set to true, a process element statistic is written periodically to the log directory.\nMay impact server performance."
        },
        "Interval" : {
          "type" : "integer",
          "description" : "Interval in seconds the 'process element statistic' is written to the log directory",
          "default" : "300"
        }
      },
      "additionalProperties" : false
    }
  },
  "type" : "object",
  "properties" : {
    "FiringStatistic" : {
      "$ref" : "#/$defs/FiringStatistic"
    }
  },
  "additionalProperties" : false
}
