github.com/netdata/go.d.plugin@v0.58.1/modules/bind/config_schema.json (about) 1 { 2 "$id": "https://example.com/person.schema.json", 3 "$schema": "https://json-schema.org/draft/2020-12/schema", 4 "title": "Bind collector job configuration", 5 "type": "object", 6 "properties": { 7 "firstName": { 8 "type": "string", 9 "description": "The person's first name." 10 }, 11 "lastName": { 12 "type": "string", 13 "description": "The person's last name." 14 }, 15 "age": { 16 "description": "Age in years which must be equal to or greater than zero.", 17 "type": "integer", 18 "minimum": 0 19 } 20 } 21 }