The Assessment Details screen is accessible atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/lo/assessments/:assessmentId and shows an assessment template’s metadata and its associated distribution schedules, with controls to add schedules, edit, and delete the assessment.
Overview
TheAssessmentDetailPage fetches the assessment via useAssessment(assessmentId) and its schedules via useAssessmentSchedules({ assessmentId }). The breadcrumb is set to assessment_name. Two tabs — Details and Schedules — are shown. The Details tab shows assessment metadata and an AssessmentTypeBadge. The Schedules tab lists schedules as cards with ScheduleStatusBadge indicators; an “Add Schedule” button opens AssessmentScheduleDialog. The header includes Edit (opens AssessmentFormDialog) and Delete (opens ConfirmationDialog) buttons. Selecting a schedule navigates to /lo/assessments/schedules/:scheduleId.
Who it’s for
RequiresLO_PERMISSIONS.DASHBOARD_VIEW (lo.dashboard.view) via the shared LOViewGuard. Creating assessments uses lo.assessments.create.
Before you start
- The assessment identified by
:assessmentIdmust exist. lo.dashboard.viewpermission required.
Steps
Open an assessment
Navigate to
/lo/assessments/:assessmentId or select an assessment from the Assessments list.Add a schedule
Select “Add Schedule” to open
AssessmentScheduleDialog and create a new distribution schedule.Key concepts
- AssessmentSchedule: a planned distribution of an assessment to participants.
- ScheduleStatusBadge: displays the current status of each schedule.
- AssessmentTypeBadge: displays the assessment type.
Related
Leadership
Leadership core overview.
Governance & parity
Documentation coverage and governance.
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/lo.tsx
- src/cores/lo/pages/AssessmentDetailPage.tsx
- src/cores/lo/hooks/useAssessments.ts
- src/cores/lo/hooks/useAssessmentSchedules.ts