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

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

</AgentInstructions>

# aliases

> Create aliases for renamed dimensions to prevent existing Omni content from breaking when field names change in the data model.

Creates an alias for a dimension, allowing you to ensure Omni content that uses the field doesn't break when the field is renamed.

## Syntax

```yaml theme={null}
<field_name>:
  sql: ${'"FIELD_NAME'}
  aliases: [OLD_FIELD_NAME]
```

## Properties

<ParamField path="dimension_name" type="object[]">
  The name of the dimension.

  <Expandable title="dimension_name properties" defaultOpen="true">
    <ParamField path="aliases" type="array">
      An array of old field names that should map to the dimension.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml theme={null}
order_price:
  sql: ${'"order_price'}
  aliases: [sale_price]
```
