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

> Soft-deletes a view in the model.

This effectively removes the view from the model, which can be useful for hiding undesirable schema tables. When using this parameter, note that:

* When applied, references to the view will break, resulting in model validation errors
* Views are not removed from the schema and will still be accessible via SQL
* Any topics using this view as their `base_view` will be automatically hidden in workbooks and excluded from model validation

To instead hide a view from the workbook UI, use the [`hidden`](/modeling/views/parameters/hidden) parameter.

<Note>
  Topics with missing or non-existent base views will still surface validation errors.
</Note>

## Syntax

```yaml theme={null}
ignored: true
```

## Properties

<ParamField path="ignored" type="boolean" default="false">
  If `true`, the view will be ignored.
</ParamField>

## Examples

```yaml title="Ignore a view" theme={null}
ignored: true
```
