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

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

</AgentInstructions>

# label

> Overrides the field name for all UI appearances.

## Syntax

```yaml theme={null}
<dimension_name>:
  label: <display_label>
```

## 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="label" type="string">
      Unquoted text that will be displayed in the UI instead of the field name.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Custom label" theme={null}
full_user_name:
  label: Full Name
```

```yaml title="Calculated field with label" theme={null}
full_name:
  sql: CONCAT(INITCAP(${users.first_name}), ' ', INITCAP(${users.last_name}))
  label: Full Name
```
