diff options
author | Joel Challis <git@zvecr.com> | 2022-02-15 04:41:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 15:41:16 +1100 |
commit | fede569bbe66e2fa0b16cc3ac7b7e6b66daf9f86 (patch) | |
tree | 566fa9c4186eeb057f62bd44b3fbd92ada56c747 /data/schemas | |
parent | b0621223bc53f634a28243b874379e8e157878fd (diff) | |
download | qmk_firmware-fede569bbe66e2fa0b16cc3ac7b7e6b66daf9f86.tar.gz qmk_firmware-fede569bbe66e2fa0b16cc3ac7b7e6b66daf9f86.zip |
Allow NO_PIN within info.json (#16359)
Diffstat (limited to 'data/schemas')
-rw-r--r-- | data/schemas/definitions.jsonschema | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/data/schemas/definitions.jsonschema b/data/schemas/definitions.jsonschema index 3f92e289a7..9fd503a108 100644 --- a/data/schemas/definitions.jsonschema +++ b/data/schemas/definitions.jsonschema @@ -53,6 +53,10 @@ "oneOf": [ { "type": "string", + "enum": ["NO_PIN"] + }, + { + "type": "string", "pattern": "^[A-K]\\d{1,2}$" }, { |