feat: more work on form decorators

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2024-10-28 16:22:34 +01:00
parent 8d732a8d75
commit 7e3ca8be71
13 changed files with 109 additions and 68 deletions
@@ -174,16 +174,19 @@
}
},
"EXPERIMENTAL_formDecorators": {
"type": "object",
"type": "array",
"description": "A list of decorators and their inputs that the form should trigger before submitting the job",
"properties": {
"id": {
"type": "string",
"description": "The form hook ID"
},
"input": {
"type": "object",
"description": "A object describing the inputs to the form hook."
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The form hook ID"
},
"input": {
"type": "object",
"description": "A object describing the inputs to the form hook."
}
}
}
},