@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://kommune.conteir.no/Appointment/example-appointment> a fhir:Appointment ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-appointment"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.no/fhir/StructureDefinition/no-basis-Appointment"^^xsd:anyURI ;
       fhir:link <http://hl7.no/fhir/StructureDefinition/no-basis-Appointment>
     ] )
  ] ; # 
  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 example-appointment</b></p><a name=\"example-appointment\"> </a><a name=\"hcexample-appointment\"> </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\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"https://simplifier.net/resolve?scope=hl7.fhir.no.basis@2.2.2&amp;canonical=http://hl7.no/fhir/StructureDefinition/no-basis-Appointment\">no-basis-Appointment</a></p></div><p><b>status</b>: Booked</p><p><b>serviceType</b>: <span title=\"Codes:\">Home nursing</span></p><p><b>appointmentType</b>: <span title=\"Codes:\">Planned municipal home visit</span></p><p><b>description</b>: Planned home visit for medication follow-up and function assessment</p><p><b>supportingInformation</b>: <a href=\"DocumentReference-example-documentreference.html\">DocumentReference: status = current; type = Clinical note; date = 2026-01-12 09:00:00+0100; description = Decision on home nursing and practical assistance after discharge</a></p><p><b>start</b>: 2026-01-22 11:00:00+0100</p><p><b>end</b>: 2026-01-22 11:30:00+0100</p><p><b>created</b>: 2026-01-13 12:00:00+0100</p><p><b>basedOn</b>: <a href=\"ServiceRequest-example-servicerequest.html\">ServiceRequest </a></p><blockquote><p><b>participant</b></p><p><b>actor</b>: <a href=\"Patient-example-patient.html\">Kari Hansen  Female, DoB: 1948-09-12 ( urn:oid:2.16.578.1.12.4.1.4.1#Foedselsnummer#12094812345)</a></p><p><b>status</b>: Accepted</p></blockquote><blockquote><p><b>participant</b></p><p><b>actor</b>: <a href=\"PractitionerRole-example-practitionerrole.html\">PractitionerRole</a></p><p><b>status</b>: Accepted</p></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "booked"] ; # 
  fhir:serviceType ( [
     fhir:text [ fhir:v "Home nursing" ]
  ] ) ; # 
  fhir:appointmentType [
     fhir:text [ fhir:v "Planned municipal home visit" ]
  ] ; # 
  fhir:description [ fhir:v "Planned home visit for medication follow-up and function assessment"] ; # 
  fhir:supportingInformation ( [
     fhir:link <https://kommune.conteir.no/DocumentReference/example-documentreference> ;
     fhir:reference [ fhir:v "DocumentReference/example-documentreference" ]
  ] ) ; # 
  fhir:start [ fhir:v "2026-01-22T11:00:00+01:00"^^xsd:dateTime] ; # 
  fhir:end [ fhir:v "2026-01-22T11:30:00+01:00"^^xsd:dateTime] ; # 
  fhir:created [ fhir:v "2026-01-13T12:00:00+01:00"^^xsd:dateTime] ; # 
  fhir:basedOn ( [
     fhir:link <https://kommune.conteir.no/ServiceRequest/example-servicerequest> ;
     fhir:reference [ fhir:v "ServiceRequest/example-servicerequest" ]
  ] ) ; # 
  fhir:participant ( [
     fhir:actor [
       fhir:link <https://kommune.conteir.no/Patient/example-patient> ;
       fhir:reference [ fhir:v "Patient/example-patient" ]
     ] ;
     fhir:status [ fhir:v "accepted" ]
  ] [
     fhir:actor [
       fhir:link <https://kommune.conteir.no/PractitionerRole/example-practitionerrole> ;
       fhir:reference [ fhir:v "PractitionerRole/example-practitionerrole" ]
     ] ;
     fhir:status [ fhir:v "accepted" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

