# Collection

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `urlId` | `String` | ✓ | unique |
| `name` | `String` | ✓ |  |
| `slug` | `String` | ✓ |  |
| `description` | `String` | - |  |
| `icon` | `String` | - |  |
| `color` | `String` | - |  |
| `sortOrder` | `Int` | ✓ |  |
| `documentStructure` | `Json` | - |  |

## Diagram

```mermaid
erDiagram
    Collection {
        id String [PK]
        urlId String [UNIQUE]
        name String
        slug String
        description String?
        icon String?
        color String?
        sortOrder Int
        documentStructure Json?
    }
```

## Referenced By

- `Document` (HAS_ONE)
