{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/oomctl/dump.json",
  "title": "oomctl/dump",
  "description": "oomctl, the settings and monitored cgroups of systemd-oomd",
  "x-jsonize": {
    "definition": "oomctl/dump",
    "version": 1
  },
  "type": "array",
  "items": {
    "$ref": "#/$defs/node"
  },
  "$defs": {
    "node": {
      "type": "object",
      "properties": {
        "label": {
          "type": "string"
        },
        "value": {
          "type": [
            "string",
            "null"
          ]
        },
        "children": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/node"
          }
        }
      },
      "required": [
        "label",
        "value",
        "children"
      ]
    }
  }
}
