> ## Documentation Index
> Fetch the complete documentation index at: https://docs.enterspeed.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 3. Going further

# Going further: Hamburger navigation

If you have a more than one level of items, the schema will cover that as well. E.g. if you need to create a hamburger navigation with deeper levels:

<img src="https://mintcdn.com/enterspeed/U-p4hKh6hit1rd09/images/docs/examples/multilevel-navigation/cms-structure-multiple.png?fit=max&auto=format&n=U-p4hKh6hit1rd09&q=85&s=0ae7c3fb79b01f03df8019c29c38f7b7" alt="Create source Enterspeed" width="248" height="297" data-path="images/docs/examples/multilevel-navigation/cms-structure-multiple.png" />

The schema will automatically include that in the output:

```json theme={null}
{
  "meta": {
    "status": 200,
    "redirect": null,
    "missingViewReferences": []
  },
  "views": {
    "mainNavigation": {
      "children": [
        {
          "title": "Home",
          "children": []
        },
        {
          "title": "Books",
          "children": [
            {
              "title": "Book 1",
              "children": [
                {
                  "title": "Page 1",
                  "children": [
                    {
                      "title": "Paragraph 1",
                      "children": []
                    },
                    {
                      "title": "Paragraph 2",
                      "children": []
                    }
                  ]
                }
              ]
            },
            {
              "title": "Book 2",
              "children": []
            }
          ]
        }
      ]
    }
  }
}
```
