showing results for - "sample data schema for patient record json format"
Michela
04 Feb 2016
1{
2  "resourceType": "Patient",
3  "id": "example",
4  "text": {
5    "status": "generated",
6    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n\t\t\t<table>\n\t\t\t\t<tbody>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td>Name</td>\n\t\t\t\t\t\t<td>Peter James \n              <b>Chalmers</b> ("Jim")\n            </td>\n\t\t\t\t\t</tr>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td>Address</td>\n\t\t\t\t\t\t<td>534 Erewhon, Pleasantville, Vic, 3999</td>\n\t\t\t\t\t</tr>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td>Contacts</td>\n\t\t\t\t\t\t<td>Home: unknown. Work: (03) 5555 6473</td>\n\t\t\t\t\t</tr>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td>Id</td>\n\t\t\t\t\t\t<td>MRN: 12345 (Acme Healthcare)</td>\n\t\t\t\t\t</tr>\n\t\t\t\t</tbody>\n\t\t\t</table>\n\t\t</div>"
7  },
8  "identifier": [
9    {
10      "use": "usual",
11      "type": {
12        "coding": [
13          {
14            "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
15            "code": "MR"
16          }
17        ]
18      },
19      "system": "urn:oid:1.2.36.146.595.217.0.1",
20      "value": "12345",
21      "period": {
22        "start": "2001-05-06"
23      },
24      "assigner": {
25        "display": "Acme Healthcare"
26      }
27    }
28  ],
29  "active": true,
30  "name": [
31    {
32      "use": "official",
33      "family": "Chalmers",
34      "given": [
35        "Peter",
36        "James"
37      ]
38    },
39    {
40      "use": "usual",
41      "given": [
42        "Jim"
43      ]
44    },
45    {
46      "use": "maiden",
47      "family": "Windsor",
48      "given": [
49        "Peter",
50        "James"
51      ],
52      "period": {
53        "end": "2002"
54      }
55    }
56  ],
57  "telecom": [
58    {
59      "use": "home"
60    },
61    {
62      "system": "phone",
63      "value": "(03) 5555 6473",
64      "use": "work",
65      "rank": 1
66    },
67    {
68      "system": "phone",
69      "value": "(03) 3410 5613",
70      "use": "mobile",
71      "rank": 2
72    },
73    {
74      "system": "phone",
75      "value": "(03) 5555 8834",
76      "use": "old",
77      "period": {
78        "end": "2014"
79      }
80    }
81  ],
82  "gender": "male",
83  "birthDate": "1974-12-25",
84  "_birthDate": {
85    "extension": [
86      {
87        "url": "http://hl7.org/fhir/StructureDefinition/patient-birthTime",
88        "valueDateTime": "1974-12-25T14:35:45-05:00"
89      }
90    ]
91  },
92  "deceasedBoolean": false,
93  "address": [
94    {
95      "use": "home",
96      "type": "both",
97      "text": "534 Erewhon St PeasantVille, Rainbow, Vic  3999",
98      "line": [
99        "534 Erewhon St"
100      ],
101      "city": "PleasantVille",
102      "district": "Rainbow",
103      "state": "Vic",
104      "postalCode": "3999",
105      "period": {
106        "start": "1974-12-25"
107      }
108    }
109  ],
110  "contact": [
111    {
112      "relationship": [
113        {
114          "coding": [
115            {
116              "system": "http://terminology.hl7.org/CodeSystem/v2-0131",
117              "code": "N"
118            }
119          ]
120        }
121      ],
122      "name": {
123        "family": "du Marché",
124        "_family": {
125          "extension": [
126            {
127              "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
128              "valueString": "VV"
129            }
130          ]
131        },
132        "given": [
133          "Bénédicte"
134        ]
135      },
136      "telecom": [
137        {
138          "system": "phone",
139          "value": "+33 (237) 998327"
140        }
141      ],
142      "address": {
143        "use": "home",
144        "type": "both",
145        "line": [
146          "534 Erewhon St"
147        ],
148        "city": "PleasantVille",
149        "district": "Rainbow",
150        "state": "Vic",
151        "postalCode": "3999",
152        "period": {
153          "start": "1974-12-25"
154        }
155      },
156      "gender": "female",
157      "period": {
158        "start": "2012"
159      }
160    }
161  ],
162  "managingOrganization": {
163    "reference": "Organization/1"
164  }
165}
166