Skip to content
Merged

Dev #63

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ Temporary Items
### Gradle ###
.gradle
build/
gradle/
gradlew
gradlew.bat

# Ignore Gradle GUI config
gradle-app.setting
Expand Down
21 changes: 21 additions & 0 deletions .run/Boot Run.run.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Boot Run" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="bootRun" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list />
</option>
<option name="vmOptions" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
<DebugAllEnabled>false</DebugAllEnabled>
<method v="2" />
</configuration>
</component>
21 changes: 21 additions & 0 deletions .run/Clean.run.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Clean" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="clean" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list />
</option>
<option name="vmOptions" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
<DebugAllEnabled>false</DebugAllEnabled>
<method v="2" />
</configuration>
</component>
21 changes: 21 additions & 0 deletions .run/Load Data.run.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Load Data" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="loadData" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list />
</option>
<option name="vmOptions" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
<DebugAllEnabled>false</DebugAllEnabled>
<method v="2" />
</configuration>
</component>
7 changes: 6 additions & 1 deletion fhirResourcesToLoad/medication_turalio.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@
"code": {
"coding": [
{
"system": "http://hl7.org/fhir/sid/ndc",
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "2183126",
"display": "Turalio 200 MG Oral Capsule"
},
{
"system": "http://hl7.org/fhir/sid/ndc",
"code": "65597-402-20",
"display": "Turalio"
}
]
Expand Down
29 changes: 29 additions & 0 deletions fhirResourcesToLoad/rems_smith_01_patient.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"resourceType": "Patient",
"id": "pat036",
"gender": "female",
"birthDate": "1990-05-24",
"address": [
{
"use": "home",
"type": "both",
"state": "Wonderland",
"city": "Wonderland",
"postalCode": "12345",
"line": ["47 Main St"]
}
],
"name": [
{
"use": "official",
"family": "Smith",
"given": ["Alice"]
}
],
"identifier": [
{
"system": "http://hl7.org/fhir/sid/us-medicare",
"value": "0V855555061TC"
}
]
}
45 changes: 45 additions & 0 deletions fhirResourcesToLoad/rems_smith_condition_diabetes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"resourceType": "Condition",
"id": "cond036a",
"clinicalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
"code": "active",
"display": "Active"
}
]
},
"verificationStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
"code": "confirmed",
"display": "Confirmed"
}
]
},
"category": [
{
"coding": [
{
"system": "http://hl7.org/fhir/condition-category",
"code": "encounter-diagnosis",
"display": "Encounter Diagnosis"
}
]
}
],
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "73211009",
"display": "Diabetes"
}
]
},
"subject": {
"reference": "Patient/pat036"
}
}
24 changes: 24 additions & 0 deletions fhirResourcesToLoad/rems_smith_coverage.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

{
"resourceType": "Coverage",
"id": "cov036",
"beneficiary": {
"reference": "Patient/pat036"
},
"status": "active",
"subscriberId": "10F5Q95WH5362",
"class": [
{
"type": {
"system": "http://hl7.org/fhir/coverage-class",
"code": "plan"
},
"value": "Medicare Part A"
}
],
"payor": [
{
"reference": "Organization/org1236"
}
]
}
50 changes: 50 additions & 0 deletions fhirResourcesToLoad/rems_smith_medication_morphine.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"resourceType": "Medication",
"id": "med-pat036-morphine",
"status": "active",
"code": {
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "1303740",
"display": "Morphine sulfate 70 MG Extended Release Oral Capsule"
}
]
},
"form": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "385053008",
"display": "Prolonged-release oral capsule"
}
]
},
"ingredient": [
{
"itemCodeableConcept": {
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "7052",
"display": "Morphine"
}
]
},
"strength": {
"numerator": {
"value": 70,
"system": "http://unitsofmeasure.org",
"code": "mg",
"unit": "mg"
},
"denominator": {
"value": 1,
"system": "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm",
"code": "ERTAB",
"unit": "Capsule"
}
}
}
]
}
50 changes: 50 additions & 0 deletions fhirResourcesToLoad/rems_smith_medication_oxycodone.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"resourceType": "Medication",
"id": "med-pat036-oxycodone",
"status": "active",
"code": {
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "1049683",
"display": "Oxycodone hydrochloride 10 MG Oral Tablet"
}
]
},
"form": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "421026006",
"display": "Conventional release oral tablet"
}
]
},
"ingredient": [
{
"itemCodeableConcept": {
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "7804",
"display": "Oxycodone"
}
]
},
"strength": {
"numerator": {
"value": 10,
"system": "http://unitsofmeasure.org",
"code": "mg",
"unit": "mg"
},
"denominator": {
"value": 1,
"system": "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm",
"code": "ORTAB",
"unit": "Oral Tablet"
}
}
}
]
}
50 changes: 50 additions & 0 deletions fhirResourcesToLoad/rems_smith_medication_ursodiol.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"resourceType": "Medication",
"id": "med-pat036-ursodiol",
"status": "active",
"code": {
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "1303740",
"display": "ursodiol 250 MG Oral Capsule"
}
]
},
"form": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "858744",
"display": "Prolonged-release oral capsule"
}
]
},
"ingredient": [
{
"itemCodeableConcept": {
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "11065",
"display": "Ursodiol"
}
]
},
"strength": {
"numerator": {
"value": 70,
"system": "http://unitsofmeasure.org",
"code": "mg",
"unit": "mg"
},
"denominator": {
"value": 1,
"system": "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm",
"code": "ERTAB",
"unit": "Capsule"
}
}
}
]
}
Loading