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

     1  {
     2    "$schema": "http://json-schema.org/draft-07/schema#",
     3    "title": "go.d/dnsmasq job configuration schema.",
     4    "type": "object",
     5    "properties": {
     6      "name": {
     7        "type": "string"
     8      },
     9      "protocol": {
    10        "type": "string"
    11      },
    12      "address": {
    13        "type": "string"
    14      },
    15      "timeout": {
    16        "type": [
    17          "string",
    18          "integer"
    19        ]
    20      }
    21    },
    22    "required": [
    23      "name",
    24      "address"
    25    ]
    26  }