# Profile

**Kind:** Database Model

**Source:** [`atloria-monorepo/apps/parser-orchestrator/test/fixtures/sample-projects/fullstack-nextjs-nestjs/backend/prisma/schema.prisma`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/apps/parser-orchestrator/test/fixtures/sample-projects/fullstack-nextjs-nestjs/backend/prisma/schema.prisma#L37)

User profile with extended information

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `bio` | `String` | - |  |
| `avatarUrl` | `String` | - |  |
| `website` | `String` | - |  |
| `location` | `String` | - |  |
| `userId` | `String` | ✓ | unique |

## Diagram

```mermaid
erDiagram
    Profile {
        id String [PK]
        bio String?
        avatarUrl String?
        website String?
        location String?
        userId String [UNIQUE]
    }
    Profile ||--|| User : "userId"
```

## Relationships

- BELONGS_TO → `User`

## Referenced By

- `User` (HAS_ONE)
