require id properties to be at least a one character

This commit is contained in:
Joel Wetzell
2026-02-13 21:46:46 -06:00
parent 87e6b09156
commit 11e25ab8f7
2 changed files with 38 additions and 19 deletions

View File

@@ -8,13 +8,15 @@
"type": "object",
"properties": {
"input": {
"type": "string"
"type": "string",
"minLength": 1
},
"processors": {
"$ref": "https://showbridge.io/processors.schema.json"
},
"output": {
"type": "string"
"type": "string",
"minLength": 1
}
},
"required": ["input", "output"]