@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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/ServiceRequest/ldt-servicerequest-example> a fhir:ServiceRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ldt-servicerequest-example"] ; # 
  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 ldt-servicerequest-example</b></p><a name=\"ldt-servicerequest-example\"> </a><a name=\"hcldt-servicerequest-example\"> </a><p><b>identifier</b>: <a href=\"NamingSystem-ldt-auftragsnummer.html\" title=\"Laborauftragsnummer gemaess LDT-Standard fuer ServiceRequest.identifier\">LdtAuftragsnummer</a>/LAB-2025-00123</p><p><b>status</b>: Completed</p><p><b>intent</b>: Order</p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 2160-0}\">Creatinin [Masse/Volumen] in Serum oder Plasma</span></p><p><b>subject</b>: <a href=\"Patient-example-patient.html\">Thomas Weber (official) Male, DoB: 1975-06-15</a></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "https://fhir.cognovis.de/praxis/NamingSystem/ldt-auftragsnummer"^^xsd:anyURI ;
       fhir:l <https://fhir.cognovis.de/praxis/NamingSystem/ldt-auftragsnummer>
     ] ;
     fhir:value [ fhir:v "LAB-2025-00123" ]
  ] ) ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:intent [ fhir:v "order"] ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:2160-0 ;
       fhir:system [
         fhir:v "http://loinc.org"^^xsd:anyURI ;
         fhir:l <http://loinc.org>
       ] ;
       fhir:code [ fhir:v "2160-0" ] ;
       fhir:display [ fhir:v "Creatinin [Masse/Volumen] in Serum oder Plasma" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <https://fhir.cognovis.de/praxis/Patient/example-patient> ;
     fhir:reference [ fhir:v "Patient/example-patient" ]
  ] . # 

# -------------------------------------------------------------------------------------

