-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing jurisdiction ids. Switched value urls to loinc/snomed o…
…nly. No more oids for values.
- Loading branch information
1 parent
7a38853
commit f92f843
Showing
9 changed files
with
113 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/main/java/edu/gatech/chai/VRDR/model/util/DeathLocationUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
package edu.gatech.chai.VRDR.model.util; | ||
|
||
import java.util.Arrays; | ||
import java.util.HashSet; | ||
|
||
import org.hl7.fhir.r4.model.CodeableConcept; | ||
import org.hl7.fhir.r4.model.Coding; | ||
|
||
public class DeathLocationUtil { | ||
public static String locationJurisdictionIdExtension = "http://hl7.org/fhir/us/vrdr/StructureDefinition/Location-Jurisdiction-Id"; | ||
public static final HashSet<CodeableConcept> placeOfDeathTypeSet = new HashSet<>(Arrays.asList( | ||
new CodeableConcept().addCoding(new Coding(CommonUtil.snomedSystemUrl,"63238001","Dead on arrival at hospital")), | ||
new CodeableConcept().addCoding(new Coding(CommonUtil.snomedSystemUrl,"440081000124100","Death in home")), | ||
new CodeableConcept().addCoding(new Coding(CommonUtil.snomedSystemUrl,"440071000124103","Death in hospice")), | ||
new CodeableConcept().addCoding(new Coding(CommonUtil.snomedSystemUrl,"16983000","Death in hospital")), | ||
new CodeableConcept().addCoding(new Coding(CommonUtil.snomedSystemUrl,"450391000124102","Death in hospital-based emergency department or outpatient department (event)")), | ||
new CodeableConcept().addCoding(new Coding(CommonUtil.snomedSystemUrl,"450381000124100","Death in nursing home or long term care facility (event)")), | ||
new CodeableConcept().addCoding(new Coding(CommonUtil.nullFlavorHL7System,"OTH","Other")), | ||
new CodeableConcept().addCoding(new Coding(CommonUtil.nullFlavorHL7System,"UNK","Unknown")) | ||
)); | ||
} |
Oops, something went wrong.