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

# is

> Filters for exact equality.

Filters for exact equality. This operator applies to all filter types (time, numeric, and string fields) and matches rows where the field value exactly equals the specified value.

<Tip>
  Use [`not`](/modeling/filters/operators/not) to create a negative filter.
</Tip>

## Syntax

```yaml theme={null}
<field_name>:
  is: <value>
```

## Properties

<ParamField path="field_name" type="string" required>
  The field to filter on, specified in the format `view_name.field_name`. Can be a time, numeric, or string field.
</ParamField>

<ParamField path="is" type="string | number | date" required>
  The exact value to match. Type should correspond to the field type (string, number, or date).
</ParamField>

## Examples

```yaml title="Match active users" theme={null}
users.status:
  is: active
```

```yaml title="Match products with a price of 77.00" theme={null}
products.price:
  is: 77.00
```

```yaml title="Match users created on January 1, 2024" theme={null}
users.created_at:
  is: 2024-01-01
```
