• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "resourceType": "Patient",
3  "id": "patient-2",
4  "active": false,
5  "identifier": [
6    {
7      "use": "usual",
8      "type": {
9        "coding": [
10          {
11            "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
12            "code": "MR",
13            "display": "Medical record number"
14          }
15        ],
16        "text": "Health Connect Hospital MRN"
17      },
18      "system": "urn:oid:1.2.345.6789",
19      "value": "10002"
20    },
21    {
22      "use": "usual",
23      "type": {
24        "text": "FHIR"
25      },
26      "system": "http://example.ehr.com/FHIR/StructureDefinition/patient-r4-fhir-id",
27      "value": "aB1c.d2EFGH.I3JK4"
28    }
29  ],
30  "link": [
31    {
32      "other": {
33        "reference": "Patient/patient-1",
34        "display": "Example, Anne"
35      },
36      "type": "replaced-by"
37    }
38  ],
39  "name": [
40    {
41      "use": "usual",
42      "text": "Anne Onymous",
43      "family": "Onymous",
44      "given": [
45        "Anne"
46      ]
47    }
48  ],
49  "telecom": [
50    {
51      "system": "phone",
52      "value": "+447111111111",
53      "use": "mobile"
54    },
55    {
56      "system": "phone",
57      "value": "+441111222222",
58      "use": "home"
59    },
60    {
61      "system": "email",
62      "value": "anne.onymous@gmail.com",
63      "rank": 1
64    }
65  ],
66  "gender": "female",
67  "birthDate": "1970-05-01",
68  "deceasedBoolean": false,
69  "address": [
70    {
71      "use": "home",
72      "line": [
73        "1 Imaginary Lane"
74      ],
75      "city": "London",
76      "postalCode": "N12 3AB",
77      "country": "UK",
78      "period": {
79        "start": "2015-02-18"
80      }
81    }
82  ],
83  "maritalStatus": {
84    "coding": [
85      {
86        "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
87        "code": "S",
88        "display": "Never Married"
89      }
90    ],
91    "text": "Married"
92  },
93  "communication": [
94    {
95      "language": {
96        "coding": [
97          {
98            "system": "urn:ietf:bcp:47",
99            "code": "en",
100            "display": "English"
101          }
102        ],
103        "text": "English"
104      },
105      "preferred": true
106    }
107  ],
108  "generalPractitioner": [
109    {
110      "reference": "Practitioner/practitioner-1",
111      "type": "Practitioner",
112      "display": "Dr Maria Hernandez"
113    }
114  ],
115  "managingOrganization": {
116    "reference": "Organization/organization-1",
117    "display": "Health Connect General Practice"
118  }
119}