diff options
author | Ryan <fauxpark@gmail.com> | 2022-09-19 07:57:50 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-18 22:57:50 +0100 |
commit | 8beb61b790d215a365298d3aa865ebf1ebf78d8c (patch) | |
tree | 538267c5d1f7f1698aa7be5efe49ff91bc161367 /data/schemas | |
parent | 1849897444629403fc2e473da6d6f74f8f4f1b8c (diff) |
Add DD mapping for LED/RGB Matrix split count (#18408)
Diffstat (limited to 'data/schemas')
-rw-r--r-- | data/schemas/keyboard.jsonschema | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index bf095aadfd..e82dacaac4 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -266,6 +266,12 @@ "properties": { "driver": {"type": "string"}, "max_brightness": {"$ref": "qmk.definitions.v1#/unsigned_int_8"}, + "split_count": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": {"$ref": "qmk.definitions.v1#/unsigned_int"} + }, "layout": { "type": "array", "items": { @@ -294,6 +300,12 @@ "properties": { "driver": {"type": "string"}, "max_brightness": {"$ref": "qmk.definitions.v1#/unsigned_int_8"}, + "split_count": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": {"$ref": "qmk.definitions.v1#/unsigned_int"} + }, "layout": { "type": "array", "items": { |