Skip to content

Commit 765deb2

Browse files
authored
Merge pull request #83 from mcode/dev
Dev
2 parents ca4a6b9 + fe28762 commit 765deb2

File tree

2 files changed

+204
-24
lines changed

2 files changed

+204
-24
lines changed
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"resourceType": "Practitioner",
3+
"id": "pra5678",
4+
"meta": {
5+
"profile": [
6+
"http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner"
7+
]
8+
},
9+
"identifier": [
10+
{
11+
"system": "http://hl7.org/fhir/sid/us-npi",
12+
"value": "66778899990"
13+
},
14+
{
15+
"type": {
16+
"coding": [
17+
{
18+
"system": "http://terminology.hl7.org/3.1.0/CodeSystem-v2-0203",
19+
"code": "RN"
20+
21+
}
22+
]
23+
},
24+
"value": "4737282994"
25+
}
26+
],
27+
"address": [
28+
{
29+
"use": "home",
30+
"type": "both",
31+
"state": "NY",
32+
"city": "Buffalo",
33+
"postalCode": "14210",
34+
"line": ["642 Seneca St"]
35+
}
36+
],
37+
"telecom": [
38+
{
39+
"system": "phone",
40+
"value": "555-873-5678",
41+
"rank": 1
42+
},
43+
{
44+
"system": "email",
45+
"value": "alice.nurse@myhospital.com",
46+
"rank": 2
47+
},
48+
{
49+
"system": "fax",
50+
"value": "555-123-4567",
51+
"rank": 3
52+
}
53+
],
54+
"name": [
55+
{
56+
"use": "official",
57+
"family": "Nurse",
58+
"given": ["Alice"]
59+
}
60+
]
61+
}

0 commit comments

Comments
 (0)