Add new property to schema files

This commit is contained in:
CeciliaAvila 2024-04-17 15:06:11 -03:00
Родитель c287e507d7
Коммит 375e2292db
2 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -3,5 +3,16 @@
"$role": [ "implements(Microsoft.ITrigger)", "extends(Microsoft.OnCondition)" ],
"title": "On error",
"description": "Action to perform when an 'Error' dialog event occurs.",
"type": "object"
"type": "object",
"properties": {
"executionLimit": {
"$ref": "schema:#/definitions/numberExpression",
"title": "Execution limit",
"description": "Number of executions allowed for this trigger. Used to break loops in case of errors inside the trigger.",
"examples": [
3,
"=f(x)"
]
}
}
}

Просмотреть файл

@ -3,7 +3,8 @@
"form": {
"order": [
"condition",
"*"
"*",
"executionLimit"
],
"hidden": [
"actions"