diff --git a/README.md b/README.md index 1f404bc..09b3727 100644 --- a/README.md +++ b/README.md @@ -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. + +
+NOTICE +
+ +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. + +
+©2025 The MITRE Corporation. +
+ +
+ +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. + diff --git a/fhirResourcesToLoad/0. pharmacy.json b/fhirResourcesToLoad/0. pharmacy.json new file mode 100644 index 0000000..45ae8ef --- /dev/null +++ b/fhirResourcesToLoad/0. pharmacy.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/fhirResourcesToLoad/7. pharmacy-location.json b/fhirResourcesToLoad/7. pharmacy-location.json new file mode 100644 index 0000000..d5d65fd --- /dev/null +++ b/fhirResourcesToLoad/7. pharmacy-location.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/fhirResourcesToLoad/8.pharmacy-2.json b/fhirResourcesToLoad/8.pharmacy-2.json new file mode 100644 index 0000000..16b3536 --- /dev/null +++ b/fhirResourcesToLoad/8.pharmacy-2.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/fhirResourcesToLoad/9. pharmacy-location-2.json b/fhirResourcesToLoad/9. pharmacy-location-2.json new file mode 100644 index 0000000..b7cc8cb --- /dev/null +++ b/fhirResourcesToLoad/9. pharmacy-location-2.json @@ -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" + } + ] +} \ No newline at end of file