> ## 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.

# description

> Free text that describes the query view.

Free text that describes the query view. For example, you could add copy that describes what questions the query view can answer.

## 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 query 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: All transactions related to orders from the online store.
```

```yaml title="Multi-line description" theme={null}
description: |
  Transactions from: California, Washington, and Oregon
```
