Clinical Notes
Datasets
US Core 6.1.0 maps each USCDI data element onto a FHIR element.
| Dataset | US Core 6.1.0 target profile(s) |
|---|---|
documents | US Core DocumentReference |
diagnostic_reports | US Core DiagnosticReport Lab, US Core DiagnosticReport Note |
Notes and reports are the one part of the feed that is not only CSV: the document itself travels as a file in the delivery, and the CSV row points at it.
delivery-2026-08-19/
csv/
documents.csv
diagnostic_reports.csv
attachments/
DOC-0001.pdf
DR-0771.pdf
attachment_file holds the path relative to the delivery root. The folder name and nesting are yours to choose. Put no patient details in file or folder names.
documents
One row per note. The note itself is the file; this row is its index card.
| Column | Required | Format / values | Example |
|---|---|---|---|
record_id | Yes | your stable key for this note | DOC-0001 |
patient_identifier | Yes | patient key | MRN-4471903 |
type_code | Yes | LOINC note type, e.g. 11488-4 consult, 18842-5 discharge summary, 34117-2 history and physical, 11506-3 progress note US Core DocumentReference Type | 11488-4 |
attachment_file | Yes | path relative to the delivery root | attachments/DOC-0001.pdf |
document_date | Recommended | datetime | 2026-04-18T10:00:00-04:00 |
author_npi | Recommended | 10 digits, Luhn-valid over the 80840 prefix | 9999999995 |
encounter_id | If applicable | encounters key | ENC-9912 |
is_deleted | If retracting | true retracts this row | true |
type_codehas a required binding, so the note type must come from that value set. It is large, but the four codes above cover most of what a payer holds.- Payerbox sets the status to
currentand the category toclinical-note, and reads the attachment's content type and size from the stored file. None of those are columns.
diagnostic_reports
One row per report. The individual results live in labs and clinical_observations and point back with diagnostic_report_id.
| Column | Required | Format / values | Example |
|---|---|---|---|
record_id | Yes | your stable key for this report; result rows reference it | DR-771 |
patient_identifier | Yes | patient key | MRN-4471903 |
report_kind | Yes | lab or note | lab |
status | Yes | registered, partial, preliminary, final, amended, corrected, appended, cancelled, entered-in-error, unknown diagnostic-report-status | final |
code | Yes | LOINC, from the value set the report_kind profile binds, with code_system | 24323-8 lab, 39053-4 note |
category_code | Recommended | LAB, RAD and the other v2-0074 service sections | LAB |
effective_datetime | Required once status is partial, preliminary, final, amended, corrected or appended | datetime | 2026-04-18T08:40:00-04:00 |
issued | Required once status is partial, preliminary, final, amended, corrected or appended | datetime | 2026-04-18T12:00:00-04:00 |
performer_npi | If available | 10 digits, Luhn-valid over the 80840 prefix | 9999999979 |
attachment_file | If available | path relative to the delivery root | attachments/DR-0771.pdf |
encounter_id | If applicable | encounters key | ENC-9912 |
is_deleted | If retracting | true retracts this row | true |
report_kindpicks the profile:labfor a laboratory report,notefor everything else, including radiology and pathology narratives. The two bindcodeto different value sets, so a lab code on anoterow falls outside the binding and the reverse too. Both bindings are extensible, so the code is not rejected, but a wrongreport_kindsilently produces the wrong profile.attachment_filecarries the narrative report as a file, the same waydocumentsdoes. A lab report with structured results and no narrative needs none.- This dataset also serves the Laboratory and Diagnostic Imaging data classes, not only Clinical Notes.
effective_datetimeandissuedare not required on aregisteredorcancelledreport, but US Core requires both once a report has results — send them on everypartial,preliminary,final,amended,correctedorappendedrow, or that row is rejected.
These resources are served by Patient Access, Provider Access, Payer-to-Payer, and Prior Auth.