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

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