Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
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
mermaiderDiagram 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 }
Was this page helpful?