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 Task

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 Task

  • Overview
  • XML
  • JSON
Task
id : example-task-ca-core
meta
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/task-ca-core
extension
url : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/task-ext-PatientNeedsToBeSeen
value : True
identifier
system : http://example.ca/NamingSystem/Task
value : TASK123456
basedOn
reference : ServiceRequest/example-servicerequest-ca-core
status : requested
businessStatus
extension
url : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/task-business-status-reason-EXT
value
coding
system : http://fhir.infoway-inforoute.ca/io/cacore/CodeSystem/task-business-status
code : PEN
display : Pending
coding
system : http://snomed.info/sct
code : 385651009
display : In progress (qualifier value)
intent : order
code
coding
system : http://hl7.org/fhir/CodeSystem/task-code
code : fulfill
display : Fulfill the focal request
description : Schedule CT Chest procedure for patient
focus
reference : Patient/example-patient-ca-core
authoredOn : 2024-03-27T09:00:00-07:00
owner
reference : PractitionerRole/example-practitionerrole-ca-core-3
location
reference : Location/example-location-ca-core
output
type
text : Scheduled Procedure
value
reference : Procedure/example-procedure-ca-core
<Task xmlns="http://hl7.org/fhir">
    <id value="example-task-ca-core" />
    <meta>
        <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/task-ca-core" />
    </meta>
    <extension url="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/task-ext-PatientNeedsToBeSeen">
        <valueBoolean value="true" />
    </extension>
    <identifier>
        <system value="http://example.ca/NamingSystem/Task" />
        <value value="TASK123456" />
    </identifier>
    <basedOn>
        <reference value="ServiceRequest/example-servicerequest-ca-core" />
    </basedOn>
    <status value="requested" />
    <businessStatus>
        <extension url="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/task-business-status-reason-EXT">
            <valueCodeableConcept>
                <coding>
                    <system value="http://fhir.infoway-inforoute.ca/io/cacore/CodeSystem/task-business-status" />
                    <code value="PEN" />
                    <display value="Pending" />
                </coding>
            </valueCodeableConcept>
        </extension>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="385651009" />
            <display value="In progress (qualifier value)" />
        </coding>
    </businessStatus>
    <intent value="order" />
    <code>
        <coding>
            <system value="http://hl7.org/fhir/CodeSystem/task-code" />
            <code value="fulfill" />
            <display value="Fulfill the focal request" />
        </coding>
    </code>
    <description value="Schedule CT Chest procedure for patient" />
    <focus>
        <reference value="Patient/example-patient-ca-core" />
    </focus>
    <authoredOn value="2024-03-27T09:00:00-07:00" />
    <owner>
        <reference value="PractitionerRole/example-practitionerrole-ca-core-3" />
    </owner>
    <location>
        <reference value="Location/example-location-ca-core" />
    </location>
    <output>
        <type>
            <text value="Scheduled Procedure" />
        </type>
        <valueReference>
            <reference value="Procedure/example-procedure-ca-core" />
        </valueReference>
    </output>
</Task>
{
    "resourceType": "Task",
    "id": "example-task-ca-core",
    "meta": {
        "profile":  [
            "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/task-ca-core"
        ]
    },
    "extension":  [
        {
            "url": "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/task-ext-PatientNeedsToBeSeen",
            "valueBoolean": true
        }
    ],
    "identifier":  [
        {
            "system": "http://example.ca/NamingSystem/Task",
            "value": "TASK123456"
        }
    ],
    "basedOn":  [
        {
            "reference": "ServiceRequest/example-servicerequest-ca-core"
        }
    ],
    "status": "requested",
    "businessStatus": {
        "extension":  [
            {
                "url": "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/task-business-status-reason-EXT",
                "valueCodeableConcept": {
                    "coding":  [
                        {
                            "system": "http://fhir.infoway-inforoute.ca/io/cacore/CodeSystem/task-business-status",
                            "code": "PEN",
                            "display": "Pending"
                        }
                    ]
                }
            }
        ],
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "385651009",
                "display": "In progress (qualifier value)"
            }
        ]
    },
    "intent": "order",
    "code": {
        "coding":  [
            {
                "system": "http://hl7.org/fhir/CodeSystem/task-code",
                "code": "fulfill",
                "display": "Fulfill the focal request"
            }
        ]
    },
    "description": "Schedule CT Chest procedure for patient",
    "focus": {
        "reference": "Patient/example-patient-ca-core"
    },
    "authoredOn": "03/27/2024 16:00:00",
    "owner": {
        "reference": "PractitionerRole/example-practitionerrole-ca-core-3"
    },
    "location": {
        "reference": "Location/example-location-ca-core"
    },
    "output":  [
        {
            "type": {
                "text": "Scheduled Procedure"
            },
            "valueReference": {
                "reference": "Procedure/example-procedure-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