> ## 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/hidden",
  "feedback": "Description of the issue"
}
```

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

</AgentInstructions>

# hidden

> Removes a view from the workbook UI while keeping it referenceable in the model.

**Note**: Views are not removed from the model itself and will still be accessible via SQL. To "soft delete" a view instead, use the [`ignored`](/modeling/views/parameters/ignored) parameter.

## Syntax

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

## Properties

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

## Examples

```yaml title="Hide view in UI" theme={null}
hidden: true
```
