{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "token": { "type": "string" }, "prefix": { "type": "string" }, "mariadb": { "type": "object", "properties": { "host": { "type": "string" }, "user": { "type": "string" }, "password": { "type": "string" }, "database": { "type": "string" } }, "required": [ "host", "user", "password", "database" ] } }, "required": [ "token", "prefix", "mariadb" ] }