loosen up the schema to allow any pin format
This commit is contained in:
parent
b44532aa3d
commit
ed19198c78
1 changed files with 3 additions and 6 deletions
|
@ -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}$"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue