@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.cognovis.de/praxis/Appointment/ExampleAppointmentVideosprechstunde> a fhir:Appointment ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleAppointmentVideosprechstunde"] ; # 
  fhir:text [
     fhir:status [ fhir:v "extensions" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Appointment ExampleAppointmentVideosprechstunde</b></p><a name=\"ExampleAppointmentVideosprechstunde\"> </a><a name=\"hcExampleAppointmentVideosprechstunde\"> </a><p><b>Appointment Mode</b>: video</p><p><b>status</b>: Booked</p><p><b>start</b>: 2026-04-10 09:00:00+0200</p><p><b>end</b>: 2026-04-10 09:15:00+0200</p><blockquote><p><b>participant</b></p><p><b>actor</b>: <a href=\"Patient-example-patient.html\">Thomas Weber (official) Male, DoB: 1975-06-15</a></p><p><b>status</b>: Accepted</p></blockquote><blockquote><p><b>participant</b></p><p><b>actor</b>: <a href=\"Practitioner-example-practitioner.html\">Practitioner Markus Schoell (official)</a></p><p><b>status</b>: Accepted</p></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "https://fhir.cognovis.de/praxis/StructureDefinition/appointment-mode"^^xsd:anyURI ;
       fhir:l <https://fhir.cognovis.de/praxis/StructureDefinition/appointment-mode>
     ] ;
     fhir:value [
       a fhir:Code ;
       fhir:v "video"
     ]
  ] ) ; # 
  fhir:status [ fhir:v "booked"] ; # 
  fhir:start [ fhir:v "2026-04-10T09:00:00+02:00"^^xsd:dateTime] ; # 
  fhir:end [ fhir:v "2026-04-10T09:15:00+02:00"^^xsd:dateTime] ; # 
  fhir:participant ( [
     fhir:actor [
       fhir:l <https://fhir.cognovis.de/praxis/Patient/example-patient> ;
       fhir:reference [ fhir:v "Patient/example-patient" ]
     ] ;
     fhir:status [ fhir:v "accepted" ]
  ] [
     fhir:actor [
       fhir:l <https://fhir.cognovis.de/praxis/Practitioner/example-practitioner> ;
       fhir:reference [ fhir:v "Practitioner/example-practitioner" ]
     ] ;
     fhir:status [ fhir:v "accepted" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

