Skip to main content

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