# ChangelogEntry

**Kind:** Database Model

**Source:** [`atloria-monorepo/libs/database/prisma/schema.prisma`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/database/prisma/schema.prisma#L3358)

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ |  |
| `organizationId` | `String` | ✓ |  |
| `source` | `String` | ✓ |  |
| `status` | `String` | ✓ |  |
| `title` | `String` | ✓ |  |
| `body` | `String` | ✓ |  |
| `tags` | `String[]` | ✓ |  |
| `changeSet` | `Json` | - |  |

## Diagram

```mermaid
erDiagram
    ChangelogEntry {
        id String [PK]
        projectId String
        organizationId String
        source String
        status String
        title String
        body String
        tags String[]
        changeSet Json?
    }
```
