@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/Composition/example-card-entry-composition> a fhir:Composition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-card-entry-composition"] ; # 
  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: Composition example-card-entry-composition</b></p><a name=\"example-card-entry-composition\"> </a><a name=\"hcexample-card-entry-composition\"> </a><p><b>status</b>: Final</p><p><b>type</b>: <span title=\"Codes:{http://loinc.org 11506-3}\">Progress note</span></p><p><b>date</b>: 2026-05-18 10:05:00+0100</p><p><b>author</b>: <a href=\"Practitioner-example-practitioner.html\">Practitioner Markus Schoell (official)</a></p><p><b>title</b>: Card Entry</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:type [
     fhir:coding ( [
       a loinc:11506-3 ;
       fhir:system [
         fhir:v "http://loinc.org"^^xsd:anyURI ;
         fhir:l <http://loinc.org>
       ] ;
       fhir:code [ fhir:v "11506-3" ] ;
       fhir:display [ fhir:v "Progress note" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <https://fhir.cognovis.de/praxis/Patient/example-patient> ;
     fhir:reference [ fhir:v "Patient/example-patient" ]
  ] ; # 
  fhir:date [ fhir:v "2026-05-18T10:05:00+01:00"^^xsd:dateTime] ; # 
  fhir:author ( [
     fhir:l <https://fhir.cognovis.de/praxis/Practitioner/example-practitioner> ;
     fhir:reference [ fhir:v "Practitioner/example-practitioner" ]
  ] ) ; # 
  fhir:title [ fhir:v "Card Entry"] ; # 
  fhir:section ( [
     fhir:title [ fhir:v "Assessment" ] ;
     fhir:text [
       fhir:status [ fhir:v "generated" ] ;
       fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Patient reports fatigue and elevated glucose readings.</div>"^^rdf:XMLLiteral ]
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

