...
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
- the content of the Tab will be rendered as a dashboard, i.e. on the left side list of input fields, and on the right side the portletssimple
- the content of the Tab will show on the left the inputs generated by the logic, and on the right side the results from visible elements NOT as portlets, but rather one after another, as a simple list of values (e.g. similar to quote item calculation results)configurator
- the content of the Tab will be rendered as Configurator form, i.e. as a list of various input fields, whose values typically have dynamic dependenciesfiltertree
- the content of the Tab will be rendered as a Tree (used for example to visualize the Segmentation Tree), and when you select/click one Node, it will show details of the node on the right side, visualized as calculation results (e.g. similar to quote item calculation results)
Dashboard Tab Fields
formulaName* – Unique name of an existing Formula of nature
model_evaluation
, see also Model Evaluation Dashboard Logic .
Simple Tab Fields
formulaName* – Unique name of an existing Formula of nature
model_evaluation
, see also Model Evaluation Dashboard Logic .
Configurator Tab Fields
formulaName* – Unique name of an existing Configurator Formula of nature
model_evaluation
, see also Model Evaluation Configurator Logic and Interactive Forms - Configurators
...
treeName* – Name of the tree to be displayed in the tab. It is used to fetch the tree from the backend.
formulaName* – Unique name of an existing Formula of nature
model_evaluation
to be evaluated when a node of the tree is selected (when the user clicks on the node of the tree), see also Model Evaluation Dashboard Logic.selectedNodeIdsInputName* – Name of the input passed to the evaluation formula, containing the array of selected node ID.
...
name* – Name of the evaluation, unique in the Model Class.
formulaName* – Unique name of an existing Formula of nature
model_evaluation
, see also Model Evaluation Dashboard Logic .
Example
Code Block | ||
---|---|---|
| ||
{ "definition": { "evaluations": [ { "name": "query_results", "formulaName": "POAI_Test_QueryResults" } ] } } |