first | last |
---|---|
Amy | Baba |
This is a structured view of this patient:
Patient |
id : ACME-use-case-patient-VALID |
meta |
profile : https://fake-acme.org/fhir/StructureDefinition/ACMEUseCasePatient |
extension |
url : http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex |
value : F |
identifier |
use : usual |
type |
coding |
system : http://terminology.hl7.org/CodeSystem/v2-0203 |
code : MR |
display : Medical Record Number |
text : Medical Record Number |
system : http://hospital.smarthealthit.org |
value : 1032702 |
identifier |
use : usual |
system : https://fake-acme.org/fhir/NamingSystem/Patient-Identifier |
value : 1032702 |
active : True |
name |
family : Baba |
given : Amy |
given : K. |
telecom |
system : phone |
value : 555-555-5555 |
use : home |
telecom |
system : email |
value : amy.shaw@example.com |
gender : female |
birthDate : 2007-02-20 |
address |
line : 49 Meadow St |
city : Mounds |
state : OK |
postalCode : 74047 |
country : US |
<Patient xmlns="http://hl7.org/fhir"> <id value="ACME-use-case-patient-VALID" /> <meta> <profile value="https://fake-acme.org/fhir/StructureDefinition/ACMEUseCasePatient" /> </meta> <extension url="http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex"> <valueCode value="F" /> </extension> <identifier> <use value="usual" /> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/v2-0203" /> <code value="MR" /> <display value="Medical Record Number" /> </coding> <text value="Medical Record Number" /> </type> <system value="http://hospital.smarthealthit.org" /> <value value="1032702" /> </identifier> <identifier> <use value="usual" /> <system value="https://fake-acme.org/fhir/NamingSystem/Patient-Identifier" /> <value value="1032702" /> </identifier> <active value="true" /> <name> <family value="Baba" /> <given value="Amy" /> <given value="K." /> </name> <telecom> <system value="phone" /> <value value="555-555-5555" /> <use value="home" /> </telecom> <telecom> <system value="email" /> <value value="amy.shaw@example.com" /> </telecom> <gender value="female" /> <birthDate value="2007-02-20" /> <address> <line value="49 Meadow St" /> <city value="Mounds" /> <state value="OK" /> <postalCode value="74047" /> <country value="US" /> </address> </Patient>
{ "resourceType": "Patient", "id": "ACME-use-case-patient-VALID", "meta": { "profile": [ "https://fake-acme.org/fhir/StructureDefinition/ACMEUseCasePatient" ] }, "extension": [ { "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", "valueCode": "F" } ], "identifier": [ { "use": "usual", "type": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number" } ], "text": "Medical Record Number" }, "system": "http://hospital.smarthealthit.org", "value": "1032702" }, { "use": "usual", "system": "https://fake-acme.org/fhir/NamingSystem/Patient-Identifier", "value": "1032702" } ], "active": true, "name": [ { "family": "Baba", "given": [ "Amy", "K." ] } ], "telecom": [ { "system": "phone", "value": "555-555-5555", "use": "home" }, { "system": "email", "value": "amy.shaw@example.com" } ], "gender": "female", "birthDate": "2007-02-20", "address": [ { "line": [ "49 Meadow St" ], "city": "Mounds", "state": "OK", "postalCode": "74047", "country": "US" } ] }
Powered by SIMPLIFIER.NET