@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 -------------------------------------------------------------------

<https://fhir.apps.health/Slot/polaris-core-slot-example-busy-tentative> a fhir:Slot ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "polaris-core-slot-example-busy-tentative"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://fhir.apps.health/StructureDefinition/polaris-core-slot"^^xsd:anyURI ;
       fhir:link <https://fhir.apps.health/StructureDefinition/polaris-core-slot>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Mid-hold slot on Dr. Navarro's schedule, June 1 2026 at 11:00 AM. A booking client has the slot held while a patient confirms; status will transition to 'busy' on confirm or back to 'free' if the hold times out. The Oscar converter never writes this status — only the booking system does.</div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-slot-identifier"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "42-20260601-44" ]
  ] ) ; # 
  fhir:serviceType ( [
     fhir:coding ( [
       fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-slot-servicetype-raw-code"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "A" ] ;
       fhir:display [ fhir:v "Standard appointment" ]
     ] )
  ] ) ; # 
  fhir:appointmentType [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0276"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "ROUTINE" ] ;
       fhir:display [ fhir:v "Routine appointment" ]
     ] )
  ] ; # 
  fhir:schedule [
     fhir:link <https://fhir.apps.health/Schedule/polaris-core-schedule-example-navarro> ;
     fhir:reference [ fhir:v "Schedule/polaris-core-schedule-example-navarro" ]
  ] ; # 
  fhir:status [ fhir:v "busy-tentative"] ; # 
  fhir:start [ fhir:v "2026-06-01T11:00:00-04:00"^^xsd:dateTime] ; # 
  fhir:end [ fhir:v "2026-06-01T11:15:00-04:00"^^xsd:dateTime] ; # 
  fhir:comment [ fhir:v "Held by booking client booking-app-instance-7; hold expires at 11:15 if not confirmed."] . # 

# -------------------------------------------------------------------------------------

