Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding a glossary endpoint which attempts to get patient-friendly descriptions from code. #120

Merged
merged 7 commits into from
Mar 21, 2023
Prev Previous commit
Next Next commit
adding alias for ICD-10 codesystem.
  • Loading branch information
AnalogJ committed Mar 20, 2023
commit eec0da5558eba5e812a996f940be9d9f05a8c2d4
1 change: 1 addition & 0 deletions backend/pkg/web/handler/glossary.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ func FindCodeSystem(codeSystem string) (string, error) {
//https://terminology.hl7.org/external_terminologies.html
codeSystemIds := map[string]string{
"http:https://hl7.org/fhir/sid/icd-10-cm": "2.16.840.1.113883.6.90",
"http:https://hl7.org/fhir/sid/icd-10": "2.16.840.1.113883.6.90",
"http:https://terminology.hl7.org/CodeSystem/icd9cm": "2.16.840.1.113883.6.103",
"http:https://snomed.info/sct": "2.16.840.1.113883.6.96",
"http:https://www.nlm.nih.gov/research/umls/rxnorm": "2.16.840.1.113883.6.88",
Expand Down