From e41762be64c170f42ab3f8aa6b7e3078e5895e92 Mon Sep 17 00:00:00 2001 From: Zach White Date: Wed, 6 Jan 2021 10:33:30 -0800 Subject: [PATCH] loosen up the schema to allow any pin format --- data/schemas/keyboard.jsonschema | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index 9355ee49bd3..f250ffd8a9a 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" } } }