JSON

Export your mind map data as JSON

Example 1

Example Mind Map

Details about a vehicle

JSON Export

{
  "text": "Vehicle Details",
  "links": [],
  "children": [
    {
      "text": "Milage",
      "links": [],
      "children": [
        {
          "text": "37,201",
          "links": [],
          "children": []
        }
      ]
    },
    {
      "text": "Year",
      "links": [],
      "children": [
        {
          "text": "2015",
          "links": [],
          "children": []
        }
      ]
    },
    {
      "text": "Model",
      "links": [],
      "children": [
        {
          "text": "Vauxhall Corsa SE",
          "links": [],
          "children": []
        }
      ]
    },
    {
      "text": "Colour",
      "links": [],
      "children": [
        {
          "text": "Black",
          "links": [],
          "children": []
        }
      ]
    }
  ]
}

Example 2

Example Mind Map

Vauxhall Corsa Node has a link attached
{
  "text": "Vehicle Details",
  "links": [],
  "children": [
    {
      "text": "Model",
      "links": [],
      "children": [
        {
          "text": "Vauxhall Corsa SE",
          "links": [
            "https://en.wikipedia.org/?title=Vauxhall_Corsa&redirect=no"
          ],
          "children": []
        }
      ]
    }
  ]
}

Last updated