Skip to content

DocumentationJob

reference
1 min readUpdated

Kind: Database Model

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

Fields

FieldTypeRequiredKey
idStringPK
projectIdString
configIdString
statusDocumentationJobStatus
progressInt
currentStageString-
stageProgressInt
currentItemString-
documentsCreatedInt
documentsUpdatedInt
categoriesCreatedInt
screenshotsCapturedInt
commitHashString-
branchString-
routeMappingsJson-
errorString-
errorStackString-
errorStageString-
durationMsInt-
metricsJson-

Diagram

mermaid
erDiagram
    DocumentationJob {
        id String [PK]
        projectId String
        configId String
        status DocumentationJobStatus
        progress Int
        currentStage String?
        stageProgress Int
        currentItem String?
        documentsCreated Int
        documentsUpdated Int
        categoriesCreated Int
        screenshotsCaptured Int
        commitHash String?
        branch String?
        routeMappings Json?
        error String?
        errorStack String?
        errorStage String?
        durationMs Int?
        metrics Json?
    }

Referenced By

  • DocGenerationRun (HAS_ONE)

Was this page helpful?

Download as PDF