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

# tags

> Apply tags to measures for searchable metadata in workbooks and use tag syntax to curate topic fields and drill field lists.

Tags can be referenced or searched in the workbook's field browser within `fields` or `drill_fields` with the syntax `tag:tag_name`.

## Syntax

```yaml theme={null}
<measure_name>:
  tags: [<tag1>, <tag2>, ...]
```

## Properties

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

  <Expandable title="measure_name properties" defaultOpen="true">
    <ParamField path="tags" type="string[]">
      An unquoted, comma-delimited list of tag names.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml theme={null}
total_profit:
  aggregate: sum
  sql: ${profit}
  tags: [finance, secure]
```
