...
name* – Name of the tab, unique in the step.
label – Human readable name of the tab, shown in the UI, it defaults to
name
if not specified.type* – Accepted values:
dashboard
,configurator
.
Dashboard Tab Fields
formulaName* – Unique name of an existing Formula of nature
model_evaluation
, see also Model Logics.
...
formulaName* – Unique name of an existing Formula of nature
model_evaluation
, see also Model Logics.
Example
Code Block | ||
---|---|---|
| ||
{
"definition": {
"steps": [
{
"name": "step1",
"label": "First Step",
"calculation": "calc1",
"tabs": [
{
"name": "tab1",
"label": "First Tab",
"type": "dashboard",
"formulaName": "POAI_Test_Dashboard1"
},
{
"name": "tab2",
"label": "Second Tab",
"type": "configurator",
"formulaName": "POAI_Test_Configurator"
}
]
},
{
"name": "step2",
"label": "Second Step",
"calculation": "seq1",
"tabs": [
{
"name": "tab1",
"label": "First Tab",
"type": "dashboard",
"formulaName": "POAI_Test_Dashboard2"
}
]
}
]
}
} |
...