Kind: Database Model
Source: atloria-monorepo/libs/database/prisma/schema.prisma
Fields
| Field | Type | Required | Key |
|---|---|---|---|
id | String | ✓ | PK |
projectId | String | ✓ | |
repoUrl | String | ✓ | |
branch | String | ✓ | |
folderPath | String | - | |
status | String | ✓ | |
progress | Int | ✓ | |
documentationId | String | - | |
error | String | - | |
errorStack | String | - | |
framework | String | - | |
frameworkVersion | String | - | |
routesFound | Int | - | |
componentsFound | Int | - | |
modalsFound | Int | - | |
totalTokensUsed | Int | - | |
totalCost | Int | - | |
organizationId | String | ✓ | |
triggeredBy | String | ✓ | |
createdAt | DateTime | ✓ | |
updatedAt | DateTime | ✓ | |
completedAt | DateTime | - |
Diagram
mermaiderDiagram CodeAnalysisJob { id String [PK] projectId String repoUrl String branch String folderPath String? status String progress Int documentationId String? error String? errorStack String? framework String? frameworkVersion String? routesFound Int? componentsFound Int? modalsFound Int? totalTokensUsed Int? totalCost Int? organizationId String triggeredBy String createdAt DateTime updatedAt DateTime completedAt DateTime? }
Was this page helpful?