summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-01-09 09:23:02 +0000
committerGitHub <noreply@github.com>2023-01-09 09:23:02 +0000
commita3ed1b0c8d51b0a11eb358d06041d4edb1dba6be (patch)
treed9f27953597f7691cdecdfd9b341c2d90078ba86 /data
parent1b045b1e60c2c10178828b20036a3590784bbbfc (diff)
Relax converter within keymap schema (#19544)
Diffstat (limited to 'data')
-rw-r--r--data/schemas/keymap.jsonschema3
1 files changed, 2 insertions, 1 deletions
diff --git a/data/schemas/keymap.jsonschema b/data/schemas/keymap.jsonschema
index 1b8d01bcc6..2fcd5f8a51 100644
--- a/data/schemas/keymap.jsonschema
+++ b/data/schemas/keymap.jsonschema
@@ -7,7 +7,8 @@
"author": {"type": "string"},
"converter": {
"type": "string",
- "enum": ["elite_pi", "proton_c", "kb2040", "promicro_rp2040", "blok", "bit_c_pro", "stemcell", "bonsai_c4"]
+ "minLength": 1,
+ "pattern": "^[a-z][0-9a-z_]*$"
},
"host_language": {"$ref": "qmk.definitions.v1#/text_identifier"},
"keyboard": {"$ref": "qmk.definitions.v1#/text_identifier"},