Skip to main content
Version: v0.0.3

Interface: SectionInfo

Recognized-section descriptor. key is a stable machine name, title a human label, loinc the section's LOINC code, and templateRoots the section templateId root OID(s) (entries-optional and entries-required variants) that identify it.

Example

import type { SectionInfo } from "@cosyte/ccda";
const s: SectionInfo = {
key: "allergies",
title: "Allergies",
loinc: "48765-2",
templateRoots: ["2.16.840.1.113883.10.20.22.2.6.1"],
};

Properties

key

readonly key: string


loinc

readonly loinc: string


templateRoots

readonly templateRoots: readonly string[]


title

readonly title: string