loosen up the schema to allow any pin format

master
Zach White 2021-01-06 10:33:30 -08:00 committed by Zach White
parent b44532aa3d
commit ed19198c78
1 changed files with 3 additions and 6 deletions

View File

@ -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"
}
}
}