---
title: "Organization"
description: "The `Organization` entity."
section: "Reference"
group: "Types"
order: 160
---

## Definition

```ts
interface Organization {
  id: string;
  name: string;
  handle: string;
  ownerId: string;
  createdAt: string;
  updatedAt: string;
}
```

## Fields

| Field       | Type     | Notes                                                                |
| ----------- | -------- | -------------------------------------------------------------------- |
| `id`        | `string` | `readonly` `required`                                                |
| `name`      | `string` | `required` — Globally unique organization name.                      |
| `handle`    | `string` | `required` — Globally unique organization handle.                    |
| `ownerId`   | `string` | `required` — User who owns the organization.                         |
| `createdAt` | `string` | `readonly` `required` — ISO-8601 timestamp of creation.              |
| `updatedAt` | `string` | `readonly` `required` — ISO-8601 timestamp of the last modification. |
