> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# Objects

> Every object and enum the Workspace tools accept.

## Model tree

<div className="model-tree"><div className="model-tree-scroll"><div className="tree-node"><a href="#novariables">NoVariables</a></div><div className="tree-node"><a href="#teamslistvariables">TeamsListVariables</a><div className="tree-children"><div className="tree-node"><a href="#teamfilter">TeamFilter</a><div className="tree-children"><div className="tree-node"><a href="#idcomparator">IdComparator</a></div><div className="tree-node"><a href="#stringcomparator">StringComparator</a></div><div className="tree-node"><a href="#nullablestringcomparator">NullableStringComparator</a></div><div className="tree-node"><a href="#datecomparator">DateComparator</a></div><div className="tree-node"><a href="#teamvisibilitycomparator">TeamVisibilityComparator</a></div><div className="tree-node"><a href="#nullabledatecomparator">NullableDateComparator</a></div><div className="tree-node"><a href="#teamfilter">TeamFilter</a> <span className="tree-note">above</span></div></div></div></div></div><div className="tree-node"><a href="#teamgetvariables">TeamGetVariables</a></div><div className="tree-node"><a href="#userslistvariables">UsersListVariables</a><div className="tree-children"><div className="tree-node"><a href="#userfilter">UserFilter</a><div className="tree-children"><div className="tree-node"><a href="#idcomparator">IdComparator</a></div><div className="tree-node"><a href="#stringcomparator">StringComparator</a></div><div className="tree-node"><a href="#booleancomparator">BooleanComparator</a></div><div className="tree-node"><a href="#datecomparator">DateComparator</a></div><div className="tree-node"><a href="#userfilter">UserFilter</a> <span className="tree-note">above</span></div></div></div></div></div><div className="tree-node"><a href="#usergetvariables">UserGetVariables</a></div><div className="tree-node"><a href="#workflowstateslistvariables">WorkflowStatesListVariables</a><div className="tree-children"><div className="tree-node"><a href="#workflowstatefilter">WorkflowStateFilter</a><div className="tree-children"><div className="tree-node"><a href="#idcomparator">IdComparator</a></div><div className="tree-node"><a href="#stringcomparator">StringComparator</a></div><div className="tree-node"><a href="#nullablestringcomparator">NullableStringComparator</a></div><div className="tree-node"><a href="#numbercomparator">NumberComparator</a></div><div className="tree-node"><a href="#teamfilter">TeamFilter</a> <span className="tree-note">above</span></div><div className="tree-node"><a href="#datecomparator">DateComparator</a></div><div className="tree-node"><a href="#workflowstatefilter">WorkflowStateFilter</a> <span className="tree-note">above</span></div></div></div></div></div><div className="tree-node"><a href="#workflowstategetvariables">WorkflowStateGetVariables</a></div><div className="tree-node"><a href="#workflowstatecreatevariables">WorkflowStateCreateVariables</a><div className="tree-children"><div className="tree-node"><a href="#workflowstatecreateinput">WorkflowStateCreateInput</a></div></div></div><div className="tree-node"><a href="#workflowstateupdatevariables">WorkflowStateUpdateVariables</a><div className="tree-children"><div className="tree-node"><a href="#workflowstateupdateinput">WorkflowStateUpdateInput</a></div></div></div><div className="tree-node"><a href="#workflowstatearchivevariables">WorkflowStateArchiveVariables</a></div><div className="tree-node"><a href="#teammembershipslistvariables">TeamMembershipsListVariables</a></div><div className="tree-node"><a href="#teammembershipgetvariables">TeamMembershipGetVariables</a></div><div className="tree-node"><a href="#teammembershipcreatevariables">TeamMembershipCreateVariables</a><div className="tree-children"><div className="tree-node"><a href="#teammembershipcreateinput">TeamMembershipCreateInput</a></div></div></div><div className="tree-node"><a href="#teammembershipupdatevariables">TeamMembershipUpdateVariables</a><div className="tree-children"><div className="tree-node"><a href="#teammembershipupdateinput">TeamMembershipUpdateInput</a></div></div></div><div className="tree-node"><a href="#teammembershipdeletevariables">TeamMembershipDeleteVariables</a></div></div></div>

## NoVariables

A query that takes no arguments.

This object has no settable fields.

## TeamsListVariables

Variables for the `teams` connection.

<div className="reference-table">
  | Field             | Type                                    | Description                                                                                                                       |
  | ----------------- | --------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
  | `first`           | `integer`                               | How many results to return. Linear returns 50 by default. <span className="field-constraints">≥ 1; ≤ 250; defaults to `50`</span> |
  | `after`           | `string`                                | The `endCursor` from the previous page's `pageInfo`, to fetch the next page.                                                      |
  | `filter`          | [TeamFilter](#teamfilter)               | Narrow the teams returned.                                                                                                        |
  | `includeArchived` | `boolean`                               | Include archived teams in the results.                                                                                            |
  | `orderBy`         | [PaginationOrderBy](#paginationorderby) | Sort by 'createdAt' or 'updatedAt'.                                                                                               |
</div>

## TeamFilter

A filter over teams, or over an issue's `team`.

<div className="reference-table">
  | Field         | Type                                                  | Description                                            |
  | ------------- | ----------------------------------------------------- | ------------------------------------------------------ |
  | `id`          | [IdComparator](#idcomparator)                         | Filter by team UUID.                                   |
  | `name`        | [StringComparator](#stringcomparator)                 | Filter by team name.                                   |
  | `key`         | [StringComparator](#stringcomparator)                 | Filter by team key, e.g. 'ENG'.                        |
  | `description` | [NullableStringComparator](#nullablestringcomparator) | Filter by the team's description.                      |
  | `createdAt`   | [DateComparator](#datecomparator)                     | Filter by when the team was created.                   |
  | `updatedAt`   | [DateComparator](#datecomparator)                     | Filter by when the team was last updated.              |
  | `visibility`  | [TeamVisibilityComparator](#teamvisibilitycomparator) | Comparator for the team visibility.                    |
  | `retiredAt`   | [NullableDateComparator](#nullabledatecomparator)     | Comparator for the time at which the team was retired. |
</div>

## IdComparator

UUID comparators for a Linear filter.

<div className="reference-table">
  | Field | Type        | Description                    |
  | ----- | ----------- | ------------------------------ |
  | `eq`  | `string`    | Equals the given UUID.         |
  | `neq` | `string`    | Does not equal the given UUID. |
  | `in_` | `string`\[] | Is one of the given UUIDs.     |
  | `nin` | `string`\[] | Is not one of the given UUIDs. |
</div>

## StringComparator

String comparators for a Linear filter.

<div className="reference-table">
  | Field                         | Type        | Description                                              |
  | ----------------------------- | ----------- | -------------------------------------------------------- |
  | `eq`                          | `string`    | Equals the given value exactly.                          |
  | `neq`                         | `string`    | Does not equal the given value.                          |
  | `eqIgnoreCase`                | `string`    | Equals the given value, ignoring case.                   |
  | `neqIgnoreCase`               | `string`    | Does not equal the given value, ignoring case.           |
  | `in_`                         | `string`\[] | Is one of the given values.                              |
  | `nin`                         | `string`\[] | Is not one of the given values.                          |
  | `contains`                    | `string`    | Contains the given substring, case-sensitively.          |
  | `containsIgnoreCase`          | `string`    | Contains the given substring, ignoring case.             |
  | `containsIgnoreCaseAndAccent` | `string`    | Contains the given substring, ignoring case and accents. |
  | `notContains`                 | `string`    | Does not contain the given substring.                    |
  | `notContainsIgnoreCase`       | `string`    | Does not contain the given substring, ignoring case.     |
  | `startsWith`                  | `string`    | Starts with the given string.                            |
  | `startsWithIgnoreCase`        | `string`    | Starts with the given string, ignoring case.             |
  | `notStartsWith`               | `string`    | Does not start with the given string.                    |
  | `endsWith`                    | `string`    | Ends with the given string.                              |
  | `notEndsWith`                 | `string`    | Does not end with the given string.                      |
</div>

## NullableStringComparator

A string comparator for a field that may be null.

<div className="reference-table">
  | Field                         | Type        | Description                                                        |
  | ----------------------------- | ----------- | ------------------------------------------------------------------ |
  | `eq`                          | `string`    | Equals the given value exactly.                                    |
  | `neq`                         | `string`    | Does not equal the given value.                                    |
  | `eqIgnoreCase`                | `string`    | Equals the given value, ignoring case.                             |
  | `neqIgnoreCase`               | `string`    | Does not equal the given value, ignoring case.                     |
  | `in_`                         | `string`\[] | Is one of the given values.                                        |
  | `nin`                         | `string`\[] | Is not one of the given values.                                    |
  | `contains`                    | `string`    | Contains the given substring, case-sensitively.                    |
  | `containsIgnoreCase`          | `string`    | Contains the given substring, ignoring case.                       |
  | `containsIgnoreCaseAndAccent` | `string`    | Contains the given substring, ignoring case and accents.           |
  | `notContains`                 | `string`    | Does not contain the given substring.                              |
  | `notContainsIgnoreCase`       | `string`    | Does not contain the given substring, ignoring case.               |
  | `startsWith`                  | `string`    | Starts with the given string.                                      |
  | `startsWithIgnoreCase`        | `string`    | Starts with the given string, ignoring case.                       |
  | `notStartsWith`               | `string`    | Does not start with the given string.                              |
  | `endsWith`                    | `string`    | Ends with the given string.                                        |
  | `notEndsWith`                 | `string`    | Does not end with the given string.                                |
  | `null`                        | `boolean`   | True to match only where the field is null, false where it is set. |
</div>

## DateComparator

Date comparators for a Linear filter.

<div className="reference-table">
  | Field | Type        | Description                     |
  | ----- | ----------- | ------------------------------- |
  | `eq`  | `string`    | Equals the given date.          |
  | `neq` | `string`    | Does not equal the given date.  |
  | `lt`  | `string`    | Is before the given date.       |
  | `lte` | `string`    | Is at or before the given date. |
  | `gt`  | `string`    | Is after the given date.        |
  | `gte` | `string`    | Is at or after the given date.  |
  | `in_` | `string`\[] | Is one of the given dates.      |
  | `nin` | `string`\[] | Is not one of the given dates.  |
</div>

## TeamVisibilityComparator

Comparators for a team's visibility.

<div className="reference-table">
  | Field | Type                                 | Description                           |
  | ----- | ------------------------------------ | ------------------------------------- |
  | `eq`  | [TeamVisibility](#teamvisibility)    | Equals the given visibility.          |
  | `neq` | [TeamVisibility](#teamvisibility)    | Does not equal the given visibility.  |
  | `in_` | [TeamVisibility](#teamvisibility)\[] | Is one of the given visibilities.     |
  | `nin` | [TeamVisibility](#teamvisibility)\[] | Is not one of the given visibilities. |
</div>

## NullableDateComparator

A date comparator for a field that may be null.

<div className="reference-table">
  | Field  | Type        | Description                                                        |
  | ------ | ----------- | ------------------------------------------------------------------ |
  | `eq`   | `string`    | Equals the given date.                                             |
  | `neq`  | `string`    | Does not equal the given date.                                     |
  | `lt`   | `string`    | Is before the given date.                                          |
  | `lte`  | `string`    | Is at or before the given date.                                    |
  | `gt`   | `string`    | Is after the given date.                                           |
  | `gte`  | `string`    | Is at or after the given date.                                     |
  | `in_`  | `string`\[] | Is one of the given dates.                                         |
  | `nin`  | `string`\[] | Is not one of the given dates.                                     |
  | `null` | `boolean`   | True to match only where the field is null, false where it is set. |
</div>

## TeamGetVariables

Variables for the `team` query.

<div className="reference-table">
  | Field                                                      | Type     | Description                                |
  | ---------------------------------------------------------- | -------- | ------------------------------------------ |
  | `id` <span className="required" title="required">\*</span> | `string` | The team's UUID, or its key such as 'ENG'. |
</div>

## UsersListVariables

Variables for the `users` connection.

<div className="reference-table">
  | Field             | Type                                    | Description                                                                                                                       |
  | ----------------- | --------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
  | `first`           | `integer`                               | How many results to return. Linear returns 50 by default. <span className="field-constraints">≥ 1; ≤ 250; defaults to `50`</span> |
  | `after`           | `string`                                | The `endCursor` from the previous page's `pageInfo`, to fetch the next page.                                                      |
  | `filter`          | [UserFilter](#userfilter)               | Narrow the users returned.                                                                                                        |
  | `includeArchived` | `boolean`                               | Include archived users in the results.                                                                                            |
  | `includeDisabled` | `boolean`                               | Include suspended users in the results.                                                                                           |
  | `orderBy`         | [PaginationOrderBy](#paginationorderby) | Sort by 'createdAt' or 'updatedAt'.                                                                                               |
</div>

## UserFilter

A filter over users, or over a user-valued field such as `assignee`.

<div className="reference-table">
  | Field         | Type                                    | Description                                                                                                                      |
  | ------------- | --------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
  | `id`          | [IdComparator](#idcomparator)           | Filter by user UUID.                                                                                                             |
  | `name`        | [StringComparator](#stringcomparator)   | Filter by name.                                                                                                                  |
  | `displayName` | [StringComparator](#stringcomparator)   | Filter by display name.                                                                                                          |
  | `email`       | [StringComparator](#stringcomparator)   | Filter by email address.                                                                                                         |
  | `active`      | [BooleanComparator](#booleancomparator) | Filter by whether the user's account is active.                                                                                  |
  | `admin`       | [BooleanComparator](#booleancomparator) | Filter by whether the user is an admin of the workspace.                                                                         |
  | `isMe`        | [BooleanComparator](#booleancomparator) | Filter by whether the user is the authenticated user. This is how to say 'assigned to me' without resolving your own UUID first. |
  | `createdAt`   | [DateComparator](#datecomparator)       | Filter by when the user was created.                                                                                             |
  | `updatedAt`   | [DateComparator](#datecomparator)       | Filter by when the user was last updated.                                                                                        |
  | `app`         | [BooleanComparator](#booleancomparator) | Comparator for the user's app status.                                                                                            |
  | `owner`       | [BooleanComparator](#booleancomparator) | Comparator for the user's owner status.                                                                                          |
  | `invited`     | [BooleanComparator](#booleancomparator) | Comparator for the user's invited status.                                                                                        |
  | `isInvited`   | [BooleanComparator](#booleancomparator) | Comparator for the user's invited status.                                                                                        |
</div>

## BooleanComparator

Boolean comparators for a Linear filter.

<div className="reference-table">
  | Field | Type      | Description                     |
  | ----- | --------- | ------------------------------- |
  | `eq`  | `boolean` | Equals the given value.         |
  | `neq` | `boolean` | Does not equal the given value. |
</div>

## UserGetVariables

Variables for the `user` query.

<div className="reference-table">
  | Field                                                      | Type     | Description                                          |
  | ---------------------------------------------------------- | -------- | ---------------------------------------------------- |
  | `id` <span className="required" title="required">\*</span> | `string` | The user's UUID, or 'me' for the authenticated user. |
</div>

## WorkflowStatesListVariables

Variables for the `workflowStates` connection.

<div className="reference-table">
  | Field             | Type                                        | Description                                                                                                                       |
  | ----------------- | ------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
  | `first`           | `integer`                                   | How many results to return. Linear returns 50 by default. <span className="field-constraints">≥ 1; ≤ 250; defaults to `50`</span> |
  | `after`           | `string`                                    | The `endCursor` from the previous page's `pageInfo`, to fetch the next page.                                                      |
  | `filter`          | [WorkflowStateFilter](#workflowstatefilter) | Narrow the states returned, usually to one team.                                                                                  |
  | `includeArchived` | `boolean`                                   | Include archived states in the results.                                                                                           |
  | `orderBy`         | [PaginationOrderBy](#paginationorderby)     | Sort by 'createdAt' or 'updatedAt'.                                                                                               |
</div>

## WorkflowStateFilter

A filter over workflow states, or over an issue's `state`.

<div className="reference-table">
  | Field         | Type                                                  | Description                                                                                                    |
  | ------------- | ----------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
  | `id`          | [IdComparator](#idcomparator)                         | Filter by state UUID.                                                                                          |
  | `name`        | [StringComparator](#stringcomparator)                 | Filter by state name, e.g. 'In Progress'.                                                                      |
  | `description` | [NullableStringComparator](#nullablestringcomparator) | Filter by the state's description.                                                                             |
  | `type`        | [StringComparator](#stringcomparator)                 | Filter by state category: 'triage', 'backlog', 'unstarted', 'started', 'completed', 'canceled' or 'duplicate'. |
  | `position`    | [NumberComparator](#numbercomparator)                 | Filter by the state's position in the team's workflow.                                                         |
  | `team`        | [TeamFilter](#teamfilter)                             | Filter by the team the state belongs to.                                                                       |
  | `createdAt`   | [DateComparator](#datecomparator)                     | Filter by when the state was created.                                                                          |
  | `updatedAt`   | [DateComparator](#datecomparator)                     | Filter by when the state was last updated.                                                                     |
</div>

## NumberComparator

Numeric comparators for a Linear filter.

<div className="reference-table">
  | Field | Type        | Description                                  |
  | ----- | ----------- | -------------------------------------------- |
  | `eq`  | `number`    | Equals the given value.                      |
  | `neq` | `number`    | Does not equal the given value.              |
  | `lt`  | `number`    | Is less than the given value.                |
  | `lte` | `number`    | Is less than or equal to the given value.    |
  | `gt`  | `number`    | Is greater than the given value.             |
  | `gte` | `number`    | Is greater than or equal to the given value. |
  | `in_` | `number`\[] | Is one of the given values.                  |
  | `nin` | `number`\[] | Is not one of the given values.              |
</div>

## WorkflowStateGetVariables

Variables for the `workflowState` query.

<div className="reference-table">
  | Field                                                      | Type     | Description       |
  | ---------------------------------------------------------- | -------- | ----------------- |
  | `id` <span className="required" title="required">\*</span> | `string` | The state's UUID. |
</div>

## WorkflowStateCreateVariables

Variables for the `workflowStateCreate` mutation.

<div className="reference-table">
  | Field                                                         | Type                                                  | Description          |
  | ------------------------------------------------------------- | ----------------------------------------------------- | -------------------- |
  | `input` <span className="required" title="required">\*</span> | [WorkflowStateCreateInput](#workflowstatecreateinput) | The state to create. |
</div>

## WorkflowStateCreateInput

The input to `workflowStateCreate`.

<div className="reference-table">
  | Field                                                          | Type     | Description                                                                                                                                                                                                                                |
  | -------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `name` <span className="required" title="required">\*</span>   | `string` | The name of the state.                                                                                                                                                                                                                     |
  | `teamId` <span className="required" title="required">\*</span> | `string` | The team associated with the state.                                                                                                                                                                                                        |
  | `type` <span className="required" title="required">\*</span>   | `string` | The category the state belongs to: 'triage', 'backlog', 'unstarted', 'started', 'completed' or 'canceled'. Linear types this as a string rather than a closed enum, so treat the list as the documented set rather than an exhaustive one. |
  | `color` <span className="required" title="required">\*</span>  | `string` | The color of the state, as a hex string such as '#4ea7fc'.                                                                                                                                                                                 |
  | `description`                                                  | `string` | The description of the state.                                                                                                                                                                                                              |
  | `position`                                                     | `number` | The position of the state in the team's workflow.                                                                                                                                                                                          |
  | `id`                                                           | `string` | The identifier in UUID v4 format. If none is provided, the backend will generate one.                                                                                                                                                      |
</div>

## WorkflowStateUpdateVariables

Variables for the `workflowStateUpdate` mutation.

<div className="reference-table">
  | Field                                                         | Type                                                  | Description           |
  | ------------------------------------------------------------- | ----------------------------------------------------- | --------------------- |
  | `id` <span className="required" title="required">\*</span>    | `string`                                              | The state's UUID.     |
  | `input` <span className="required" title="required">\*</span> | [WorkflowStateUpdateInput](#workflowstateupdateinput) | The fields to change. |
</div>

## WorkflowStateUpdateInput

The fields `workflowStateUpdate` changes. All optional.

<div className="reference-table">
  | Field         | Type     | Description                                                |
  | ------------- | -------- | ---------------------------------------------------------- |
  | `name`        | `string` | The name of the state.                                     |
  | `color`       | `string` | The color of the state, as a hex string such as '#4ea7fc'. |
  | `description` | `string` | The description of the state.                              |
  | `position`    | `number` | The position of the state in the team's workflow.          |
</div>

## WorkflowStateArchiveVariables

Variables for the `workflowStateArchive` mutation.

<div className="reference-table">
  | Field                                                      | Type     | Description       |
  | ---------------------------------------------------------- | -------- | ----------------- |
  | `id` <span className="required" title="required">\*</span> | `string` | The state's UUID. |
</div>

## TeamMembershipsListVariables

Variables for the `teamMemberships` connection.

<div className="reference-table">
  | Field             | Type                                    | Description                                                                                                                       |
  | ----------------- | --------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
  | `first`           | `integer`                               | How many results to return. Linear returns 50 by default. <span className="field-constraints">≥ 1; ≤ 250; defaults to `50`</span> |
  | `after`           | `string`                                | The `endCursor` from the previous page's `pageInfo`, to fetch the next page.                                                      |
  | `includeArchived` | `boolean`                               | Include archived memberships in the results.                                                                                      |
  | `orderBy`         | [PaginationOrderBy](#paginationorderby) | Sort by 'createdAt' or 'updatedAt'.                                                                                               |
</div>

## TeamMembershipGetVariables

Variables for the `teamMembership` query.

<div className="reference-table">
  | Field                                                      | Type     | Description            |
  | ---------------------------------------------------------- | -------- | ---------------------- |
  | `id` <span className="required" title="required">\*</span> | `string` | The membership's UUID. |
</div>

## TeamMembershipCreateVariables

Variables for the `teamMembershipCreate` mutation.

<div className="reference-table">
  | Field                                                         | Type                                                    | Description               |
  | ------------------------------------------------------------- | ------------------------------------------------------- | ------------------------- |
  | `input` <span className="required" title="required">\*</span> | [TeamMembershipCreateInput](#teammembershipcreateinput) | The membership to create. |
</div>

## TeamMembershipCreateInput

The input to `teamMembershipCreate`.

<div className="reference-table">
  | Field                                                          | Type      | Description                                                                           |
  | -------------------------------------------------------------- | --------- | ------------------------------------------------------------------------------------- |
  | `teamId` <span className="required" title="required">\*</span> | `string`  | The identifier of the team associated with the membership.                            |
  | `userId` <span className="required" title="required">\*</span> | `string`  | The identifier of the user associated with the membership.                            |
  | `owner`                                                        | `boolean` | Whether the user is the owner of the team.                                            |
  | `sortOrder`                                                    | `number`  | The position of the item in the users list.                                           |
  | `id`                                                           | `string`  | The identifier in UUID v4 format. If none is provided, the backend will generate one. |
</div>

## TeamMembershipUpdateVariables

Variables for the `teamMembershipUpdate` mutation.

<div className="reference-table">
  | Field                                                         | Type                                                    | Description            |
  | ------------------------------------------------------------- | ------------------------------------------------------- | ---------------------- |
  | `id` <span className="required" title="required">\*</span>    | `string`                                                | The membership's UUID. |
  | `input` <span className="required" title="required">\*</span> | [TeamMembershipUpdateInput](#teammembershipupdateinput) | The fields to change.  |
</div>

## TeamMembershipUpdateInput

The fields `teamMembershipUpdate` changes. All optional.

<div className="reference-table">
  | Field       | Type      | Description                                 |
  | ----------- | --------- | ------------------------------------------- |
  | `owner`     | `boolean` | Whether the user is the owner of the team.  |
  | `sortOrder` | `number`  | The position of the item in the users list. |
</div>

## TeamMembershipDeleteVariables

Variables for the `teamMembershipDelete` mutation.

<div className="reference-table">
  | Field                                                      | Type     | Description            |
  | ---------------------------------------------------------- | -------- | ---------------------- |
  | `id` <span className="required" title="required">\*</span> | `string` | The membership's UUID. |
</div>

## PaginationOrderBy

<div className="enum-table">
  | Value       |
  | ----------- |
  | `createdAt` |
  | `updatedAt` |
</div>

## TeamVisibility

<div className="enum-table">
  | Value        |
  | ------------ |
  | `public`     |
  | `private`    |
  | `restricted` |
</div>
