Internal object. Not currently exposed on the public REST API. The operations below describe the intended contract.
API operations
Data model
Attributes
Relationships
System-computed
- created_at — set once by onCreate: () => new Date(); also set explicitly to new Date() by DocumentWorkspaceConnectorService.createDocumentWorkspaceConnector() and .stage()
- updated_at — set by onCreate and onUpdate hooks; also set explicitly by the service methods
- deleted_at — soft-delete sentinel; NULL on creation; not written by the pipeline’s normal create/stage paths
- pk — auto-increment serial primary key assigned by Postgres; internal join target only, never exposed in the public API
- No public UUID (*_id) column — this is a pure infrastructure junction record with no user-facing stable identifier beyond pk
Example
apps/api/src/database/entities/DocumentWorkspaceConnector.ts · domain: ingestion · tier: Infrastructure