For the complete documentation index, see llms.txt. This page is also available as Markdown.

Export & Import Decision Trees

File Structure of JSON format

Imported & Exported files need to have some mandatory structural information:

  • name: name of the decision tree

  • description: description of the decision tree

  • type: type of the decision tree

  • inputSchema: input schema of the decision tree

  • outputSchema: output schema of the decision tree

  • nodes: rules of the decision tree

Minimal File Structure Example:

{
    "name": "",
    "description": "",
    "type": "",
    "status": "",
    "inputSchema": {
    },
    "outputSchema": {
    },
    "nodes": []
}

File Structure Example:

Was this helpful?