{ "jsonSchema": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Tor collector configuration.", "type": "object", "properties": { "update_every": { "title": "Update every", "description": "Data collection interval, measured in seconds.", "type": "integer", "minimum": 1, "default": 1 }, "address": { "title": "Address", "description": "The IP address and port where the Tor's Control Port listens for connections.", "type": "string", "default": "127.0.0.1:9051" }, "timeout": { "title": "Timeout", "description": "Timeout for establishing a connection and communication (reading and writing) in seconds.", "type": "number", "minimum": 0.5, "default": 1 }, "password": { "title": "Password", "description": "The password for authentication.", "type": "string", "sensitive": true } }, "required": [ "address" ], "additionalProperties": false, "patternProperties": { "^name$": {} } }, "uiSchema": { "uiOptions": { "fullPage": true }, "timeout": { "ui:help": "Accepts decimals for precise control (e.g., type 1.5 for 1.5 seconds)." }, "password": { "ui:widget": "password" } } }