aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorZach White <skullydazed@gmail.com>2021-01-06 10:33:30 -0800
committerZach White <skullydazed@drpepper.org>2021-01-07 21:21:12 -0800
commited19198c7891735a5ba3f118f25c608f968f746f (patch)
tree9ec5cb346f3c8d830e019e084c163d0e170b40d7 /data
parentb44532aa3dbdce702d662e5b1cf043e461846d8b (diff)
downloadqmk_firmware-ed19198c7891735a5ba3f118f25c608f968f746f.tar.gz
qmk_firmware-ed19198c7891735a5ba3f118f25c608f968f746f.zip
loosen up the schema to allow any pin format
Diffstat (limited to 'data')
-rw-r--r--data/schemas/keyboard.jsonschema9
1 files changed, 3 insertions, 6 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema
index 9355ee49b..f250ffd8a 100644
--- a/data/schemas/keyboard.jsonschema
+++ b/data/schemas/keyboard.jsonschema
@@ -163,8 +163,7 @@
163 "items": { 163 "items": {
164 "oneOf": [ 164 "oneOf": [
165 { 165 {
166 "type": "string", 166 "type": "string"
167 "pattern": "^[A-K]\\d{1,2}$"
168 }, 167 },
169 { 168 {
170 "type": "null" 169 "type": "null"
@@ -176,15 +175,13 @@
176 "cols": { 175 "cols": {
177 "type": "array", 176 "type": "array",
178 "items": { 177 "items": {
179 "type": "string", 178 "type": "string"
180 "pattern": "^[A-K]\\d{1,2}$"
181 } 179 }
182 }, 180 },
183 "rows": { 181 "rows": {
184 "type": "array", 182 "type": "array",
185 "items": { 183 "items": {
186 "type": "string", 184 "type": "string"
187 "pattern": "^[A-K]\\d{1,2}$"
188 } 185 }
189 } 186 }
190 } 187 }