# Import / Export

Only import/export an array of VSMs without the steps array. These VSM objects should be easily writable by hand.

Example:

{
  "type": "b+tree",
  "vizStateMutations": [
      {
        "type": "create",
        "size": 10,
        "steps": []
      },
      {
        "type": "insert",
        "value": 4,
        "steps": []
      }
  ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15