Visit the HL7 website
Visit the FHIR website

CA Core+ 1.0.0 DFT-preBallot

1.0.0-DFT-preBallot   Canada flag
  • Home
  • Business Context
    • Business Context
    • Relationship to PCHDCF
    • Relationship to Other Specifications
    • CA Core+ to pCHDCF Mapping
  • Technical Context
    • Technical Context
    • Artifact Status Summary
    • Profiling Conventions & Approach
    • General Guidance
    • Mapping Logic
    • Security And Privacy
  • Modules
    • Modules
    • Common Data Exchange
    • Workflows
  • FHIR Artifacts
    • FHIR Artifacts
    • Profiles
    • Extensions
    • Data Types
    • Terminology
    • Examples
    • Download
  • Change Log
    • Change Log
    • Specification Guidance
    • Copyrights
    • Known Issues & Future Development
    • Specification Feedback
    1. Home
    2. FHIR Artifacts
    3. Examples
    4. Example Person

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

  • Overview
  • XML
  • JSON
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"
            }
        }
    ]
}

Table of Contents | IG © based on FHIR R4 | Package package:ca.infoway.io.core@1.0.0-dft-preballot | Version History
HL7® and FHIR® are the registered trademarks of Health Level Seven International