update schema to include variables in script
This commit is contained in:
parent
91072cc4e6
commit
2c406cf6eb
@ -43,6 +43,7 @@
|
||||
"required": [
|
||||
"type"
|
||||
],
|
||||
"additionalProperties": false
|
||||
"properties": {
|
||||
"type": {
|
||||
"enum": [
|
||||
@ -53,7 +54,23 @@
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"additionalProperties": false
|
||||
"vars": {
|
||||
"type": "object",
|
||||
"title": "your collection of variables to be available to cuddle",
|
||||
"patternProperties": {
|
||||
"^.*$": {
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "object"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user