summaryrefslogtreecommitdiff
path: root/ext/bg/data
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bg/data')
-rw-r--r--ext/bg/data/options-schema.json30
1 files changed, 29 insertions, 1 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json
index e9677e95..9cc8837d 100644
--- a/ext/bg/data/options-schema.json
+++ b/ext/bg/data/options-schema.json
@@ -362,7 +362,8 @@
"required": [
"include",
"exclude",
- "types"
+ "types",
+ "options"
],
"properties": {
"include": {
@@ -394,6 +395,33 @@
"default": true
}
}
+ },
+ "options": {
+ "type": "object",
+ "required": [
+ "showAdvanced",
+ "scanOnPenHover",
+ "scanOnPenPress",
+ "scanOnPenRelease"
+ ],
+ "properties": {
+ "showAdvanced": {
+ "type": "boolean",
+ "default": false
+ },
+ "scanOnPenHover": {
+ "type": "boolean",
+ "default": true
+ },
+ "scanOnPenPress": {
+ "type": "boolean",
+ "default": true
+ },
+ "scanOnPenRelease": {
+ "type": "boolean",
+ "default": false
+ }
+ }
}
}
}