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

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

</AgentInstructions>

# ignored

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

<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}
<measure_name>:
  ignored: true
```

## Properties

<ParamField path="measure_name" type="object[]">
  The name of the measure.

  <Expandable title="measure_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 theme={null}
total_users:
  ignored: true
```
