github.com/netdata/go.d.plugin@v0.58.1/modules/freeradius/config_schema.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "title": "go.d/freeradius job configuration schema.", 4 "type": "object", 5 "properties": { 6 "name": { 7 "type": "string" 8 }, 9 "address": { 10 "type": "string" 11 }, 12 "port": { 13 "type": "integer" 14 }, 15 "secret": { 16 "type": "string" 17 }, 18 "timeout": { 19 "type": [ 20 "string", 21 "integer" 22 ] 23 } 24 }, 25 "required": [ 26 "name", 27 "address", 28 "port", 29 "secret" 30 ] 31 }