github.com/netdata/go.d.plugin@v0.58.1/modules/isc_dhcpd/config_schema.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-07/schema#",
     3    "title": "go.d/isc_dhcpd job configuration schema.",
     4    "type": "object",
     5    "properties": {
     6      "name": {
     7        "type": "string"
     8      },
     9      "leases_path": {
    10        "type": "string"
    11      },
    12      "pools": {
    13        "type": "array",
    14        "items": {
    15          "type": "object",
    16          "properties": {
    17            "name": {
    18              "type": "string"
    19            },
    20            "networks": {
    21              "type": "string"
    22            }
    23          },
    24          "required": [
    25            "name",
    26            "networks"
    27          ]
    28        }
    29      }
    30    },
    31    "required": [
    32      "name",
    33      "leases_path",
    34      "pools"
    35    ]
    36  }