This page is part of the FHIR Specification v6.0.0-ballot2: Release 6 Ballot (2nd Draft) (see Ballot Notes). The current version is 5.0.0. For a full list of available versions, see the Directory of published versions 
Example Task/example6 (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Example of completed task for a lipid panel order
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[a fhir:Task ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example6"] ; # This is an example to demonstrate using task for actioning a servicerequest and to illustrate how to populate many of the task elements this is the first in a series of related Task examples: example1 action lipid panel -in progress =>. example2 specimen collection subtask -accepted => example4 specimen collection subtask - completed with output Specimen=>example 5 action lipid panel -in progress specimen collected with output Specimen => example 6 action lipid panel - completed with output Specimen and DiagnosticReport
fhir:identifier ( [
fhir:use [ fhir:v "official" ] ;
fhir:system [ fhir:v "http:/goodhealth.org/identifiers"^^xsd:anyURI ] ;
fhir:value [ fhir:v "20170201-001" ]
] ) ; #
fhir:basedOn ( [
fhir:display [ fhir:v "General Wellness Careplan" ]
] ) ; #
fhir:groupIdentifier [
fhir:use [ fhir:v "official" ] ;
fhir:system [ fhir:v "http:/goodhealth.org/accession/identifiers"^^xsd:anyURI ] ;
fhir:value [ fhir:v "G20170201-001" ]
] ; #
fhir:status [ fhir:v "completed"] ; #
fhir:businessStatus [
fhir:text [ fhir:v "test completed and posted" ]
] ; # fictive business status populated for this example
fhir:intent [ fhir:v "order"] ; #
fhir:priority [ fhir:v "routine"] ; #
fhir:code [
fhir:coding ( [
fhir:system [ fhir:v "http://hl7.org/fhir/CodeSystem/task-code"^^xsd:anyURI ] ;
fhir:code [ fhir:v "fulfill" ]
] )
] ; # fictive code and description elements populated for this example
fhir:description [ fhir:v "Create order for getting specimen, Set up inhouse testing, generate order for any sendouts and submit with specimen"] ; #
fhir:focus [
fhir:reference [ fhir:v "ServiceRequest/lipid" ] ;
fhir:display [ fhir:v "Lipid Panel Request" ]
] ; # Use the lipid servicerequest example
fhir:for [
fhir:reference [ fhir:v "Patient/example" ] ;
fhir:display [ fhir:v "Peter James Chalmers" ]
] ; # who the task is for
#
fhir:encounter [
fhir:reference [ fhir:v "Encounter/example" ] ;
fhir:display [ fhir:v "Example In-Patient Encounter" ]
] ; #
fhir:executionPeriod [
fhir:start [ fhir:v "2016-10-31T08:25:05+10:00"^^xsd:dateTime ] ;
fhir:end [ fhir:v "2016-10-31T18:45:05+10:00"^^xsd:dateTime ] # added completion date
] ; # Lots of dates
fhir:authoredOn [ fhir:v "2016-10-31T08:25:05+10:00"^^xsd:dateTime] ; #
fhir:lastModified [ fhir:v "2016-10-31T18:45:05+10:00"^^xsd:dateTime] ; # updated last modified date to track task activity
fhir:requester [
fhir:reference [ fhir:v "Practitioner/example" ] ;
fhir:display [ fhir:v "Dr Adam Careful" ]
] ; #
fhir:requestedPerformer ( [
fhir:reference [
fhir:reference [ fhir:v "PractitionerRole/f202" ]
]
] ) ; #
fhir:owner [
fhir:reference [ fhir:v "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f" ] ;
fhir:display [ fhir:v "Clinical Laboratory @ Acme Hospital" ]
] ; #
fhir:reason ( [
fhir:concept [
fhir:text [ fhir:v "The Task.reason should only be included if there is no Task.focus or if it differs from the reason indicated on the focus" ]
]
] ) ; # populate the reason just to demonstrate it use in this example
#
fhir:note ( [
fhir:text [ fhir:v "This is an example to demonstrate using task for actioning a servicerequest and to illustrate how to populate many of the task elements - this is the parent task that will be broken into subtask to grab the specimen and a sendout lab test" ]
] ) ; #
fhir:restriction [
fhir:repetitions [ fhir:v "1"^^xsd:positiveInteger ] ;
fhir:period [
fhir:end [ fhir:v "2016-11-02T09:45:05+10:00"^^xsd:dateTime ]
]
] ; # add the link to the signature on the task to show how this element is usedemonstrating in this example the relevant history element using a contained resource for the purpose of this example only typically would reference an external resource
#
# , complete the request within 48 hrs
#
fhir:output ( [
fhir:type [
fhir:text [ fhir:v "DiagnosticReport generated" ]
] ;
fhir:value [
a fhir:Reference ;
fhir:reference [ fhir:v "DiagnosticReport/lipids" ]
]
] [
fhir:type [
fhir:text [ fhir:v "collected specimen" ]
] ;
fhir:value [
a fhir:Reference ;
fhir:reference [ fhir:v "Specimen/101" ]
]
] )] . # The expected output of this task is a DiagnosticReport and Specimen
# -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the
examples are correct and useful, but they are not a normative part
of the specification.