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

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

</AgentInstructions>

# synonyms

> Alternative names and terms for a measure that help the Omni Agent understand user intent.

Alternative names and terms for a measure that help the [Omni Agent](/ai/chat) match user queries to the correct field. When users ask questions using different terminology, synonyms help the AI understand which measure they mean.

Refer to the [Optimizing models for AI](/modeling/develop/ai-optimization) guide for more information on best practices.

## Syntax

```yaml theme={null}
<measure_name>:
  synonyms: [<synonym_1>, <synonym_2>, ...]
```

## Properties

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

  <Expandable title="measure_name properties" defaultOpen="true">
    <ParamField path="synonyms" type="string[]">
      A list of alternative names and terms that refer to this measure. Include common variations, abbreviations, and domain-specific terminology.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Revenue synonyms" theme={null}
total_revenue:
  synonyms: [sales, income, earnings, gross revenue, top line]
```

```yaml title="Customer count synonyms" theme={null}
customer_count:
  synonyms: [number of customers, customer total, client count, user count]
```

```yaml title="Average order value synonyms" theme={null}
avg_order_value:
  synonyms: [AOV, average basket size, average transaction value, mean order value]
```
