# ScenarioCandidate

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ |  |
| `organizationId` | `String` | ✓ |  |
| `title` | `String` | ✓ |  |
| `persona` | `String` | ✓ |  |
| `trigger` | `String` | ✓ |  |
| `outcome` | `String` | ✓ |  |
| `source` | `String` | ✓ |  |
| `isFlagship` | `Boolean` | ✓ |  |
| `jobId` | `String` | - |  |
| `createdAt` | `DateTime` | ✓ |  |
| `updatedAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    ScenarioCandidate {
        id String [PK]
        projectId String
        organizationId String
        title String
        persona String
        trigger String
        outcome String
        source String
        isFlagship Boolean
        jobId String?
        createdAt DateTime
        updatedAt DateTime
    }
```
