+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "NavModelItem"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
draft = true
+++
## NavModelItem interface
Signature
```typescript
export interface NavModelItem
```
Import
```typescript
import { NavModelItem } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [active](#active-property) | boolean
| |
| [breadcrumbs](#breadcrumbs-property) | NavModelBreadcrumb[]
| |
| [children](#children-property) | NavModelItem[]
| |
| [divider](#divider-property) | boolean
| |
| [hideFromMenu](#hidefrommenu-property) | boolean
| |
| [hideFromTabs](#hidefromtabs-property) | boolean
| |
| [icon](#icon-property) | string
| |
| [id](#id-property) | string
| |
| [img](#img-property) | string
| |
| [parentItem](#parentitem-property) | NavModelItem
| |
| [showOrgSwitcher](#showorgswitcher-property) | boolean
| |
| [subTitle](#subtitle-property) | string
| |
| [target](#target-property) | string
| |
| [text](#text-property) | string
| |
| [url](#url-property) | string
| |
### active property
Signature
```typescript
active?: boolean;
```
### breadcrumbs property
Signature
```typescript
breadcrumbs?: NavModelBreadcrumb[];
```
### children property
Signature
```typescript
children?: NavModelItem[];
```
### divider property
Signature
```typescript
divider?: boolean;
```
### hideFromMenu property
Signature
```typescript
hideFromMenu?: boolean;
```
### hideFromTabs property
Signature
```typescript
hideFromTabs?: boolean;
```
### icon property
Signature
```typescript
icon?: string;
```
### id property
Signature
```typescript
id?: string;
```
### img property
Signature
```typescript
img?: string;
```
### parentItem property
Signature
```typescript
parentItem?: NavModelItem;
```
### showOrgSwitcher property
Signature
```typescript
showOrgSwitcher?: boolean;
```
### subTitle property
Signature
```typescript
subTitle?: string;
```
### target property
Signature
```typescript
target?: string;
```
### text property
Signature
```typescript
text: string;
```
### url property
Signature
```typescript
url?: string;
```