Skip to content

script

Description

Exécution de script.

Schéma

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "description": "This json schema gives prototype of action script",
    "title": "Action script",
    "type": "object",
    "properties": {
        "action": {
            "const": "script",
            "description": "Name of the action",
            "type": "string"
        },
        "params": {
            "description": "Parameters of current action",
            "type": "object",
            "properties": {
                "name": {
                    "description": "Name of script to execute",
                    "type": "string"
                },
                "parameters": {
                    "description": "Script parameters",
                    "type": "object",
                    "properties": {}
                }
            },
            "required": [
                "name"
            ]
        }
    },
    "required": [
        "action",
        "params"
    ],
    "$id": "https://ewt.epilogic.ch/action.script.schema.json"
}