Scheduling, published by IHE IT Infrastructure Technical Committee. This guide is not an authorized publication; it is the continuous build for version 1.0.0-current built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/IHE/ITI.Scheduling/ and changes regularly. See the Directory of published versions
: Example appointment with Dr. Y - TTL Representation
Raw ttl | Download
@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 -------------------------------------------------------------------
a fhir:Appointment ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "appt1-1"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://profiles.ihe.net/ITI/Scheduling/StructureDefinition/ihe-sched-appt"^^xsd:anyURI ;
fhir:link <https://profiles.ihe.net/ITI/Scheduling/StructureDefinition/ihe-sched-appt> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Appointment appt1-1</b></p><a name=\"appt1-1\"> </a><a name=\"hcappt1-1\"> </a><a name=\"appt1-1-en-US\"> </a><p><b>status</b>: Booked</p><p><b>serviceType</b>: <span title=\"Codes:{http://snomed.info/sct 185389009}\">Office Call</span></p><p><b>appointmentType</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v2-0276 ROUTINE}\">Routine</span></p><p><b>start</b>: 2025-03-17 00:45:00+0000</p><p><b>end</b>: 2025-03-17 01:00:00+0000</p><blockquote><p><b>participant</b></p><p><b>actor</b>: <a href=\"Practitioner-dr-y.html\">Dr Y</a></p><p><b>required</b>: Required</p><p><b>status</b>: Accepted</p></blockquote><blockquote><p><b>participant</b></p><p><b>actor</b>: Napa Office</p><p><b>required</b>: Required</p><p><b>status</b>: Accepted</p></blockquote><blockquote><p><b>participant</b></p><p><b>actor</b>: <a href=\"Patient-pat1.html\">Meiko Lufhir Jr., PhD</a></p><p><b>required</b>: Required</p><p><b>status</b>: Accepted</p></blockquote><p><b>requestedPeriod</b>: 2024-03-15 20:00:00+0000 --> 2024-03-22 20:00:00+0000</p></div>"
] ; #
fhir:status [ fhir:v "booked"] ; #
fhir:serviceType ( [
( fhir:coding [
a sct:185389009 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "185389009" ] ;
fhir:display [ fhir:v "Follow-up visit" ] ] ) ;
fhir:text [ fhir:v "Office Call" ]
] ) ; #
fhir:appointmentType [
( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0276"^^xsd:anyURI ] ;
fhir:code [ fhir:v "ROUTINE" ] ] ) ;
fhir:text [ fhir:v "Routine" ]
] ; #
fhir:start [ fhir:v "2025-03-17T00:45:00Z"^^xsd:dateTime] ; #
fhir:end [ fhir:v "2025-03-17T01:00:00Z"^^xsd:dateTime] ; #
fhir:participant ( [
fhir:actor [
fhir:reference [ fhir:v "Practitioner/dr-y" ] ;
fhir:display [ fhir:v "Dr Y" ] ] ;
fhir:required [ fhir:v "required" ] ;
fhir:status [ fhir:v "accepted" ]
] [
fhir:actor [
fhir:display [ fhir:v "Napa Office" ] ] ;
fhir:required [ fhir:v "required" ] ;
fhir:status [ fhir:v "accepted" ]
] [
fhir:actor [
fhir:reference [ fhir:v "Patient/pat1" ] ;
fhir:display [ fhir:v "Meiko Lufhir Jr., PhD" ] ] ;
fhir:required [ fhir:v "required" ] ;
fhir:status [ fhir:v "accepted" ]
] ) ; #
fhir:requestedPeriod ( [
fhir:start [ fhir:v "2024-03-15T20:00:00Z"^^xsd:dateTime ] ;
fhir:end [ fhir:v "2024-03-22T20:00:00Z"^^xsd:dateTime ]
] ) . #