Domain Model
Knowledge Chunk
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 |
| documentId | string | Yes | — | ID of the associated document |
| workspaceId | string | Yes | — | ID of the associated workspace |
| visibilityMode | enum(global, workspace_local, shared) | Yes | — | Visibility mode |
| chunkIndex | integer | Yes | — | Chunk index |
| content | string | Yes | — | Content |
| pageNumber | unknown | Yes | — | Page number |
| sectionHeading | unknown | Yes | — | Section heading |
| tokenCount | integer | Yes | — | Token count |
| embedding | unknown | No | — | Embedding |
Create Schema
Fields accepted when creating a new record:
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| documentId | string | Yes | — | ID of the associated document |
| workspaceId | string | No | — | ID of the associated workspace |
| visibilityMode | enum(global, workspace_local, shared) | Yes | "workspace_local" | Visibility mode |
| chunkIndex | integer | Yes | — | Chunk index |
| content | string | Yes | — | Content |
| pageNumber | unknown | Yes | null | Page number |
| sectionHeading | unknown | Yes | null | Section heading |
| tokenCount | integer | Yes | — | Token count |