---
title: "Solution"
description: "The `Solution` entity."
section: "Reference"
group: "Types"
order: 194
---

## Definition

```ts
interface Solution {
  id: string;
  workspaceId: string;
  name: string;
  description: string | null;
  createdBy: string;
  deletedAt: string | null;
  retentionTier: "short" | "medium" | "long" | "none" | null;
  createdAt: string;
  updatedAt: string;
}
```

## Fields

| Field           | Type                                              | Notes                                                                                                                                        |
| --------------- | ------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`            | `string`                                          | `readonly` `required`                                                                                                                        |
| `workspaceId`   | `string`                                          | `required` — Workspace that owns this solution.                                                                                              |
| `name`          | `string`                                          | `required` — Human-readable solution name.                                                                                                   |
| `description`   | `string \| null`                                  | `required` — Optional longer-form description of the solution's purpose.                                                                     |
| `createdBy`     | `string`                                          | `required` — User who created the solution.                                                                                                  |
| `deletedAt`     | `string \| null`                                  | `required` — ISO-8601 timestamp of soft-delete; null while active. Cleanup worker hard-deletes once `deletedAt + retentionTier.days` passes. |
| `retentionTier` | `"short" \| "medium" \| "long" \| "none" \| null` | `required` — Retention tier snapshotted at delete time. `short`=7d, `medium`=30d, `long`=90d, `none`=never. Null while active.               |
| `createdAt`     | `string`                                          | `readonly` `required` — ISO-8601 timestamp of creation.                                                                                      |
| `updatedAt`     | `string`                                          | `readonly` `required` — ISO-8601 timestamp of the last update.                                                                               |
