@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://fhir.ch/ig/ch-umzh-connect/Appointment/AppointmentOrthopedicConsultation> a fhir:Appointment ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "AppointmentOrthopedicConsultation"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Appointment AppointmentOrthopedicConsultation</b></p><a name=\"AppointmentOrthopedicConsultation\"> </a><a name=\"hcAppointmentOrthopedicConsultation\"> </a><p><b>status</b>: Fulfilled</p><p><b>description</b>: Pre-operative orthopedic consultation prior to ACL reconstruction surgery</p><p><b>start</b>: 2026-01-08 09:00:00+0100</p><p><b>end</b>: 2026-01-08 09:30:00+0100</p><blockquote><p><b>participant</b></p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-ParticipationType SBJ}\">subject</span></p><p><b>status</b>: Accepted</p></blockquote><blockquote><p><b>participant</b></p><p><b>actor</b>: <a href=\"http://registry.example.org/fhir/HealthcareService/HealthcareServiceOrthopedicsFulfiller\">http://registry.example.org/fhir/HealthcareService/HealthcareServiceOrthopedicsFulfiller</a></p><p><b>status</b>: Accepted</p></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "fulfilled"] ; # 
  fhir:description [ fhir:v "Pre-operative orthopedic consultation prior to ACL reconstruction surgery"] ; # 
  fhir:start [ fhir:v "2026-01-08T09:00:00+01:00"^^xsd:dateTime] ; # 
  fhir:end [ fhir:v "2026-01-08T09:30:00+01:00"^^xsd:dateTime] ; # 
  fhir:participant ( [
     fhir:type ( [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ParticipationType"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "SBJ" ] ;
         fhir:display [ fhir:v "subject" ]
       ] )
     ] ) ;
     fhir:status [ fhir:v "accepted" ]
  ] [
     fhir:actor [
       fhir:link <http://registry.example.org/fhir/HealthcareService/HealthcareServiceOrthopedicsFulfiller> ;
       fhir:reference [ fhir:v "http://registry.example.org/fhir/HealthcareService/HealthcareServiceOrthopedicsFulfiller" ]
     ] ;
     fhir:status [ fhir:v "accepted" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

