Skip to content
Open
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
22 changes: 11 additions & 11 deletions fhirResourcesToLoad/1. practitioner.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,37 +17,37 @@
{
"system": "http://terminology.hl7.org/3.1.0/CodeSystem-v2-0203",
"code": "MD"

}
]
},
"value": "555123555"
"system": "http://michigan.gov/medical-license",
"value": "MI4804444444"
}
],
"address": [
{
"use": "home",
"use": "work",
"type": "both",
"state": "NY",
"city": "Buffalo",
"postalCode": "14210",
"line": ["840 Seneca St"]
"state": "MI",
"city": "Detroit",
"postalCode": "48224",
"line": ["18051 Mack Avenue"]
}
],
"telecom": [
{
"system": "phone",
"value": "716-873-1557",
"value": "(555) 384-4444",
"rank": 1
},
{
"system": "email",
"value": "jane.betty@myhospital.com",
"value": "jane.betty@motorcitysnf.com",
"rank": 2
},
{
"system": "fax",
"value": "555-123-4567",
"value": "(555) 384-4445",
"rank": 3
}
],
Expand Down Expand Up @@ -163,4 +163,4 @@
}
}
]
}
}
49 changes: 49 additions & 0 deletions fhirResourcesToLoad/rems_violet_01_patient.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"resourceType": "Patient",
"id": "pat018",
"gender": "female",
"birthDate": "2008-10-01",
"address": [
{
"use": "home",
"type": "both",
"state": "MI",
"city": "Detroit",
"postalCode": "48224",
"line": ["15935 Mack Avenue"]
}
],
"name": [
{
"use": "official",
"family": "Gartner",
"given": ["Violet"]
}
],
"identifier": [
{
"system": "http://hl7.org/fhir/sid/us-medicare",
"value": "1EG4TE5MK73"
},
{
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"code": "SS",
"display": "Social Security Number"
}
]
},
"system": "http://hl7.org/fhir/sid/us-ssn",
"value": "111-45-6677"
}
],
"telecom": [
{
"system": "phone",
"value": "(555) 666-7777",
"use": "mobile"
}
]
}
23 changes: 23 additions & 0 deletions fhirResourcesToLoad/rems_violet_coverage.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"resourceType": "Coverage",
"id": "cov018",
"beneficiary": {
"reference": "Patient/pat018"
},
"status": "active",
"subscriberId": "1EG4TE5MK73",
"class": [
{
"type": {
"system": "http://hl7.org/fhir/coverage-class",
"code": "plan"
},
"value": "Medicare Part A"
}
],
"payor": [
{
"reference": "Organization/org1234"
}
]
}
104 changes: 104 additions & 0 deletions fhirResourcesToLoad/rems_violet_medicationrequest_IPledge.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
{

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to have this MedicationRequest canned and ready to go, or do we want to create it from what is read from PACIO?

"resourceType": "MedicationRequest",
"id": "pat018-mr-IPledge",
"meta": {
"profile": [
"http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest"
]
},
"medicationCodeableConcept": {
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "6064",
"display": "Isotretinoin 20 MG Oral Capsule"
},
{
"system": "http://hl7.org/fhir/sid/ndc",
"code": "0245-0571-01"
}
]
},
"status": "active",
"intent": "order",
"subject": {
"reference": "Patient/pat018",
"display": "Violet Gartner"
},
"authoredOn": "2026-01-12",
"requester": {
"reference": "Practitioner/pra1234",
"display": "Jane Doe"
},
"reasonCode": [
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "88616000",
"display": "Severe acne"
}
],
"text": "Severe nodular acne"
}
],
"insurance": [
{
"reference": "Coverage/cov018"
}
],
"dosageInstruction": [
{
"sequence": 1,
"text": "40mg twice daily",
"timing": {
"repeat": {
"frequency": 2,
"period": 1,
"periodUnit": "d"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "Oral route (qualifier value)"
}
]
},
"doseAndRate": [
{
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
"code": "ordered",
"display": "Ordered"
}
]
},
"doseQuantity": {
"value": 40,
"unit": "mg",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"dispenseRequest": {
"quantity": {
"value": 60,
"system": "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm",
"code": "CAP"
},
"numberOfRepeatsAllowed": 3
},
"note": [
{
"text": "iPledge REMS program enrollment required for patient and prescriber. Patient counseling completed on pregnancy prevention and side effects."
}
]
}
Loading