# TourVisitorState

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `projectId` | `String` | ✓ |  |
| `experienceId` | `String` | ✓ |  |
| `visitorId` | `String` | ✓ |  |

## Diagram

```mermaid
erDiagram
    TourVisitorState {
        id String [PK]
        projectId String
        experienceId String
        visitorId String
    }
```
