{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/methods/rules.list.schema.json", "title": "rules.list", "description": "The rules engine's table, in priority order. Privileged: these are the daemon's routing policy. The extension gets its own narrowed view through capture.getRules instead.", "x-privileged": true, "x-transports": [ "uds" ], "x-deadlineMs": 2000, "x-errors": [ -32003 ], "type": "object", "properties": { "params": { "type": "object", "additionalProperties": false, "properties": {} }, "result": { "type": "object", "additionalProperties": false, "required": [ "items" ], "properties": { "items": { "type": "array", "items": { "$ref": "https://velox.dev/schema/types/Rule.schema.json" } } } } } }