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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.omni.co/feedback

```json
{
  "path": "/modeling/views/parameters/description",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# description

> Free text that describes the view.

Descriptions are visible in the workbook, specifically in the **All views and fields** panel in the workbook.

For example, you could add copy that describes the type of analyses users can create using the view.

## Syntax

```yaml theme={null}
# Single line description
description: <description_text>

# Multi-line description
description: |
  <multiline_description_text>
```

## Properties

<ParamField path="description" type="string">
  Free text that describes the view. For multiline descriptions or descriptions containing special characters like colons, use the pipe (`|`) syntax. Values should be unquoted.
</ParamField>

## Examples

```yaml title="Single line description" theme={null}
description: Transactions from our online store.
```

```yaml title="Multi-line description" theme={null}
description: |
  Transactions from all online subsidiaries.
```
