@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/uv/smart-scheduling-links/Slot/ExampleSlot> a fhir:Slot ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleSlot"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/uv/smart-scheduling-links/StructureDefinition/smart-scheduling-slot"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/uv/smart-scheduling-links/StructureDefinition/smart-scheduling-slot>
     ] )
  ] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "extensions" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"><p class=\"res-header-id\"><b>Generated Narrative: Slot ExampleSlot</b></p><a name=\"ExampleSlot\"> </a><a name=\"hcExampleSlot\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Language: en</p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-smart-scheduling-slot.html\">Slot</a></p></div><p><b>Booking Deep Link</b>: <a href=\"https://ehr.example.org/booking/slots/123\">https://ehr.example.org/booking/slots/123</a></p><p><b>Booking Phone</b>: +1-555-123-4567</p><p><b>schedule</b>: <a href=\"Schedule-ExampleSchedule.html\">Schedule: serviceType = General Practice</a></p><p><b>status</b>: Free</p><p><b>start</b>: 2026-03-21 10:45:00-0400</p><p><b>end</b>: 2026-03-21 11:15:00-0400</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "http://hl7.org/fhir/uv/smart-scheduling-links/StructureDefinition/booking-deep-link"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/uv/smart-scheduling-links/StructureDefinition/booking-deep-link>
     ] ;
     fhir:value [
       a fhir:Url ;
       fhir:v "https://ehr.example.org/booking/slots/123"^^xsd:anyURI ;
       fhir:l <https://ehr.example.org/booking/slots/123>
     ]
  ] [
     fhir:url [
       fhir:v "http://hl7.org/fhir/uv/smart-scheduling-links/StructureDefinition/booking-phone"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/uv/smart-scheduling-links/StructureDefinition/booking-phone>
     ] ;
     fhir:value [
       a fhir:String ;
       fhir:v "+1-555-123-4567"
     ]
  ] ) ; # 
  fhir:schedule [
     fhir:l <http://hl7.org/fhir/uv/smart-scheduling-links/Schedule/ExampleSchedule> ;
     fhir:reference [ fhir:v "Schedule/ExampleSchedule" ]
  ] ; # 
  fhir:status [ fhir:v "free"] ; # 
  fhir:start [ fhir:v "2026-03-21T10:45:00-04:00"^^xsd:dateTime] ; # 
  fhir:end [ fhir:v "2026-03-21T11:15:00-04:00"^^xsd:dateTime] . # 

<http://hl7.org/fhir/uv/smart-scheduling-links/Schedule/ExampleSchedule> a fhir:Uv .

# -------------------------------------------------------------------------------------

