This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example Schedule/example-hcs (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Example a Schedule resource for a service type defined with a reference to a HealthcareService
@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:Schedule ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example-hcs"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n Burgers UMC, Posttraumatic Stress Disorder Clinic\n </div>"
] ; #
fhir:active [ fhir:v "true"^^xsd:boolean] ; #
fhir:serviceCategory ( [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/service-category"^^xsd:anyURI ] ;
fhir:code [ fhir:v "8" ] ;
fhir:display [ fhir:v "Counselling" ]
] )
] ) ; #
fhir:serviceType ( [
fhir:reference [
fhir:reference [ fhir:v "HealthcareService/example" ] ;
fhir:display [ fhir:v "Burgers UMC, Posttraumatic Stress Disorder Clinic" ]
]
] ) ; #
fhir:specialty ( [
fhir:coding ( [
a sct:47505003 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "47505003" ] ;
fhir:display [ fhir:v "Posttraumatic stress disorder" ]
] )
] ) ; #
fhir:name [ fhir:v "Burgers UMC, Posttraumatic Stress Disorder counselling"] ; #
fhir:actor ( [
fhir:reference [ fhir:v "Location/1" ] ;
fhir:display [ fhir:v "Burgers UMC, South Wing, second floor" ]
] ) ; #
fhir:planningHorizon [
fhir:start [ fhir:v "2023-12-25T09:15:00Z"^^xsd:dateTime ] ;
fhir:end [ fhir:v "2023-12-25T09:30:00Z"^^xsd:dateTime ]
]] . #
# -------------------------------------------------------------------------------------
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.