# Activity

**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#L804)

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `organizationId` | `String` | ✓ |  |
| `projectId` | `String` | - |  |
| `userId` | `String` | - |  |
| `actionType` | `String` | ✓ |  |
| `entityType` | `String` | ✓ |  |
| `entityId` | `String` | ✓ |  |
| `metadata` | `Json` | - |  |
| `createdAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    Activity {
        id String [PK]
        organizationId String
        projectId String?
        userId String?
        actionType String
        entityType String
        entityId String
        metadata Json?
        createdAt DateTime
    }
```
