> ## 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/dimensions/parameters/ignore-from-extended",
  "feedback": "Description of the issue"
}
```

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

</AgentInstructions>

# ignore_from_extended

> Controls whether a field should be omitted during explicit extensions of a view.

When `true`, the field is excluded only during explicit extension. Unlike [`ignored`](/modeling/dimensions/parameters/ignored), this parameter affects only explicit extensions. The field still appears in combined modes (e.g., YAML or Git representations).

## Syntax

```yaml theme={null}
<dimension_name>:
  ignore_from_extended: 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="ignore_from_extended" type="boolean" default="false">
      When set to `true`, excludes the field during explicit view extensions. Defaults to `false`.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Exclude from extended views" theme={null}
created_at:
  ignore_from_extended: true
```
