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

# ignored

> Removes a field from the UI and prevents references to it.

<Note>
  Ignored fields will still be accessible through SQL.
</Note>

This parameter can be used to 'remove' fields from the raw database schema.

## Syntax

```yaml theme={null}
<dimension_name>:
  ignored: true
```

## Properties

<ParamField path="dimension_name" type="object">
  The name of the dimension. Dimension names must:

  * Be unique within the view
  * Start with a letter
  * Contain only alphanumeric characters and underscores

  <Expandable title="dimension_name properties" defaultOpen="true">
    <ParamField path="ignored" type="boolean" default="false">
      When set to `true`, removes the field from the UI and prevents references. Defaults to `false`.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Ignore Fivetran metadata field" theme={null}
_fivetran_deleted:
  sql: '"_FIVETRAN_DELETED"'
  ignored: true
```
