Skip to content

dummy

Description

Action dummy. Cette action ne fait aucun traitement hormis la sauvegarde des données de la page (action qu'elle hérite de save)

Schéma

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "description": "This json schema gives prototype of action dummy",
    "title": "Action dummy",
    "type": "object",
    "properties": {
        "action": {
            "const": "dummy",
            "description": "Name of the action",
            "type": "string"
        }
    },
    "required": [
        "action"
    ],
    "$id": "https://ewt.epilogic.ch/action.dummy.schema.json"
}