diff options
author | Joel Challis <git@zvecr.com> | 2022-11-30 04:27:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-30 04:27:21 +0000 |
commit | c952458c780baf425d3717e29f8004486b5637e8 (patch) | |
tree | 014404bcebf37b05a0da0d4101494b529cb91ece /data/schemas/keyboard.jsonschema | |
parent | 20b901366af8526f8ad2b5d4f688c886eb69d776 (diff) |
DD bootmagic config (#19201)
* DD bootmagic config
* Also enable
* docs
Diffstat (limited to 'data/schemas/keyboard.jsonschema')
-rw-r--r-- | data/schemas/keyboard.jsonschema | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index 91110b06a0..8c0db6ee92 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -131,6 +131,22 @@ } } }, + "bootmagic":{ + "type": "object", + "additionalProperties": false, + "properties": { + "enabled": {"type": "boolean"}, + "matrix": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "type": "integer", + "minimum": 0 + } + } + } + }, "board": { "type": "string", "minLength": 2, @@ -510,6 +526,21 @@ "additionalProperties": false, "properties": { "enabled": {"type": "boolean"}, + "bootmagic":{ + "type": "object", + "additionalProperties": false, + "properties": { + "matrix": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "type": "integer", + "minimum": 0 + } + } + } + }, "matrix_grid": { "type": "array", "items": {"$ref": "qmk.definitions.v1#/mcu_pin"} |