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

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