@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://hl7.no/fhir/kommune/ServiceRequest/example-servicerequest> a fhir:ServiceRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-servicerequest"] ; # 
  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: ServiceRequest example-servicerequest</b></p><a name=\"example-servicerequest\"> </a><a name=\"hcexample-servicerequest\"> </a><p><b>status</b>: Active</p><p><b>intent</b>: Order</p><p><b>category</b>: <span title=\"Codes:\">Kommunale helse- og omsorgstjenester</span></p><p><b>priority</b>: Routine</p><p><b>code</b>: <span title=\"Codes:\">Hjemmesykepleie med legemiddeloppfølging og ADL-bistand etter utskrivning</span></p><p><b>subject</b>: <a href=\"Patient-example-patient.html\">Kari Hansen  Female, DoB: 1948-09-12</a></p><p><b>occurrence</b>: 2026-01-13 --&gt; 2026-03-31</p><p><b>authoredOn</b>: 2026-01-12</p><p><b>requester</b>: <a href=\"PractitionerRole-example-practitionerrole.html\">PractitionerRole</a></p><p><b>performer</b>: <a href=\"Organization-example-organization.html\">Organization Oslo kommune, Bydel Grünerløkka, Hjemmetjenesten</a></p><p><b>reasonReference</b>: <a href=\"Condition-example-health-concern.html\">Helseutfordring etter hoftebrudd</a></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:intent [ fhir:v "order"] ; # 
  fhir:category ( [
     fhir:text [ fhir:v "Kommunale helse- og omsorgstjenester" ]
  ] ) ; # 
  fhir:priority [ fhir:v "routine"] ; # 
  fhir:code [
     fhir:text [ fhir:v "Hjemmesykepleie med legemiddeloppfølging og ADL-bistand etter utskrivning" ]
  ] ; # 
  fhir:subject [
     fhir:l <https://hl7.no/fhir/kommune/Patient/example-patient> ;
     fhir:reference [ fhir:v "Patient/example-patient" ]
  ] ; # 
  fhir:occurrence [
     a fhir:Period ;
     fhir:start [ fhir:v "2026-01-13"^^xsd:date ] ;
     fhir:end [ fhir:v "2026-03-31"^^xsd:date ]
  ] ; # 
  fhir:authoredOn [ fhir:v "2026-01-12"^^xsd:date] ; # 
  fhir:requester [
     fhir:l <https://hl7.no/fhir/kommune/PractitionerRole/example-practitionerrole> ;
     fhir:reference [ fhir:v "PractitionerRole/example-practitionerrole" ]
  ] ; # 
  fhir:performer ( [
     fhir:l <https://hl7.no/fhir/kommune/Organization/example-organization> ;
     fhir:reference [ fhir:v "Organization/example-organization" ]
  ] ) ; # 
  fhir:reasonReference ( [
     fhir:l <https://hl7.no/fhir/kommune/Condition/example-health-concern> ;
     fhir:reference [ fhir:v "Condition/example-health-concern" ] ;
     fhir:display [ fhir:v "Helseutfordring etter hoftebrudd" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

