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

Diagnosis type represents the structure for clinical diagnosis information, including ICD codes. The code snippet below shows how to use the Diagnosis type to create a diagnosis object.
JavaScript
type Diagnosis = {
  icdCode: string;
  icdDescription: string;
  snomedCode: string;
  snomedDescription: string;
  hccCode: string;
  panelRanking: number;
  billable: boolean;
  problemLabel: string;
  suggestionType: "DEFAULT" | "ED" | "PL";
};

Properties

Last modified on March 23, 2026