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
- workspace_group_id — generated server-side via gen_random_uuid() default and randomUUID() application-side default; unique constraint enforced in DB
- created_at — set automatically by MikroORM onCreate: () => new Date()
- updated_at — set automatically by MikroORM onCreate and onUpdate: () => new Date()
- deleted_at — managed by the soft-delete pattern; set by the service layer on logical deletion, never by the user directly
Example
apps/api/src/database/entities/WorkspaceGroup.ts · domain: workspace · tier: Platform