This page is part of the FHIR Specification (v1.4.0: STU 3 Ballot 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions
. Page versions: R5 R4B R4 R3
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 xs: <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:Appointment.status [ fhir:value "booked"];
fhir:Appointment.serviceCategory [
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;
fhir:Coding.system [ fhir:value "http://example.org/specialty" ];
fhir:Coding.code [ fhir:value "gp" ];
fhir:Coding.display [ fhir:value "General Practice" ] ]
];
fhir:Appointment.appointmentType [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://example.org/appointment-type" ];
fhir:Coding.code [ fhir:value "wi" ];
fhir:Coding.display [ fhir:value "Walk in" ] ]
];
fhir:Appointment.priority [ fhir:value "5"^^xs:int];
fhir:Appointment.description [ fhir:value "Discussion about Peter Chalmers MRI results"];
fhir:Appointment.start [ fhir:value "2013-12-09T09:00:00Z"^^xs:dateTime];
fhir:Appointment.end [ fhir:value "2013-12-09T11:00:00Z"^^xs: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.actorReference [
fhir:reference <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:Appointment.participant [
fhir:index 1;
fhir:Appointment.participant.actorReference [
fhir:reference <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:Appointment.participant [
fhir:index 2;
fhir:Appointment.participant.actorReference [
fhir:reference <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:Appointment.participant [
fhir:index 3;
fhir:Appointment.participant.actorReference [
fhir:Reference.display [ fhir:value "Phone Call" ] ];
fhir:Appointment.participant.required [ fhir:value "information-only" ];
fhir:Appointment.participant.status [ fhir:value "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.