serialize_current_mindmap_to_json
Convert the active mindmap into a structured JSON object with ID mapping, customizable detail levels, and options to ignore RTF content or enable text-only mode.
Instructions
Serializes the currently loaded mindmap to a detailed JSON object with ID mapping.
Args:
ignore_rtf (bool): Whether to ignore RTF content. Defaults to True.
mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'.
turbo_mode (bool): Enable turbo mode (text only). Defaults to False.
Returns:
Union[Dict[str, Any], Dict[str, str]]: JSON serializable dictionary or error dictionary.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ignore_rtf | No | ||
mode | No | content | |
turbo_mode | No |
Input Schema (JSON Schema)
{
"properties": {
"ignore_rtf": {
"default": true,
"title": "Ignore Rtf",
"type": "boolean"
},
"mode": {
"default": "content",
"title": "Mode",
"type": "string"
},
"turbo_mode": {
"default": true,
"title": "Turbo Mode",
"type": "boolean"
}
},
"title": "serialize_current_mindmap_to_jsonArguments",
"type": "object"
}