Domain Model
Summary Subscription
Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string.uuid | Yes | — | Id |
| createdAt | string.date-time | Yes | — | Created at |
| updatedAt | string.date-time | Yes | — | Updated at |
| workspaceId | string.uuid | Yes | — | ID of the associated workspace |
| userId | string.uuid | Yes | — | ID of the associated user |
string | Yes | — | ||
| frequency | enum(daily, weekly, both) | Yes | — | Frequency |
| isActive | boolean | Yes | — | Is active |
Create Schema
Fields accepted when creating a new record:
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| workspaceId | string.uuid | Yes | — | ID of the associated workspace |
| userId | string.uuid | Yes | — | ID of the associated user |
string.email | Yes | — | ||
| frequency | enum(daily, weekly, both) | Yes | "daily" | Frequency |
| isActive | boolean | Yes | true | Is active |