Skip to main content

Overview

NoteContent type represents the content structure for clinical notes, including optional diagnosis and LOINC code. The code snippet below shows how to use the NoteContent type to create a note content object.
JavaScript
type NoteContent = {
  title: string;
  content: string;
  diagnosis?: Diagnosis;
  loinc_code?: string;
};

Properties