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

# topic_group_descriptions

> Defines descriptions for topic groups.

Topic group descriptions - identified by [`group_label`](/modeling/topics/parameters/group-label) on topics - are displayed in the topic selector to help users understand the purpose of each topic group.

## Syntax

```yaml theme={null}
topic_group_descriptions:
  <group_label>: <description>
```

## Properties

<ParamField path="group_label" type="string" required>
  The name of the topic group. This must match the [`group_label`](/modeling/topics/parameters/group-label) value defined on one or more topics.
</ParamField>

<ParamField path="description" type="string" required>
  A description of the topic group that will be displayed in the topic selector.
</ParamField>

## Examples

```yaml theme={null}
topic_group_descriptions:
  Sales: Topics related to sales data
  Marketing: Topics for marketing analytics
```
