aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorZach White2021-01-06 19:33:30 +0100
committerZach White2021-01-08 06:21:12 +0100
commited19198c7891735a5ba3f118f25c608f968f746f (patch)
tree9ec5cb346f3c8d830e019e084c163d0e170b40d7 /data
parentb44532aa3dbdce702d662e5b1cf043e461846d8b (diff)
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 9355ee49bd..f250ffd8a9 100644
--- a/data/schemas/keyboard.jsonschema
+++ b/data/schemas/keyboard.jsonschema
@@ -163,8 +163,7 @@
"items": {
"oneOf": [
{
- "type": "string",
- "pattern": "^[A-K]\\d{1,2}$"
+ "type": "string"
},
{
"type": "null"
@@ -176,15 +175,13 @@
"cols": {
"type": "array",
"items": {
- "type": "string",
- "pattern": "^[A-K]\\d{1,2}$"
+ "type": "string"
}
},
"rows": {
"type": "array",
"items": {
- "type": "string",
- "pattern": "^[A-K]\\d{1,2}$"
+ "type": "string"
}
}
}