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

# aliases

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

Creates an alias for a measure, 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="measure_name" type="object[]">
  The name of the measure.

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

## Examples

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