# CapturedFlow

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ |  |
| `organizationId` | `String` | ✓ |  |
| `name` | `String` | ✓ |  |
| `startUrl` | `String` | ✓ |  |
| `steps` | `Json` | ✓ |  |
| `createdAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    CapturedFlow {
        id String [PK]
        projectId String
        organizationId String
        name String
        startUrl String
        steps Json
        createdAt DateTime
    }
```
