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

> Organizes topics by category.

Tags enable you to group and filter topics by category, making it easier to organize your semantic model. They can be used to organize topics by domain, audience, data sensitivity, or any other categorization scheme that fits your organization's needs.

## Syntax

```yaml theme={null}
tags: [<tag>, ...]
```

## Properties

<ParamField path="tags" type="string[]">
  A comma-delimited list of strings used to organize and group topics.
</ParamField>

## Examples

```yaml title="Categorizing by audience and domain" theme={null}
topics:
  orders:
    base_view: orders
    tags: [customer_facing, revenue]
```

```yaml title="Multiple categorization dimensions" theme={null}
topics:
  employee_data:
    base_view: employees
    tags: [internal, hr, sensitive]
```

```yaml title="Single tag" theme={null}
topics:
  marketing_campaigns:
    base_view: campaigns
    tags: [marketing]
```
