Draft preBallot - This specification is under preBallot review and subject to change. It should not be used for implementation purposes. . . . . For a full list of available versions, see the Directory of published versions
Example Person
Person |
id : example-person |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/person-ca-core |
identifier |
system : http://example.ca/NamingSystem/Person |
value : P123456789 |
identifier |
system : http://example.ca/NamingSystem/Person |
value : CAN123456789 |
name |
use : official |
family : Khan |
given : Amani |
given : L |
prefix : Mr |
telecom |
system : phone |
value : +1-555-555-5555 |
telecom |
system : email |
value : Amani.khan@example.com |
gender : male |
birthDate : 1980-01-01 |
extension |
url : http://hl7.org/fhir/StructureDefinition/patient-birthTime |
value : 1980-01-01T08:30:00Z |
address |
use : home |
type : physical |
line : 123 Main Street |
city : Medicine Hat |
state : AB |
postalCode : T1A 0A8 |
country : CA |
active : True |
link |
target |
reference : Patient/example-patient-ca-core |
<Person xmlns="http://hl7.org/fhir"> <id value="example-person" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/person-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/Person" /> <value value="P123456789" /> </identifier> <identifier> <system value="http://example.ca/NamingSystem/Person" /> <value value="CAN123456789" /> </identifier> <name> <use value="official" /> <family value="Khan" /> <given value="Amani" /> <given value="L" /> <prefix value="Mr" /> </name> <telecom> <system value="phone" /> <value value="+1-555-555-5555" /> </telecom> <telecom> <system value="email" /> <value value="Amani.khan@example.com" /> </telecom> <gender value="male" /> <birthDate value="1980-01-01"> <extension url="http://hl7.org/fhir/StructureDefinition/patient-birthTime"> <valueDateTime value="1980-01-01T08:30:00Z" /> </extension> </birthDate> <address> <use value="home" /> <type value="physical" /> <line value="123 Main Street" /> <city value="Medicine Hat" /> <state value="AB" /> <postalCode value="T1A 0A8" /> <country value="CA" /> </address> <active value="true" /> <link> <target> <reference value="Patient/example-patient-ca-core" /> </target> </link> </Person>
{ "resourceType": "Person", "id": "example-person", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/person-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/Person", "value": "P123456789" }, { "system": "http://example.ca/NamingSystem/Person", "value": "CAN123456789" } ], "name": [ { "use": "official", "family": "Khan", "given": [ "Amani", "L" ], "prefix": [ "Mr" ] } ], "telecom": [ { "system": "phone", "value": "+1-555-555-5555" }, { "system": "email", "value": "Amani.khan@example.com" } ], "gender": "male", "birthDate": "1980-01-01", "_birthDate": { "extension": [ { "url": "http://hl7.org/fhir/StructureDefinition/patient-birthTime", "valueDateTime": "01/01/1980 08:30:00" } ] }, "address": [ { "use": "home", "type": "physical", "line": [ "123 Main Street" ], "city": "Medicine Hat", "state": "AB", "postalCode": "T1A 0A8", "country": "CA" } ], "active": true, "link": [ { "target": { "reference": "Patient/example-patient-ca-core" } } ] }