> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Review Queue

> Transcription review queue listing AI-drafted session notes awaiting clinician attestation before finalization.

Transcription review queue at `/transcription/review` showing all AI-drafted session notes in a `pending_review` state, waiting for a clinician to attest and finalize each draft.

## Overview

The Review Queue page fetches sessions in a pending-review state via `useReviewQueue` and displays them as a clickable card list. Each card shows the `recording_channel` (formatted) and the `ended_at` timestamp. Clicking a card or pressing Enter navigates to `/transcription/sessions/:sessionId` for attestation. If the queue is empty an empty state is shown. The route is protected by the `pf.transcription.review_queue.view` permission.

## Who it's for

**Required permission:** `pf.transcription.review_queue.view`

## Before you start

* You must hold the `pf.transcription.review_queue.view` permission.
* At least one session must be in a pending-review state to appear in the list.

## Steps

1. Navigate to `/transcription/review`.
2. Review the list of drafts awaiting attestation.
3. Click a session card to open the Session Detail page.
4. Complete attestation on the session detail page.

## Key concepts

**Review queue** — The set of AI-drafted transcription notes that require a clinician to review and attest before the note is considered final.

**recording\_channel** — The input source for the session (e.g., microphone type or channel). SME: confirm possible values.

## Related

<Columns cols={2}>
  <Card title="Platform Foundation" icon="layer-group" href="/pf/overview">
    Platform Foundation overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index" />
</Columns>

<Note>
  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.
</Note>

<Accordion title="Documentation sources">
  * src/routes/platform.tsx
  * src/platform/transcription/pages/TranscriptionReviewQueuePage.tsx
  * src/platform/transcription/hooks/useTranscriptionSessions.ts
</Accordion>
