A single tracked work session for an assignment.
Activity sessions record individual periods of work on an assignment, including start/end times, duration, and optional notes about what was accomplished.
const session: ActivitySession = { id: 'session-001', startTime: '2024-03-15T09:00:00.000Z', endTime: '2024-03-15T10:30:00.000Z', duration: 90, notes: 'Completed initial research phase',}; Copy
const session: ActivitySession = { id: 'session-001', startTime: '2024-03-15T09:00:00.000Z', endTime: '2024-03-15T10:30:00.000Z', duration: 90, notes: 'Completed initial research phase',};
Duration of the session in minutes
ISO timestamp when the session ended (null if still active)
Unique identifier for the session
Notes about work performed during the session
ISO timestamp when the session started
A single tracked work session for an assignment.
Remarks
Activity sessions record individual periods of work on an assignment, including start/end times, duration, and optional notes about what was accomplished.
Example