diff options
Diffstat (limited to 'ext/bg/data/options-schema.json')
-rw-r--r-- | ext/bg/data/options-schema.json | 30 |
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 + } + } } } } |