Workflow
This
page
is
part
of
the
FHIR
Specification
(v4.3.0:
R4B
(v5.0.0:
R5
-
STU
).
The
This
is
the
current
published
version
which
supercedes
in
it's
permanent
home
(it
will
always
be
available
at
this
version
is
5.0.0
.
URL).
For
a
full
list
of
available
versions,
see
the
Directory
of
published
versions
.
Page
versions:
R5
R4B
R5
R4B
R4
R3
| Patient Administration Work Group | Maturity Level : N/A | Standards Status : Informative | Compartments : Device , Patient , Practitioner , RelatedPerson |
Raw Turtle (+ also see Turtle/RDF Format Specification )
Appointment between 2 doctors to discuss MRI results
@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 sct: <http://snomed.info/id/> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource -------------------------------------------------------------------<http://hl7.org/fhir/Appointment/2docs> a fhir:Appointment; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "2docs"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Brian MRI results discussion</div>" ]; fhir:Appointment.status [ fhir:value "booked"]; fhir:Appointment.serviceCategory [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://example.org/service-category" ]; fhir:Coding.code [ fhir:value "gp" ]; fhir:Coding.display [ fhir:value "General Practice" ] ] ]; fhir:Appointment.serviceType [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.code [ fhir:value "52" ]; fhir:Coding.display [ fhir:value "General Discussion" ] ] ]; fhir:Appointment.specialty [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; a sct:394814009; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "394814009" ]; fhir:Coding.display [ fhir:value "General practice" ] ] ]; fhir:Appointment.appointmentType [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0276" ]; fhir:Coding.code [ fhir:value "WALKIN" ]; fhir:Coding.display [ fhir:value "A previously unscheduled walk-in visit" ][a fhir:Appointment ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "2docs"] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Discussion of Peter's ultrasound results to plan ongoing treatment options</div>" ] ; # fhir:status [ fhir:v "booked"] ; # fhir:serviceCategory ( [ fhir:coding ( [ fhir:system [ fhir:v "http://example.org/service-category"^^xsd:anyURI ] ; fhir:code [ fhir:v "gp" ] ; fhir:display [ fhir:v "General Practice" ] ] ) ] ) ; # fhir:serviceType ( [ fhir:concept [ fhir:coding ( [ fhir:code [ fhir:v "52" ] ; fhir:display [ fhir:v "General Discussion" ] ] ) ]]; fhir:Appointment.priority [ fhir:value "5"^^xsd:nonNegativeInteger]; fhir:Appointment.description [ fhir:value "Discussion about Peter Chalmers MRI results"]; fhir:Appointment.supportingInformation [ fhir:index 0; fhir:link <http://hl7.org/fhir/DiagnosticReport/ultrasound>; fhir:Reference.reference [ fhir:value "DiagnosticReport/ultrasound" ] ]; fhir:Appointment.start [ fhir:value "2013-12-09T09:00:00Z"^^xsd:dateTime]; fhir:Appointment.end [ fhir:value "2013-12-09T11:00:00Z"^^xsd:dateTime]; fhir:Appointment.comment [ fhir:value "Clarify the results of the MRI to ensure context of test was correct"]; fhir:Appointment.participant [ fhir:index 0; fhir:Appointment.participant.actor [ fhir:link <http://hl7.org/fhir/Patient/example>; fhir:Reference.reference [ fhir:value "Patient/example" ]; fhir:Reference.display [ fhir:value "Peter James Chalmers" ] ]; fhir:Appointment.participant.required [ fhir:value "information-only" ]; fhir:Appointment.participant.status [ fhir:value "accepted" ] ], [ fhir:index 1; fhir:Appointment.participant.actor [ fhir:link <http://hl7.org/fhir/Practitioner/example>; fhir:Reference.reference [ fhir:value "Practitioner/example" ]; fhir:Reference.display [ fhir:value "Dr Adam Careful" ] ]; fhir:Appointment.participant.required [ fhir:value "required" ]; fhir:Appointment.participant.status [ fhir:value "accepted" ] ], [ fhir:index 2; fhir:Appointment.participant.actor [ fhir:link <http://hl7.org/fhir/Practitioner/f202>; fhir:Reference.reference [ fhir:value "Practitioner/f202" ]; fhir:Reference.display [ fhir:value "Luigi Maas" ] ]; fhir:Appointment.participant.required [ fhir:value "required" ]; fhir:Appointment.participant.status [ fhir:value "accepted" ] ], [ fhir:index 3; fhir:Appointment.participant.actor [ fhir:Reference.display [ fhir:value "Phone Call" ] ]; fhir:Appointment.participant.required [ fhir:value "information-only" ]; fhir:Appointment.participant.status [ fhir:value "accepted" ] ] . <http://hl7.org/fhir/DiagnosticReport/ultrasound> a fhir:DiagnosticReport . <http://hl7.org/fhir/Patient/example> a fhir:Patient . <http://hl7.org/fhir/Practitioner/example> a fhir:Practitioner . <http://hl7.org/fhir/Practitioner/f202> a fhir:Practitioner . # - ontology header ------------------------------------------------------------ <http://hl7.org/fhir/Appointment/2docs.ttl> a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI <http://build.fhir.org/Appointment/2docs.ttl> .] ) ; # fhir:specialty ( [ fhir:coding ( [ a sct:394814009 ; fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ; fhir:code [ fhir:v "394814009" ] ; fhir:display [ fhir:v "General practice" ] ] ) ] ) ; # fhir:appointmentType [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0276"^^xsd:anyURI ] ; fhir:code [ fhir:v "FOLLOWUP" ] ; fhir:display [ fhir:v "A follow up visit from a previous appointment" ] ] ) ] ; # fhir:description [ fhir:v "Discussion about Peter Chalmers ultrasound results"] ; # fhir:supportingInformation ( [ fhir:reference [ fhir:v "DiagnosticReport/ultrasound" ] ] ) ; # fhir:start [ fhir:v "2013-12-09T09:00:00Z"^^xsd:dateTime] ; # fhir:end [ fhir:v "2013-12-09T11:00:00Z"^^xsd:dateTime] ; # fhir:note ( [ fhir:text [ fhir:v "Clarify the results of the ultrasound to ensure context of test was correct" ] ] ) ; # fhir:subject [ fhir:reference [ fhir:v "Patient/example" ] ; fhir:display [ fhir:v "Peter James Chalmers" ] ] ; # fhir:participant ( [ fhir:actor [ fhir:reference [ fhir:v "Practitioner/example" ] ; fhir:display [ fhir:v "Dr Adam Careful" ] ] ; fhir:required [ fhir:v "true"^^xsd:boolean ] ; fhir:status [ fhir:v "accepted" ] ] [ fhir:actor [ fhir:reference [ fhir:v "Practitioner/f202" ] ; fhir:display [ fhir:v "Luigi Maas" ] ] ; fhir:required [ fhir:v "true"^^xsd:boolean ] ; fhir:status [ fhir:v "accepted" ] ] )] . # # -------------------------------------------------------------------------------------
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.
FHIR
®©
HL7.org
2011+.
FHIR
Release
4B
(v4.3.0)
hl7.fhir.r4b.core#4.3.0
R5
hl7.fhir.core#5.0.0
generated
on
Sat,
May
28,
2022
12:53+1000.
Sun,
Mar
26,
2023
15:24+1100.
Links:
Search
|
Version
History
|
Table
of
Contents
|
Glossary
|
QA
Page
|
Compare
to
R4
|
Compare
to
R4B
|
|
Propose
a
change