# Linklist
## Overview
A linklist represents a "menu in a store" that can be configured through the store's administration panel. For implementation guidance, see the theme navigation documentation.
## Properties
| Property | Type | Description |
|----------|------|-------------|
| `handle` | string | The unique identifier for the menu |
| `levels` | number | Depth of nested items (maximum of 3 levels) |
| `links` | array of link objects | The menu items contained within |
| `title` | string | Display name for the menu |
## Example
```json
{
"handle": "main-menu",
"levels": 2,
"links": [],
"title": "Main menu"
}
```
## Key Notes
- Menus support hierarchical organization with a maximum of 3 nesting levels
- The `links` property contains an array of link objects representing individual menu items
- The `handle` serves as the programmatic identifier for referencing the menu in code