github.com/netdata/go.d.plugin@v0.58.1/modules/unbound/config_schema.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "title": "go.d/unbound job configuration schema.", 4 "type": "object", 5 "properties": { 6 "name": { 7 "type": "string" 8 }, 9 "address": { 10 "type": "string" 11 }, 12 "timeout": { 13 "type": [ 14 "string", 15 "integer" 16 ] 17 }, 18 "conf_path": { 19 "type": "string" 20 }, 21 "cumulative_stats": { 22 "type": "boolean" 23 }, 24 "use_tls": { 25 "type": "boolean" 26 }, 27 "tls_ca": { 28 "type": "string" 29 }, 30 "tls_cert": { 31 "type": "string" 32 }, 33 "tls_key": { 34 "type": "string" 35 }, 36 "tls_skip_verify": { 37 "type": "boolean" 38 } 39 }, 40 "required": [ 41 "name", 42 "address" 43 ] 44 }