# ManualVideo

**Kind:** Database Model

**Source:** [`atloria-monorepo/libs/database/prisma/schema.prisma`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/database/prisma/schema.prisma#L3141)

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `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` | - |  |

## 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?
    }
```
