Skip to content
Merged

Dev #90

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
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,36 @@ The `launchId` is a unique ID which lets the SMART app maintain its state throug
| `/test-ehr/r4` | EHR FHIR Server endpoint (will not resolve in browser) |
| `/test-ehr/script/rxfill` | NCPDP SCRIPT endpoint that RxFill messages from the pharmacy can be sent to (will not resolve in browser) |
| `/_services/smart/Launch` | SMART on FHIR endpoint which produces a launch ID for SMART apps to use when launching |

# Data Rights
This repository has been forked from the [HL7-DaVinci/test-ehr](https://github.com/HL7-DaVinci/test-ehr) repository. As such, the following data rights apply to all changes made on this fork of the repository, starting with release 0.1 and onward.

<div style="text-align:center">
<b>NOTICE</b>
</div>

This (software/technical data) was produced for the U. S. Government under Contract Number 75FCMC18D0047/75FCMC23D0004, and is subject to Federal Acquisition Regulation Clause 52.227-14, Rights in Data-General.


No other use other than that granted to the U. S. Government, or to those acting on behalf of the U. S. Government under that Clause is authorized without the express written permission of The MITRE Corporation.


For further information, please contact The MITRE Corporation, Contracts Management Office, 7515 Colshire Drive, McLean, VA 22102-7539, (703) 983-6000.

<div style="text-align:center">
<b>&copy;2025 The MITRE Corporation.</b>
</div>

<br />

Licensed under the Apache License, Version 2.0 (the "License"); use of this repository is permitted in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

34 changes: 34 additions & 0 deletions fhirResourcesToLoad/0. pharmacy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"resourceType": "HealthcareService",
"id": "pharm0111",
"active": true,
"name": "Test Pharmacy",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/service-category",
"code": "12",
"display": "Drug/Alcohol"
}
]
}
],
"type": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/service-type",
"code": "64",
"display": "Pharmacy"
}
]
}
],
"location": [
{
"reference": "Location/pharm-location-001",
"display": "123 Main Street, Anytown, CA 12345"
}
]
}
31 changes: 31 additions & 0 deletions fhirResourcesToLoad/7. pharmacy-location.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"resourceType": "Location",
"id": "pharm-location-001",
"status": "active",
"name": "Test Pharmacy - Main Location",
"description": "Main location for Test Pharmacy providing community pharmacy services",
"mode": "instance",
"address": {
"use": "work",
"type": "physical",
"line": [
"123 Main Street"
],
"city": "Anytown",
"state": "CA",
"postalCode": "12345",
"country": "US"
},
"telecom": [
{
"system": "phone",
"value": "+1-555-123-4567",
"use": "work"
},
{
"system": "email",
"value": "info@testpharmacy.com",
"use": "work"
}
]
}
34 changes: 34 additions & 0 deletions fhirResourcesToLoad/8.pharmacy-2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"resourceType": "HealthcareService",
"id": "pharm4321",
"active": true,
"name": "Test Pharmacy #2",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/service-category",
"code": "12",
"display": "Drug/Alcohol"
}
]
}
],
"type": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/service-type",
"code": "64",
"display": "Pharmacy"
}
]
}
],
"location": [
{
"reference": "Location/pharm-location-001",
"display": "561 Street Road, Anytown, CA 12345"
}
]
}
31 changes: 31 additions & 0 deletions fhirResourcesToLoad/9. pharmacy-location-2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"resourceType": "Location",
"id": "pharm-location-001",
"status": "active",
"name": "Test Pharmacy - Secondary Location",
"description": "Secondary location for Test Pharmacy providing community pharmacy services",
"mode": "instance",
"address": {
"use": "work",
"type": "physical",
"line": [
"561 Street Road"
],
"city": "Anytown",
"state": "CA",
"postalCode": "12345",
"country": "US"
},
"telecom": [
{
"system": "phone",
"value": "+1-555-123-4567",
"use": "work"
},
{
"system": "email",
"value": "info@testpharmacy.com",
"use": "work"
}
]
}
Loading