@prefix fhir: . @prefix loinc: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Composition ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "CompositionExample"] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: Composition CompositionExample

status: Final

type: Anesthesia records

date: 2020-01-01

author: Practitioner John Doe

title: Anesthesia Record

" ] ; # fhir:status [ fhir:v "final"] ; # fhir:type [ fhir:coding ( [ a loinc:11485-0 ; fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ; fhir:code [ fhir:v "11485-0" ] ; fhir:display [ fhir:v "Anesthesia records" ] ] ) ; fhir:text [ fhir:v "Anesthesia records" ] ] ; # fhir:date [ fhir:v "2020-01-01"^^xsd:date] ; # fhir:author ( [ fhir:link ; fhir:reference [ fhir:v "Practitioner/PractitionerExample" ] ] ) ; # fhir:title [ fhir:v "Anesthesia Record"] . # # -------------------------------------------------------------------------------------