Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.suki.ai/llms.txt

Use this file to discover all available pages before exploring further.

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

Last modified on April 20, 2026