# TechnicalSnapshot

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ | unique |
| `entitiesJson` | `Json` | ✓ |  |
| `relationshipsJson` | `Json` | ✓ |  |
| `apiSpecJson` | `Json` | - |  |
| `navMapJson` | `Json` | ✓ |  |
| `entityCount` | `Int` | ✓ |  |
| `generatedAt` | `DateTime` | ✓ |  |
| `updatedAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    TechnicalSnapshot {
        id String [PK]
        projectId String [UNIQUE]
        entitiesJson Json
        relationshipsJson Json
        apiSpecJson Json?
        navMapJson Json
        entityCount Int
        generatedAt DateTime
        updatedAt DateTime
    }
```
