FHIR Patient Input
The Patient FHIR resource maps to the Patient objects in Salesforce. Patients are modeled using Person Accounts.
- JSON example
-
{ "active": true, "identifier": [ { "assigner": { "referenceResource": "Organization", "referenceId": "Org12345XYZ" }, "type": { "text": "Passport Number", "coding": [ { "display": "Passport number", "code": "PPN", "isActive": true, "use": "Identifier" } ] }, "value": "ABCD5678XYZ" } ], "name": [ { "use": "alias", "text": "Charles Green", "family": "Green", "given": "Charles", "prefix": "Mr.", "suffix": "Sr." } ], "communication": [ { "language": "English", "preferenceRank": 1 } ], "address": [ { "use": "temp", "type": "postal", "line": "Green Household" } ], "telecom": [ { "system": "email", "value": "a@bc.com" } ], "gender": "male", "birthDate": "2000-09-12T18:13:41Z", "maritalStatus": "married", "contact": [ { "relationship": { "coding": [ { "display": "Partner" } ] }, "name": { "use": "Temp", "text": "Shawna Green", "family": "Green", "given": "Shawna", "prefix": "Mrs.", "suffix": "Jr." }, "telecom": [ { "system": "email", "value": "c@de.com" }, { "system": "phone", "value": "12345678", "use": "temp", "rank": 1 } ], "address": { "use": "temp", "type": "postal", "line": "Green Household" } } ], "generalPractitioner": [ { "referenceResource": "Practitioner", "referenceId": "PRAC789XYZ", "relationship": "Plastic Surgeon" } ], "managingOrganisation": { "referenceResource": "Organization", "referenceId": "MI9007GBE" } }
- Properties
-
Name Type Description Required or Optional Available Version active Boolean Indicates whether the patient record is active or not. Optional 53.0 additionalInformation Custom Field Value Input[] Adds additional information to any fields not mapped in this API. Optional 53.0 address FHIR Address Input[] The address of the patient. Optional 53.0 birthDate String The date of birth of the patient. Optional 53.0 communication Patient Communication Language Input[] The languages of communication associated with the patient. Optional 53.0 contact Contact Party For Patient Input[] The contact associated with the patient record, modeled as a person account. Contacts are connected to patients using the ContactContactRelation__c junction object. Optional 53.0 deceasedDateTime String The date and time of the patient’s death. Optional 53.0 gender String The gender of the patient. Optional 53.0 generalPractitioner FHIR Reference Input[] The practitioners associated with the patient, modeled as either person accounts or Contacts and HealthcareProvider records. Practitioners are connected to patients using the ContactContactRelation__c junction object. Optional 53.0 identifier FHIR Identifier Input[] The identifier information for the patient, stored as Identifier records that reference the patient record using their Identifier.ParentRecordId field. Optional 53.0 managingOrganisation FHIR Reference Input The organization that manages the patient record, referenced using a lookup to the Account object. Managing organizations are connected to patients using the AccountContactRelation junction object. Optional 53.0 maritalStatus String The current marital status of the patient. Optional 53.0 multipleBirthInteger Integer The birth order of the patient, in the event that the patient was a part of a multiple birth event. Optional 53.0 name FHIR Human Name Input[] The names of the patient, stored as a PersonName record. Optional 53.0 sourceSystemId String The source system ID associated with a patient record. Optional 53.0 telecom FHIR Contact Point Input[] Contact details of the patient, such as phone numbers and email addresses. These contact details are stored as ContactPointPhone records that reference the patient records using their ContactPointPhone.ParentId field. Optional 53.0