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 Practitioner 1

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 Practitioner 1

  • Overview
  • XML
  • JSON
Practitioner
id : example-practitioner-ca-core
meta
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core
identifier
system : http://example.ca/NamingSystem/Practitioner
value : PR123456
active : True
name
text : Dr. Kiki Avery Bambrick
family : Bambrick
given : Kiki
given : Avery
telecom
system : phone
value : 604-555-1234
use : work
telecom
system : email
value : dr.smith@vgh.ca
use : work
address
line : 123 Main Street
city : Vancouver
state : BC
postalCode : V6B 1A1
country : CA
gender : female
birthDate : 1975-06-15
<Practitioner xmlns="http://hl7.org/fhir">
    <id value="example-practitioner-ca-core" />
    <meta>
        <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core" />
    </meta>
    <identifier>
        <system value="http://example.ca/NamingSystem/Practitioner" />
        <value value="PR123456" />
    </identifier>
    <active value="true" />
    <name>
        <text value="Dr. Kiki Avery Bambrick" />
        <family value="Bambrick" />
        <given value="Kiki" />
        <given value="Avery" />
    </name>
    <telecom>
        <system value="phone" />
        <value value="604-555-1234" />
        <use value="work" />
    </telecom>
    <telecom>
        <system value="email" />
        <value value="dr.smith@vgh.ca" />
        <use value="work" />
    </telecom>
    <address>
        <line value="123 Main Street" />
        <city value="Vancouver" />
        <state value="BC" />
        <postalCode value="V6B 1A1" />
        <country value="CA" />
    </address>
    <gender value="female" />
    <birthDate value="1975-06-15" />
</Practitioner>
{
    "resourceType": "Practitioner",
    "id": "example-practitioner-ca-core",
    "meta": {
        "profile":  [
            "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core"
        ]
    },
    "identifier":  [
        {
            "system": "http://example.ca/NamingSystem/Practitioner",
            "value": "PR123456"
        }
    ],
    "active": true,
    "name":  [
        {
            "text": "Dr. Kiki Avery Bambrick",
            "family": "Bambrick",
            "given":  [
                "Kiki",
                "Avery"
            ]
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "604-555-1234",
            "use": "work"
        },
        {
            "system": "email",
            "value": "dr.smith@vgh.ca",
            "use": "work"
        }
    ],
    "address":  [
        {
            "line":  [
                "123 Main Street"
            ],
            "city": "Vancouver",
            "state": "BC",
            "postalCode": "V6B 1A1",
            "country": "CA"
        }
    ],
    "gender": "female",
    "birthDate": "1975-06-15"
}

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