Skip to content

ManualVideo

reference
1 min readUpdated

Kind: Database Model

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

Fields

FieldTypeRequiredKey
idStringPK
projectIdString
organizationIdString
docVersionIdString-
documentIdString-
jobIdString-
slugString
localeString
statusString
videoUrlString-
posterUrlString-
captionsUrlString-
chaptersJson-
hotspotsJson-

Diagram

mermaid
erDiagram
    ManualVideo {
        id String [PK]
        projectId String
        organizationId String
        docVersionId String?
        documentId String?
        jobId String?
        slug String
        locale String
        status String
        videoUrl String?
        posterUrl String?
        captionsUrl String?
        chapters Json?
        hotspots Json?
    }

Was this page helpful?

Download as PDF