FHIR Patient

The following is a description of a Patient that can be submitted to the Community of Information Exchange. For detailed information please visit the HL7 FHIR page http://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-patient.html

Operations

The following are operations that can be performed and links to

  • Submit a new FHIR patient

  • Get a FHIR patient by patient id

Sample Object

{ "resourceType": "Patient", "active": true, "name": [ { "use": "official", "family": "LastName", "given": [ "FirstName", "MiddleName" ], "text": "FirstName MiddleName LastName" } ], "birthDate": "", "gender": "", "communication": [ { "language": 'en', "preferred": true } ] "telecom": [ { "system": "phone", "value": "555-555-2003", "use": "work", "rank": 1 // 1 is preferred, 2 is all others }, { "system": "email", "value": "dua@lipa.com", "use": "home" "rank": 1 // 1 is preferred, 2 is all others } ], "gender": "female", "birthDate": "1973-05-31", "address": [ { "use": "home", "line": [ "2222 Home Street" ] } ], "managingOrganization": { "reference": "Organization/7" }, "extension": [ { "url": "cie.com/communication-preference", "valueString": "Email" }, { "url": "cie.com/race-ethnicity", "valueString": "Text" }, { "url": "cie.com/vetern-status", "valueBoolean": true }, { "url": "cie.com/primary-source-income", "valueString": }, { "url": "cie.com/combined-household-income", "valueString": }, ] }