# Project

An account-scoped grouping of environments.

**Attributes** (`ProjectDto`)

- `id` · `string` · read-only
- `accountId` · `string` · read-only
- `name` · `string` · required — The project’s IDENTITY: an immutable, account-unique, url-safe word (namespaces this project’s environments in the cloud).
- `serviceCount` · `integer` · read-only — Total active services across all of the project’s environments (shown on the project card).
- `createdAt` · `string <date-time>` · read-only
- `updatedAt` · `string <date-time>` · read-only

**Example `ProjectDto`**

```json
{
  "id": "proj_01example0000000000000000x",
  "accountId": "acct_01example0000000000000000x",
  "name": "my-app",
  "serviceCount": 0,
  "createdAt": "2026-01-01T00:00:00.000Z",
  "updatedAt": "2026-01-01T00:00:00.000Z"
}
```
