forked from HL7-DaVinci/test-ehr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from mcode/status-form-resources
add files for status form
- Loading branch information
Showing
7 changed files
with
333 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"resourceType": "Medication", | ||
"id": "med-pat017-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" | ||
} | ||
} | ||
} | ||
] | ||
} |
93 changes: 93 additions & 0 deletions
93
fhirResourcesToLoad/rems_snow_medicationstatement_ursodiol.json
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 |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{ | ||
"resourceType": "MedicationStatement", | ||
"id": "medstate-pat017-ursodiol", | ||
"status": "active", | ||
"category": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/medication-statement-category", | ||
"code": "outpatient", | ||
"display": "Outpatient" | ||
} | ||
] | ||
}, | ||
"medicationReference": { | ||
"reference": "Medication/med-pat017-ursodiol" | ||
}, | ||
"subject": { | ||
"reference": "Patient/pat017", | ||
"display": "Jon Snow" | ||
}, | ||
"effectiveDateTime": "2023-03-20", | ||
"dateAsserted": "2021-03-22", | ||
"informationSource": { | ||
"reference": "Patient/pat017", | ||
"display": "Jon Snow" | ||
}, | ||
"reasonCode": [ | ||
{ | ||
"coding": [ | ||
{ | ||
"code": "39400004", | ||
"system": "http://snomed.info/sct", | ||
"display": "Injury of Liver" | ||
} | ||
] | ||
} | ||
], | ||
"dosage": [ | ||
{ | ||
"sequence": 1, | ||
"text": "70mg daily", | ||
"timing": { | ||
"repeat": { | ||
"frequency": 1, | ||
"period": 1, | ||
"periodUnit": "d" | ||
} | ||
}, | ||
"route": { | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "26643006", | ||
"display": "Oral route" | ||
} | ||
] | ||
}, | ||
"doseAndRate": [ | ||
{ | ||
"type": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type", | ||
"code": "ordered", | ||
"display": "Ordered" | ||
} | ||
] | ||
}, | ||
"doseQuantity": { | ||
"value": 1, | ||
"unit": "Capsule", | ||
"system": "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm", | ||
"code": "ERTAB" | ||
}, | ||
"rateRatio": { | ||
"numerator": { | ||
"value": 1, | ||
"unit": "pills" | ||
}, | ||
"denominator": { | ||
"value": 1, | ||
"unit": "day", | ||
"system": "http://unitsofmeasure.org", | ||
"code": "d" | ||
|
||
} | ||
|
||
} | ||
} | ||
] | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"resourceType": "Procedure", | ||
"id": "pr-4", | ||
"status": "completed", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "386718000", | ||
"display": "Endoscopic retrograde cholangiopancreatography (Procedure)" | ||
} | ||
], | ||
"text": "Endoscopic retrograde cholangiopancreatography" | ||
}, | ||
"subject": { | ||
"reference": "Patient/pat017" | ||
}, | ||
"performedDateTime": "2023-04-05", | ||
"recorder": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
}, | ||
"asserter": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
}, | ||
"performer": [ | ||
{ | ||
"actor": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"resourceType": "Procedure", | ||
"id": "pr-5", | ||
"status": "completed", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://www.ama-assn.org/go/cpt", | ||
"code": "78226", | ||
"display": "Hepatobiliary iminodiacetic acid scan" | ||
} | ||
], | ||
"text": "HIDA Scan" | ||
}, | ||
"subject": { | ||
"reference": "Patient/pat017" | ||
}, | ||
"performedDateTime": "2023-04-05", | ||
"recorder": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
}, | ||
"asserter": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
}, | ||
"performer": [ | ||
{ | ||
"actor": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"resourceType": "Procedure", | ||
"id": "pr-3", | ||
"status": "completed", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "86259008", | ||
"display": "Liver Biopsy (Procedure)" | ||
} | ||
], | ||
"text": "Liver Biopsy" | ||
}, | ||
"subject": { | ||
"reference": "Patient/pat017" | ||
}, | ||
"performedDateTime": "2023-04-05", | ||
"recorder": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
}, | ||
"asserter": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
}, | ||
"performer": [ | ||
{ | ||
"actor": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
} | ||
} | ||
] | ||
} |
35 changes: 35 additions & 0 deletions
35
fhirResourcesToLoad/rems_snow_procedure_liver_imaging.json
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"resourceType": "Procedure", | ||
"id": "pr-2", | ||
"status": "completed", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "441802002", | ||
"display": "Imaging of liver (Procedure)" | ||
} | ||
], | ||
"text": "Imaging of liver" | ||
}, | ||
"subject": { | ||
"reference": "Patient/pat017" | ||
}, | ||
"performedDateTime": "2023-04-05", | ||
"recorder": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
}, | ||
"asserter": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
}, | ||
"performer": [ | ||
{ | ||
"actor": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
} | ||
} | ||
] | ||
} |
50 changes: 50 additions & 0 deletions
50
fhirResourcesToLoad/rems_snow_procedure_liver_ultrasound.json
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"resourceType": "Procedure", | ||
"id": "pr-1", | ||
"status": "completed", | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "105377009", | ||
"display": "Ultrasonography of liver (Procedure)" | ||
} | ||
], | ||
"text": "Ultrasonography of liver" | ||
}, | ||
"subject": { | ||
"reference": "Patient/pat017" | ||
}, | ||
"performedDateTime": "2023-04-05", | ||
"recorder": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
}, | ||
"asserter": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
}, | ||
"performer": [ | ||
{ | ||
"actor": { | ||
"reference": "Practitioner/example", | ||
"display": "Dr Cecil Surgeon" | ||
} | ||
} | ||
], | ||
"reasonCode": [ | ||
{ | ||
"text": "Generalized abdominal pain 24 hours. Localized in RIF with rebound and guarding" | ||
} | ||
], | ||
"followUp": [ | ||
{ | ||
"text": "ROS 5 days - 2023-04-10" | ||
} | ||
], | ||
"note": [ | ||
{ | ||
"text": "Routine liver ultrasound - everything normal" | ||
} | ||
] | ||
} |