{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/methods/settings.get.schema.json", "title": "settings.get", "description": "Read settings. keys null means everything. Privileged: the settings bag names local filesystem paths and the allowed write roots, which the extension has no business enumerating \u2014 it gets capture.getRules instead.", "x-privileged": true, "x-transports": [ "uds" ], "x-deadlineMs": 2000, "x-errors": [ -32003 ], "type": "object", "properties": { "params": { "type": "object", "additionalProperties": false, "properties": { "keys": { "type": [ "array", "null" ], "items": { "$ref": "https://velox.dev/schema/types/SettingKey.schema.json" } } } }, "result": { "type": "object", "additionalProperties": false, "required": [ "values" ], "properties": { "values": { "$ref": "https://velox.dev/schema/types/Settings.schema.json" } } } } }