loosen up the schema to allow any pin format

This commit is contained in:
Zach White 2021-01-06 10:33:30 -08:00
parent 68da9cd196
commit e41762be64

View file

@ -163,8 +163,7 @@
"items": { "items": {
"oneOf": [ "oneOf": [
{ {
"type": "string", "type": "string"
"pattern": "^[A-K]\\d{1,2}$"
}, },
{ {
"type": "null" "type": "null"
@ -176,15 +175,13 @@
"cols": { "cols": {
"type": "array", "type": "array",
"items": { "items": {
"type": "string", "type": "string"
"pattern": "^[A-K]\\d{1,2}$"
} }
}, },
"rows": { "rows": {
"type": "array", "type": "array",
"items": { "items": {
"type": "string", "type": "string"
"pattern": "^[A-K]\\d{1,2}$"
} }
} }
} }