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