# <a id="bitdrift.public.unary.issues.v1.FeatureFlagFilter"></a>FeatureFlagFilter

**Source definition:** [`src/bitdrift/public/unary/issues/v1/issues.proto#L82-L94`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/unary/issues/v1/issues.proto#L82-L94>)

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| name | <span class="proto-type proto-type-primitive">string</span><br><em class="proto-field-annotation">between 1 and 100 chars</em> |  |
| variant | <span class="proto-type proto-type-primitive">optional string</span><br><em class="proto-field-annotation">up to 100 chars</em> | The variant of the feature flag to filter by. If not specified, all variants are included. |
| exclusive | <span class="proto-type proto-type-primitive">bool</span> | Only include issues that are exclusively associated with this feature flag (and variant, if specified). This implies that  this feature flag was always active when the issue occurred. |

</section>
<p class="h4">Example</p>
```json
{
  "exclusive": false,
  "name": "checkout_v2",
  "variant": "enabled"
}
```

