Domain Model
Support View
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 | Yes | — | ID of the associated workspace |
| ownerUserId | unknown | Yes | — | ID of the associated owner user |
| name | string | Yes | — | Name |
| filterJson | object | Yes | — | Filter json |
| columns | unknown | Yes | — | Columns |
| position | integer | Yes | — | Position |
Create Schema
Fields accepted when creating a new record:
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| name | string | Yes | — | Name |
| shared | boolean | Yes | false | Shared |
| filterJson | object | Yes | — | Filter json |
| columns | unknown | No | — | Columns |
| position | integer | Yes | 0 | Position |
Update Schema
All fields are optional when updating:
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| name | string | No | — | Name |
| shared | boolean | No | — | Shared |
| filterJson | object | No | — | Filter json |
| columns | unknown | No | — | Columns |
| position | integer | No | — | Position |