Skip to content

CodeAnalysisJob

reference
1 min readUpdated

Kind: Database Model

Source: atloria-monorepo/libs/database/prisma/schema.prisma

Fields

FieldTypeRequiredKey
idStringPK
projectIdString
repoUrlString
branchString
folderPathString-
statusString
progressInt
documentationIdString-
errorString-
errorStackString-
frameworkString-
frameworkVersionString-
routesFoundInt-
componentsFoundInt-
modalsFoundInt-
totalTokensUsedInt-
totalCostInt-
organizationIdString
triggeredByString
createdAtDateTime
updatedAtDateTime
completedAtDateTime-

Diagram

mermaid
erDiagram
    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?

Download as PDF