@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-free> a fhir:Slot ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "polaris-core-slot-example-free"] ; # 
  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\">Free 15-minute slot on Dr. Navarro's schedule, June 1 2026 at 9:00 AM (Eastern Time).</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-36" ]
  ] [
     fhir:use [ fhir:v "secondary" ] ;
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-slot-raw-code"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "20260601-09:00-A" ]
  ] ) ; # 
  fhir:serviceCategory ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/service-category"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "17" ] ;
       fhir:display [ fhir:v "General Practice" ]
     ] )
  ] ) ; # 
  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 "free"] ; # 
  fhir:start [ fhir:v "2026-06-01T09:00:00-04:00"^^xsd:dateTime] ; # 
  fhir:end [ fhir:v "2026-06-01T09:15:00-04:00"^^xsd:dateTime] . # 

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

