# ScreenshotPlaceholder

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ |  |
| `jobId` | `String` | - |  |
| `documentId` | `String` | - |  |
| `docVersionId` | `String` | - |  |
| `placeholderId` | `String` | ✓ |  |
| `description` | `String` | ✓ |  |
| `mappingSource` | `String` | - |  |
| `mappingUrl` | `String` | - |  |
| `captureType` | `String` | - |  |
| `confidence` | `Float` | - |  |
| `screenshotId` | `String` | - |  |
| `blobUrl` | `String` | - |  |
| `status` | `String` | ✓ |  |
| `failureReason` | `String` | - |  |
| `annotations` | `Json` | - |  |
| `parentPlaceholderId` | `String` | - |  |
| `sequenceOrder` | `Int` | - |  |
| `createdAt` | `DateTime` | ✓ |  |
| `updatedAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    ScreenshotPlaceholder {
        id String [PK]
        projectId String
        jobId String?
        documentId String?
        docVersionId String?
        placeholderId String
        description String
        mappingSource String?
        mappingUrl String?
        captureType String?
        confidence Float?
        screenshotId String?
        blobUrl String?
        status String
        failureReason String?
        annotations Json?
        parentPlaceholderId String?
        sequenceOrder Int?
        createdAt DateTime
        updatedAt DateTime
    }
```
