Skip to content

Commit 0158844

Browse files
added changes to CodeSystemLookupDictionary for cdt and sop (#542)
Co-authored-by: Bryn Rhodes <brynrhodes@users.noreply.github.com>
1 parent 1639731 commit 0158844

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

tooling/src/main/java/org/opencds/cqf/tooling/terminology/CodeSystemLookupDictionary.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static String getUrlFromOid(String oid) {
2828
case "2.16.840.1.113883.5.45": return "http://terminology.hl7.org/CodeSystem/v3-EntityNameUse";
2929
case "2.16.840.1.113883.6.14": return "http://terminology.hl7.org/CodeSystem/HCPCS";
3030
case "2.16.840.1.113883.6.259": return "https://www.cdc.gov/nhsn/cdaportal/terminology/codesystem/hsloc.html";
31-
case "2.16.840.1.113883.6.285": return "https://www.cms.gov/Medicare/Coding/HCPCSReleaseCodeSets";
31+
case "2.16.840.1.113883.6.285": return "http://www.nlm.nih.gov/research/umls/hcpcs";
3232
case "2.16.840.1.113883.6.3": return "http://terminology.hl7.org/CodeSystem/icd10";
3333
case "2.16.840.1.113883.6.4": return "http://www.cms.gov/Medicare/Coding/ICD10";
3434
case "2.16.840.1.113883.6.90": return "http://hl7.org/fhir/sid/icd-10-cm";
@@ -61,9 +61,9 @@ public static String getUrlFromOid(String oid) {
6161
case "2.16.840.1.113883.6.301.3": return "http://terminology.hl7.org/CodeSystem/v2-0456";
6262
case "2.16.840.1.113883.6.50": return "http://terminology.hl7.org/CodeSystem/POS";
6363
case "2.16.840.1.113883.6.238": return "urn:oid:2.16.840.1.113883.6.238";
64-
case "2.16.840.1.113883.6.13": return "http://terminology.hl7.org/CodeSystem/CD2";
64+
case "2.16.840.1.113883.6.13": return "http://www.ada.org/cdt";
6565
case "2.16.840.1.113883.5.79": return "http://terminology.hl7.org/CodeSystem/v3-mediatypes";
66-
case "2.16.840.1.113883.3.221.5": return "urn:oid:2.16.840.1.113883.3.221.5";
66+
case "2.16.840.1.113883.3.221.5": return "https://nahdo.org/sopt";
6767
case "1.3.6.1.4.1.12009.10.3.1": return "urn:oid:1.3.6.1.4.1.12009.10.3.1";
6868
case "2.16.840.1.113883.6.8": return "http://unitsofmeasure.org";
6969
case "2.16.840.1.113883.6.86": return "http://terminology.hl7.org/CodeSystem/umls";
@@ -91,7 +91,7 @@ public static String getUrlFromName(String name) {
9191
case "EntityNameUse": return "http://terminology.hl7.org/CodeSystem/v3-EntityNameUse";
9292
case "HCPCS": return "http://terminology.hl7.org/CodeSystem/HCPCS";
9393
case "HCPCS Level I: CPT": return "http://terminology.hl7.org/CodeSystem/HCPCS";
94-
case "HCPCS Level II": return "https://www.cms.gov/Medicare/Coding/HCPCSReleaseCodeSets";
94+
case "HCPCS Level II": return "http://www.nlm.nih.gov/research/umls/hcpcs";
9595
case "HSLOC": return "https://www.cdc.gov/nhsn/cdaportal/terminology/codesystem/hsloc.html";
9696
case "ICD10": return "http://terminology.hl7.org/CodeSystem/icd10";
9797
case "ICD10CM": return "http://hl7.org/fhir/sid/icd-10-cm";
@@ -128,9 +128,9 @@ public static String getUrlFromName(String name) {
128128
case "PYXIS": return "http://content.alphora.com/fhir/dqm/CodeSystem/Pyxis";
129129
case "CDCREC": return "urn:oid:2.16.840.1.113883.6.238";
130130
case "Modifier": return "http://www.ama-assn.org/go/cpt";
131-
case "CDT": return "http://terminology.hl7.org/CodeSystem/CD2";
131+
case "CDT": return "http://www.ada.org/cdt";
132132
case "mediaType": return "http://terminology.hl7.org/CodeSystem/v3-mediatypes";
133-
case "SOP": return "urn:oid:2.16.840.1.113883.3.221.5";
133+
case "SOP": return "https://nahdo.org/sopt";
134134
case "UCUM": return "http://unitsofmeasure.org";
135135
case "UMLS": return "http://terminology.hl7.org/CodeSystem/umls";
136136
default: throw new IllegalArgumentException("Unknown CodeSystem name: " + name);

0 commit comments

Comments
 (0)