Export & Import Rule Flows
File Structure of JSON format
Imported & Exported files need to have some mandatory structural information:
name: name of the decision table
description: description of the decision table
type: type of the decision table
status: status of the decision table
inputSchema: input schema of the decision table
outputSchema: output schema of the decision table
decisionTable: rules of the decision table
Type: there are two types:
"decision-table" - for decision tables
"complex-rule" - for scripting rules
Minimal File Structure Example:
{
"name": "",
"description": "",
"type": "",
"status": "",
"inputSchema": {
},
"outputSchema": {
},
"decisionTable": {
"columns": [
],
"rows": [
]
}
}File Structure Example:
Last updated