Type Alias: DocumentType
DocumentType =
"ccd"|"dischargeSummary"|"referralNote"|"consultationNote"|"historyAndPhysical"|"progressNote"|"procedureNote"|"operativeNote"|"carePlan"|"diagnosticImagingReport"|"unstructuredDocument"|"transferSummary"
Machine keys for the twelve recognized C-CDA R2.1 document types. Stable
strings, consumers may branch on doc.documentType === "ccd". Renaming a
key is a breaking change.
Example
import type { DocumentType } from "@cosyte/ccda";
const t: DocumentType = "dischargeSummary";