clause.md•931 B
# Clause
## Example Usage
```typescript
import { Clause } from "@launchdarkly/mcp-server/models/components";
let value: Clause = {
attribute: "<value>",
op: "<value>",
values: [
"<value 1>",
],
negate: true,
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `id` | *string* | :heavy_minus_sign: | N/A |
| `attribute` | *string* | :heavy_check_mark: | N/A |
| `op` | *string* | :heavy_check_mark: | N/A |
| `values` | *any*[] | :heavy_check_mark: | N/A |
| `contextKind` | *string* | :heavy_minus_sign: | N/A |
| `negate` | *boolean* | :heavy_check_mark: | N/A |