Skip to content

Commit 83de645

Browse files
committed
add second pharmacy for show casing non registered pharmacy
1 parent 12e8297 commit 83de645

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"resourceType": "HealthcareService",
3+
"id": "pharm4321",
4+
"active": true,
5+
"name": "Test Pharmacy #2",
6+
"category": [
7+
{
8+
"coding": [
9+
{
10+
"system": "http://terminology.hl7.org/CodeSystem/service-category",
11+
"code": "12",
12+
"display": "Drug/Alcohol"
13+
}
14+
]
15+
}
16+
],
17+
"type": [
18+
{
19+
"coding": [
20+
{
21+
"system": "http://terminology.hl7.org/CodeSystem/service-type",
22+
"code": "64",
23+
"display": "Pharmacy"
24+
}
25+
]
26+
}
27+
],
28+
"location": [
29+
{
30+
"reference": "Location/pharm-location-001",
31+
"display": "561 Street Road, Anytown, CA 12345"
32+
}
33+
]
34+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"resourceType": "Location",
3+
"id": "pharm-location-001",
4+
"status": "active",
5+
"name": "Test Pharmacy - Secondary Location",
6+
"description": "Secondary location for Test Pharmacy providing community pharmacy services",
7+
"mode": "instance",
8+
"address": {
9+
"use": "work",
10+
"type": "physical",
11+
"line": [
12+
"561 Street Road"
13+
],
14+
"city": "Anytown",
15+
"state": "CA",
16+
"postalCode": "12345",
17+
"country": "US"
18+
},
19+
"telecom": [
20+
{
21+
"system": "phone",
22+
"value": "+1-555-123-4567",
23+
"use": "work"
24+
},
25+
{
26+
"system": "email",
27+
"value": "info@testpharmacy.com",
28+
"use": "work"
29+
}
30+
]
31+
}

0 commit comments

Comments
 (0)