--- tags: EBM --- # FHIR Patient example ```json { "resourceType": "Patient", "text": { "status": "generated", "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">none</div>" }, "identifier": [ { "type": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "NI" } ] }, "system": "http://www.moi.gov.tw/", "value": "A123456789" }, { "type": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR" } ] }, "system": "https://www.cgmh.org.tw", "value": "MEDREQ_123_CGMH" } ], "active": true, "name": [ { "use": "official", "text": "1", "family": "2", "given": [ "3" ] } ], "telecom": [ { "system": "phone", "value": "0989678473", "use": "home" }, { "system": "email", "value": "kamsung@company.com", "use": "home" }, { "system": "url", "value": "https://line.me/ti/p/OiIWZNnCeu", "use": "home" } ], "gender": "male", "birthDate": "1999-01-11", "deceasedBoolean": false, "address": [ { "text": "123", "line": [ "123" ], "city": "桃園縣", "district": "龜山鄉", "postalCode": "333", "country": "TW" } ], "contact": [ { "relationship": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v2-0131", "code": "N" } ], "text": "Next-of-Kin" } ], "name": { "use": "official", "text": "123", "family": "1", "given": [ "23" ] }, "telecom": [ { "system": "phone", "value": "0987654321", "use": "home" } ] } ], "managingOrganization": { "reference": "Organization/MITW.ForIdentifier" } } ```