# AudienceModel

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

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `name` | `String` | ✓ |  |
| `slug` | `String` | ✓ |  |
| `color` | `String` | ✓ |  |
| `icon` | `String` | ✓ |  |
| `description` | `String` | - |  |
| `isStandard` | `Boolean` | ✓ |  |
| `organizationId` | `String` | - |  |
| `createdAt` | `DateTime` | ✓ |  |
| `updatedAt` | `DateTime` | ✓ |  |

## Diagram

```mermaid
erDiagram
    AudienceModel {
        id String [PK]
        name String
        slug String
        color String
        icon String
        description String?
        isStandard Boolean
        organizationId String?
        createdAt DateTime
        updatedAt DateTime
    }
```
