# ParsingJob

**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#L1375)

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ |  |
| `repositoryUrl` | `String` | ✓ |  |
| `branch` | `String` | ✓ |  |
| `provider` | `String` | ✓ |  |
| `status` | `String` | ✓ |  |
| `progress` | `Int` | ✓ |  |
| `options` | `Json` | - |  |
| `result` | `Json` | - |  |
| `errorMessage` | `String` | - |  |
| `autoSync` | `Boolean` | ✓ |  |
| `createdAt` | `DateTime` | ✓ |  |
| `updatedAt` | `DateTime` | ✓ |  |
| `completedAt` | `DateTime` | - |  |

## Diagram

```mermaid
erDiagram
    ParsingJob {
        id String [PK]
        projectId String
        repositoryUrl String
        branch String
        provider String
        status String
        progress Int
        options Json?
        result Json?
        errorMessage String?
        autoSync Boolean
        createdAt DateTime
        updatedAt DateTime
        completedAt DateTime?
    }
```
