{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/methods/category.list.schema.json", "title": "category.list", "description": "Every category with its folder and extension list. The extension calls this to populate its default-category picker, which is why it is not privileged; it is read-only and exposes only paths the user already configured.", "x-privileged": false, "x-transports": [ "uds", "ws" ], "x-deadlineMs": 2000, "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/Category.schema.json" } } } } } }