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
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" } } ] }