1{ 2 "resourceType": "Patient", 3 "id": "patient-1", 4 "active": true, 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": "10001" 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.I3JK" 28 } 29 ], 30 "name": [ 31 { 32 "use": "usual", 33 "text": "Anne Example", 34 "family": "Example", 35 "given": [ 36 "Anne" 37 ] 38 }, 39 { 40 "use": "maiden", 41 "text": "Anne Onymous", 42 "family": "Onymous", 43 "given": [ 44 "Anne" 45 ] 46 } 47 ], 48 "telecom": [ 49 { 50 "system": "phone", 51 "value": "+447111111111", 52 "use": "mobile" 53 }, 54 { 55 "system": "phone", 56 "value": "+441111222222", 57 "use": "home" 58 }, 59 { 60 "system": "email", 61 "value": "anne.example@gmail.com", 62 "rank": 1 63 } 64 ], 65 "gender": "female", 66 "birthDate": "1970-05-01", 67 "deceasedBoolean": false, 68 "address": [ 69 { 70 "use": "home", 71 "line": [ 72 "1 Imaginary Lane" 73 ], 74 "city": "London", 75 "postalCode": "N12 3AB", 76 "country": "UK", 77 "period": { 78 "start": "2015-02-18" 79 } 80 } 81 ], 82 "maritalStatus": { 83 "coding": [ 84 { 85 "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", 86 "code": "M", 87 "display": "Married" 88 } 89 ], 90 "text": "Married" 91 }, 92 "communication": [ 93 { 94 "language": { 95 "coding": [ 96 { 97 "system": "urn:ietf:bcp:47", 98 "code": "en", 99 "display": "English" 100 } 101 ], 102 "text": "English" 103 }, 104 "preferred": true 105 } 106 ], 107 "generalPractitioner": [ 108 { 109 "reference": "Practitioner/practitioner-1", 110 "type": "Practitioner", 111 "display": "Dr Maria Hernandez" 112 } 113 ], 114 "managingOrganization": { 115 "reference": "Organization/organization-1", 116 "display": "Health Connect General Practice" 117 } 118}